commit c9a96798e97c90d96b0cf52ab36cebd574d6ee3c Author: sachinganesh Date: Mon Nov 6 16:12:42 2023 +0530 init diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c67b0db --- /dev/null +++ b/.gitignore @@ -0,0 +1,35 @@ +# Ignore compiled files +*.class +*.war +*.jar +*.ear + +# Ignore build directories +target/ +bin/ +out/ + +# Ignore IDE-specific files and directories +.idea/ +.vscode/ +*.suo +*.user +*.sln +.DS_Store + +# Ignore log files and backups +*.log +*.log.* +*.bak +*.swp + +# Ignore user-specific files +user.settings + +# Ignore configuration files +application.properties + +# Ignore specific directories +node_modules/ +build/ +.next \ No newline at end of file diff --git a/components/chart/DarkLightToggle.js b/components/chart/DarkLightToggle.js new file mode 100644 index 0000000..ce8482f --- /dev/null +++ b/components/chart/DarkLightToggle.js @@ -0,0 +1,94 @@ +import { Bar } from "react-chartjs-2"; + +function StackedBarChart() { + const data = { + labels: [ + "4 Jan", + "5 Jan", + "6 Jan", + "7 Jan", + "8 Jan", + "9 Jan", + "10 Jan", + ], + datasets: [ + { + label: "Youtube", + backgroundColor: "#1652F0", + borderColor: "transparent", + data: [35, 65, 52, 115, 98, 185, 125], + lineTension: 0, + pointRadius: 0, + borderWidth: 2, + }, + { + label: "Facebook", + backgroundColor: "#f73164", + borderColor: "transparent", + data: [40, 105, 92, 155, 138, 205, 165], + lineTension: 0, + // borderDash: [10, 5], + borderWidth: 1, + pointRadius: 0, + }, + ], + }; + + const options = { + responsive: true, + maintainAspectRatio: false, + legend: { + display: false, + }, + scales: { + xAxes: [ + { + stacked: true, + barPercentage: 0.63, + gridLines: { + display: false, + drawBorder: false, + }, + ticks: { + fontColor: "#8a909d", + }, + }, + ], + yAxes: [ + { + stacked: true, + gridLines: { + display: true, + color: "#eee", + }, + ticks: { + stepSize: 50, + fontColor: "#8a909d", + }, + }, + ], + }, + tooltips: { + mode: "index", + intersect: false, + titleFontColor: "#888", + bodyFontColor: "#555", + titleFontSize: 12, + bodyFontSize: 15, + backgroundColor: "rgba(256,256,256,0.95)", + displayColors: true, + xPadding: 10, + yPadding: 7, + borderColor: "rgba(220, 220, 220, 0.9)", + borderWidth: 2, + caretSize: 6, + caretPadding: 5, + }, + }; + return ( + <> + + + ); +} +export default StackedBarChart; diff --git a/components/chart/DoughnutChart.js b/components/chart/DoughnutChart.js new file mode 100644 index 0000000..4f8ec81 --- /dev/null +++ b/components/chart/DoughnutChart.js @@ -0,0 +1,49 @@ +import { Doughnut } from "react-chartjs-2"; + +function DoughnutChart({ doughnutData }) { + const data = { + datasets: [ + { + data: doughnutData.data, + backgroundColor: [ + "rgba(22, 82, 240,1)", + "rgba(22, 82, 240,0.5)", + "rgba(22, 82, 240,0.15)", + ], + }, + ], + labels: ["Facebook", "Youtube", "Google"], + }; + + const options = { + responsive: true, + cutoutPercentage: 80, + maintainAspectRatio: false, + animation: { + animateRotate: true, + animateScale: true, + }, + legend: { + display: true, + position: "bottom", + labels: { + usePointStyle: true, + // fontFamily: "Segoe UI", + fontSize: 12, + fontColor: "#464a53", + padding: 20, + }, + }, + }; + return ( + <> + + + ); +} +export default DoughnutChart; diff --git a/components/chart/LineChart.js b/components/chart/LineChart.js new file mode 100644 index 0000000..3d57b4b --- /dev/null +++ b/components/chart/LineChart.js @@ -0,0 +1,99 @@ +import { Line } from "react-chartjs-2"; + +function LineChart({lineData}) { + const data = { + labels: [ + "Jan", + "Feb", + "Mar", + "Apr", + "May", + "Jun", + "Jul", + "Aug", + "Sep", + "Oct", + "Nov", + "Dec", + ], + datasets: [ + { + label: "Water", + backgroundColor: "rgba(22, 82, 240, 0.75)", + borderColor: "transparent", + data: lineData.facebook, + lineTension: 0, + pointRadius: 0, + borderWidth: 2, + }, + { + label: "Water", + backgroundColor: "rgba(22, 82, 240, 0.5)", + borderColor: "transparent", + data: lineData.youtube, + lineTension: 0, + // borderDash: [10, 5], + borderWidth: 1, + pointRadius: 0, + }, + ], + }; + + const options = { + responsive: true, + maintainAspectRatio: false, + legend: { + display: false, + }, + scales: { + xAxes: [ + { + stacked: true, + barPercentage: 0.45, + gridLines: { + display: false, + drawBorder: false, + }, + ticks: { + // fontColor: "#8a909d", + }, + }, + ], + yAxes: [ + { + stacked: true, + gridLines: { + display: false, + color: "#eee", + }, + ticks: { + stepSize: 50, + // fontColor: "#8a909d", + }, + }, + ], + }, + tooltips: { + mode: "index", + intersect: false, + titleFontColor: "#888", + bodyFontColor: "#555", + titleFontSize: 12, + bodyFontSize: 15, + backgroundColor: "rgba(256,256,256,0.95)", + displayColors: true, + xPadding: 10, + yPadding: 7, + borderColor: "rgba(220, 220, 220, 0.9)", + borderWidth: 2, + caretSize: 6, + caretPadding: 5, + }, + }; + return ( + <> + + + ); +} +export default LineChart; diff --git a/components/chart/LineInvestment.js b/components/chart/LineInvestment.js new file mode 100644 index 0000000..42c7c54 --- /dev/null +++ b/components/chart/LineInvestment.js @@ -0,0 +1,68 @@ +import { Line } from "react-chartjs-2"; + +function LineInvestment({ investmentData }) { + const data = { + labels: ["2010", "2011", "2012", "2013", "2014", "2015", "2016"], + datasets: [ + { + label: "Youtube", + data: investmentData.data, + backgroundColor: "rgba(22, 82, 240,0.15)", + borderColor: "#1652F0", + pointRadius: 0, + // lineTension: 0, + }, + ], + }; + + const options = { + responsive: true, + maintainAspectRatio: false, + animation: { + animateRotate: true, + animateScale: true, + }, + tooltips: { + enabled: false, + }, + legend: { + display: false, + labels: { + usePointStyle: false, + + }, + + + }, + scales: { + xAxes: [{ + display: true, + gridLines: { + display: false, + drawBorder: false + }, + scaleLabel: { + display: false, + labelString: 'Month' + } + }], + yAxes: [{ + display: true, + gridLines: { + display: false, + drawBorder: false + }, + scaleLabel: { + display: false, + labelString: 'Value' + } + }] + }, + }; + return ( + <> + + + ); +} +export default LineInvestment; diff --git a/components/chart/StackedBarChart.js b/components/chart/StackedBarChart.js new file mode 100644 index 0000000..446a722 --- /dev/null +++ b/components/chart/StackedBarChart.js @@ -0,0 +1,99 @@ +import { Bar } from "react-chartjs-2"; + +function StackedBarChart() { + const data = { + labels: [ + "Jan", + "Feb", + "Mar", + "Apr", + "May", + "Jun", + "Jul", + "Aug", + "Sep", + "Oct", + "Nov", + "Dec", + ], + datasets: [ + { + label: "Youtube", + backgroundColor: "rgba(22, 82, 240, 0.75)", + borderColor: "transparent", + data: [35, 65, 52, 115, 98, 185, 125,35, 65, 52, 115, 140], + lineTension: 0, + pointRadius: 0, + borderWidth: 2, + }, + { + label: "Facebook", + backgroundColor: "rgba(22, 82, 240, 0.5)", + borderColor: "transparent", + data: [40, 105, 92, 155, 138, 205, 165, 35, 65, 52, 115, 110], + lineTension: 0, + // borderDash: [10, 5], + borderWidth: 1, + pointRadius: 0, + }, + ], + }; + + const options = { + responsive: true, + maintainAspectRatio: false, + legend: { + display: false, + }, + scales: { + xAxes: [ + { + stacked: true, + barPercentage: 0.40, + gridLines: { + display: false, + drawBorder: false, + }, + ticks: { + fontColor: "#8a909d", + }, + }, + ], + yAxes: [ + { + stacked: true, + gridLines: { + display: true, + color: "#eee", + }, + ticks: { + stepSize: 50, + fontColor: "#8a909d", + }, + }, + ], + }, + tooltips: { + mode: "index", + intersect: false, + titleFontColor: "#888", + bodyFontColor: "#555", + titleFontSize: 12, + bodyFontSize: 15, + backgroundColor: "rgba(256,256,256,0.95)", + displayColors: true, + xPadding: 10, + yPadding: 7, + borderColor: "rgba(220, 220, 220, 0.9)", + borderWidth: 2, + caretSize: 6, + caretPadding: 5, + }, + }; + return ( + <> + + + ); +} +export default StackedBarChart; diff --git a/components/elements/BalanceDetails.js b/components/elements/BalanceDetails.js new file mode 100644 index 0000000..fb061aa --- /dev/null +++ b/components/elements/BalanceDetails.js @@ -0,0 +1,69 @@ +import { useState } from "react"; +function BalanceDetails() { + const [open, setOpen] = useState("a1"); + return ( + <> +
+
+
+

Total Balance

+

$221,478

+
+
+
+
setOpen("a1")} + > +

Last Month

+

$42,678

+
+
+
+
setOpen("a2")} + > +

Expenses

+

$1,798

+
+
+
+
setOpen("a3")} + > +

Taxes

+

$255.25

+
+
+
+
setOpen("a4")} + > +

Debt

+

$365,478

+
+
+
+ + ); +} +export default BalanceDetails; diff --git a/components/elements/Bills.js b/components/elements/Bills.js new file mode 100644 index 0000000..5aba6ea --- /dev/null +++ b/components/elements/Bills.js @@ -0,0 +1,59 @@ +import { useState } from "react"; +function Bills() { + const [open, setOpen] = useState("a1"); + return ( + <> +
+
setOpen("a1")}> +
+

Netflix

+

$17.00

+
+ +
+
setOpen("a2")}> +
+

Spotify

+

$11.00

+
+ +
+
setOpen("a3")}> +
+

Spotify

+

$11.00

+
+ +
+
+ + ); +} +export default Bills; diff --git a/components/elements/GoalsBudget.js b/components/elements/GoalsBudget.js new file mode 100644 index 0000000..7ea9cdf --- /dev/null +++ b/components/elements/GoalsBudget.js @@ -0,0 +1,154 @@ +import PerfectScrollbar from "react-perfect-scrollbar"; +function GoalsBudget() { + return ( + <> +
+ +
    +
  • +
    +
    + +
    +
    +
    +
    Facebook Ads
    +

    + 75 / 100 +

    +
    +
    +
    +
    +
    +
    +
  • +
  • +
    +
    + +
    +
    +
    +
    Youtube Premium
    +

    + 25 / 100 +

    +
    +
    +
    +
    +
    +
    +
  • +
  • +
    +
    + +
    +
    +
    +
    Spotify Music
    +

    + 50 / 100 +

    +
    +
    +
    +
    +
    +
    +
  • +
  • +
    +
    + +
    +
    +
    +
    Skype Premium
    +

    + 45 / 100 +

    +
    +
    +
    +
    +
    +
    +
  • +
  • +
    +
    + +
    +
    +
    +
    Envato Element
    +

    + 35 / 100 +

    +
    +
    +
    +
    +
    +
    +
  • +
+
+
+ + ); +} +export default GoalsBudget; diff --git a/components/elements/TransactionHistory.js b/components/elements/TransactionHistory.js new file mode 100644 index 0000000..11b4bda --- /dev/null +++ b/components/elements/TransactionHistory.js @@ -0,0 +1,122 @@ +import { useState } from "react"; +import PerfectScrollbar from "react-perfect-scrollbar"; +function TransactionHistory() { + const [open, setOpen] = useState("p1"); + return ( + <> +
+ +
    +
  • setOpen("p1")} + > +
    +
    + +
    +
    +
    Terry P. Camacho
    +

    5 january 2021 at 10.15 pm

    +
    +
    +
    +
    +450.00
    + Paid +
    +
  • +
  • setOpen("p2")} + > +
    +
    + +
    +
    +
    John L. Foster
    +

    5 january 2021 at 10.15 pm

    +
    +
    +
    +
    +450.00
    + Due +
    +
  • +
  • setOpen("p3")} + > +
    +
    + +
    +
    +
    John C. Adams
    +

    5 january 2021 at 10.15 pm

    +
    +
    +
    +
    +450.00
    + + Cancel + +
    +
  • +
  • setOpen("p4")} + > +
    +
    + +
    +
    +
    Weston P. Thomas
    +

    5 january 2021 at 10.15 pm

    +
    +
    +
    +
    +450.00
    + Paid +
    +
  • +
+
+
+ + ); +} +export default TransactionHistory; diff --git a/components/form/CreateApi.js b/components/form/CreateApi.js new file mode 100644 index 0000000..9c39f8e --- /dev/null +++ b/components/form/CreateApi.js @@ -0,0 +1,87 @@ +import { ErrorMessage, Field, Form, Formik } from "formik"; +import * as Yup from "yup"; + +const initialValues = { + generateKey: "", + confirmKey: "", +}; + +const CreateApiSchema = Yup.object().shape({ + generateKey: Yup.string().required("Generate Key is required"), + confirmKey: Yup.string().required("Confirm Key required"), +}); + +function CreateApi() { + return ( + <> + { + alert( + "SUCCESS!! :-)\n\n" + JSON.stringify(fields, null, 4) + ); + }} + > + {({ errors, status, touched }) => ( +
+
+
+ + + +
+
+ + + +
+
+ +
+ +
+
+ )} +
+ + ); +} +export default CreateApi; diff --git a/components/form/PersonalInfo.js b/components/form/PersonalInfo.js new file mode 100644 index 0000000..c125c88 --- /dev/null +++ b/components/form/PersonalInfo.js @@ -0,0 +1,176 @@ +import { ErrorMessage, Field, Form, Formik } from "formik"; +import * as Yup from "yup"; + +const initialValues = { + fullName: "", + email: "", + address: "", + city: "", + country: "", + postal: "", +}; + +const PersonalInfoSchema = Yup.object().shape({ + fullName: Yup.string().required("Full is required"), + email: Yup.string().email("Email is invalid").required("Email is required"), + address: Yup.string().required("Present Address is required"), + city: Yup.string().required("City is required"), + postal: Yup.string().required("Post code is required"), + country: Yup.string().required("country is required"), +}); + +function PersonalInfo() { + return ( + <> + { + alert( + "SUCCESS!! :-)\n\n" + JSON.stringify(fields, null, 4) + ); + }} + > + {({ errors, status, touched }) => ( +
+
+
+ + + +
+ +
+ + + +
+ +
+ + + +
+ +
+ + + +
+ +
+ + + +
+ +
+ + + + + + + +
+
+ +
+ +
+
+ )} +
+ + ); +} +export default PersonalInfo; diff --git a/components/form/Preferences.js b/components/form/Preferences.js new file mode 100644 index 0000000..91eac19 --- /dev/null +++ b/components/form/Preferences.js @@ -0,0 +1,153 @@ +import { ErrorMessage, Field, Form, Formik } from "formik"; +import * as Yup from "yup"; + +const initialValues = { + language: "", + currency: "", + theme: "", + timeZone: "", +}; + +const PreferencesSchema = Yup.object().shape({ + language: Yup.string().required("Language is required"), + currency: Yup.string().required("Currency is required"), + theme: Yup.string().required("Theme is required"), + timeZone: Yup.string().required("Timezone is required"), +}); + +function Preferences() { + return ( + <> + { + alert( + "SUCCESS!! :-)\n\n" + JSON.stringify(fields, null, 4) + ); + }} + > + {({ errors, status, touched }) => ( +
+
+
+ + + + + + + +
+
+ + + + + + + +
+
+ + + + + + + +
+
+ + + + + + + + + +
+
+ +
+ +
+
+ )} +
+ + ); +} +export default Preferences; diff --git a/components/form/SigninForm.js b/components/form/SigninForm.js new file mode 100644 index 0000000..d11a425 --- /dev/null +++ b/components/form/SigninForm.js @@ -0,0 +1,125 @@ +import { ErrorMessage, Field, Form, Formik } from "formik"; +import * as Yup from "yup"; +import Link from "next/link"; +import AuthIcon from "./authselection/AuthIcon"; +const initialValues = { + email: "", + password: "", +}; + +const SigninFormSchema = Yup.object().shape({ + email: Yup.string().email("Email is invalid").required("Email is required"), + password: Yup.string() + .min(6, "Password must be at least 6 characters") + .required("Password is required"), +}); + +function SigninForm() { + return ( + <> + { + alert( + "SUCCESS!! :-)\n\n" + JSON.stringify(fields, null, 4) + ); + }} + > + {({ errors, status, touched }) => ( +
+
+ +
+ + + + + + + +
+ +
+ + + +
+ + + +
+ + + +
+
+
+ + +
+
+ +
+ +
+ +
+
+ )} +
+ + ); +} +export default SigninForm; diff --git a/components/form/SignupForm.js b/components/form/SignupForm.js new file mode 100644 index 0000000..be794b8 --- /dev/null +++ b/components/form/SignupForm.js @@ -0,0 +1,167 @@ +import { ErrorMessage, Field, Form, Formik } from "formik"; +import * as Yup from "yup"; +import AuthIcon from "./authselection/AuthIcon"; +import Link from "next/link"; + +const initialValues = { + fullName: "", + email: "", + password: "", + acceptTerms: false, +}; + +const SignupFormSchema = Yup.object().shape({ + fullName: Yup.string().required("Full is required"), + email: Yup.string().email("Email is invalid").required("Email is required"), + password: Yup.string() + .min(6, "Password must be at least 6 characters") + .required("Password is required"), + acceptTerms: Yup.bool().oneOf([true], "Accept Ts & Cs is required"), +}); + +function SignupForm() { + return ( + <> + { + alert( + "SUCCESS!! :-)\n\n" + JSON.stringify(fields, null, 4) + ); + }} + > + {({ errors, status, touched }) => ( +
+
+ +
+ + + + + + + +
+ +
+ + + +
+
+ + + +
+ +
+ + + +
+ + + +
+ + + +
+
+
+ + +
+
+ +
+ +
+ +
+
+ )} +
+ + ); +} +export default SignupForm; diff --git a/components/form/UpdateAvatar.js b/components/form/UpdateAvatar.js new file mode 100644 index 0000000..76509b3 --- /dev/null +++ b/components/form/UpdateAvatar.js @@ -0,0 +1,97 @@ +import { ErrorMessage, Field, Form, Formik } from "formik"; +import * as Yup from "yup"; + +const initialValues = { + fullName: "", + photo: "", +}; + +const UpdateAvatarSchema = Yup.object().shape({ + fullName: Yup.string().required("Full Name is required"), + photo: Yup.string().required("Photo required"), +}); + +function UpdateAvatar() { + return ( + <> + { + alert( + "SUCCESS!! :-)\n\n" + JSON.stringify(fields, null, 4) + ); + }} + > + {({ errors, status, touched }) => ( +
+
+
+ + + +
+
+
+ +
+

Jannatul Maowa

+

+ Max file size is 20mb +

+
+
+
+
+ + +
+
+ +
+ +
+
+ )} +
+ + ); +} +export default UpdateAvatar; diff --git a/components/form/UpdateInfo.js b/components/form/UpdateInfo.js new file mode 100644 index 0000000..2532569 --- /dev/null +++ b/components/form/UpdateInfo.js @@ -0,0 +1,83 @@ +import { ErrorMessage, Field, Form, Formik } from "formik"; +import * as Yup from "yup"; + +const initialValues = { + email: "", + password: "", +}; + +const UpdateInfoSchema = Yup.object().shape({ + email: Yup.string().email("Email is invalid").required("Email is required"), + password: Yup.string() + .min(6, "Password must be at least 6 characters") + .required("Password is required"), +}); + +function UpdateInfo() { + return ( + <> + { + alert( + "SUCCESS!! :-)\n\n" + JSON.stringify(fields, null, 4) + ); + }} + > + {({ errors, status, touched }) => ( +
+
+
+ + + +
+
+ + + +
+
+ +
+ +
+
+ )} +
+ + ); +} +export default UpdateInfo; diff --git a/components/form/authselection/AuthIcon.js b/components/form/authselection/AuthIcon.js new file mode 100644 index 0000000..59edae2 --- /dev/null +++ b/components/form/authselection/AuthIcon.js @@ -0,0 +1,16 @@ +import React from 'react' + +function AuthIcon({title,icon,isActive=false}) { + return ( +
+
+ +
+
+ {title} +
+
+ ) +} + +export default AuthIcon \ No newline at end of file diff --git a/components/form/authselection/layoutform.js b/components/form/authselection/layoutform.js new file mode 100644 index 0000000..e1ed23a --- /dev/null +++ b/components/form/authselection/layoutform.js @@ -0,0 +1,59 @@ +import Tab from 'react-bootstrap/Tab'; +import Tabs from 'react-bootstrap/Tabs'; +import SigninForm from '../SigninForm'; +import React from 'react'; + + +function Layoutform({ doughnutData }) { + const [key, setKey] = React.useState('consumer'); + return ( + + + + setKey(k)} + value={key} + > + +
+ +
+
+ Consumer +
+ + }> + +
+ + +
+ +
+
+ Employee +
+ + } > + +
+ +
+ +
+
+ Plumber +
+ + }> + +
+ +
+
+ ); +} +export default Layoutform; diff --git a/components/layout/Header.js b/components/layout/Header.js new file mode 100644 index 0000000..0804f7e --- /dev/null +++ b/components/layout/Header.js @@ -0,0 +1,251 @@ +import Link from "next/link"; +import { DropdownMenu, DropdownToggle, UncontrolledDropdown } from "reactstrap"; +function Header() { + return ( + <> +
+ +
+ + + ); +} +export default Header; diff --git a/components/layout/HeaderLanding.js b/components/layout/HeaderLanding.js new file mode 100644 index 0000000..60b1ae5 --- /dev/null +++ b/components/layout/HeaderLanding.js @@ -0,0 +1,41 @@ +import Link from "next/link"; +function HeaderLanding() { + return ( + <> +
+
+
+
+ +
+
+
+
+ + ); +} +export default HeaderLanding; diff --git a/components/layout/Layout.js b/components/layout/Layout.js new file mode 100644 index 0000000..ef5fa7b --- /dev/null +++ b/components/layout/Layout.js @@ -0,0 +1,46 @@ +import { useEffect, useState } from "react"; +import Header from "./Header"; +import PageHead from "./PageHead"; +import PageTitle from "./PageTitle"; +import Sidebar from "./sidebar"; + +const Layout = ({ + headTitle, + children, + pageTitle, + pageTitleSub, + pageClass, + parent, + child, +}) => { + const [height, setHeight] = useState(); + useEffect(() => { + setHeight(window.screen.height); + }, []); + return ( + <> + +
+
+ + +
+ +
+ {pageTitle && ( + + )} + {children} +
+
+
+ + ); +}; + +export default Layout; diff --git a/components/layout/PageHead.js b/components/layout/PageHead.js new file mode 100644 index 0000000..19e9d45 --- /dev/null +++ b/components/layout/PageHead.js @@ -0,0 +1,14 @@ +import Head from "next/head"; +function PageHead({headTitle}) { + return ( + <> + + + {headTitle ? headTitle : "Intez - Dashboard React App"} + + + + + ); +} +export default PageHead; diff --git a/components/layout/PageTitle.js b/components/layout/PageTitle.js new file mode 100644 index 0000000..2afec87 --- /dev/null +++ b/components/layout/PageTitle.js @@ -0,0 +1,26 @@ +function PageTitle({ pageTitle, pageTitleSub, parent, child }) { + return ( + <> +
+
+
+
+

{pageTitle}

+

{pageTitleSub}

+
+
+
+
+ {parent} + + + + {child} +
+
+
+
+ + ); +} +export default PageTitle; diff --git a/components/layout/SettingsMenu.js b/components/layout/SettingsMenu.js new file mode 100644 index 0000000..9bebbec --- /dev/null +++ b/components/layout/SettingsMenu.js @@ -0,0 +1,82 @@ +import Link from "next/link"; +import { useRouter } from "next/router"; + +function SettingsMenu() { + const router = useRouter(); + return ( + <> + {/*
  • + + + + + + Dashboard + + +
  • */} + + + + ); +} +export default SettingsMenu; diff --git a/components/layout/sidebar.js b/components/layout/sidebar.js new file mode 100644 index 0000000..8931543 --- /dev/null +++ b/components/layout/sidebar.js @@ -0,0 +1,199 @@ +import Link from "next/link"; +import { useRouter } from "next/router"; +import React from 'react'; + +function Sidebar() { + const router = useRouter(); + return ( + <> +
    +
    + + {/* + + + + */} +
    +
    + +
    + +
    +
    +
    +
    +
    Visa
    +

    + 75% +

    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    Master
    +

    + 65% +

    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    Paypal
    +

    + 50% +

    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    Amex
    +

    + 20% +

    +
    +
    +
    + +
    +
    +
    +
    +
    +
    + + ); +} +export default Sidebar; diff --git a/components/widget/InvoiceKPI.js b/components/widget/InvoiceKPI.js new file mode 100644 index 0000000..06edb9f --- /dev/null +++ b/components/widget/InvoiceKPI.js @@ -0,0 +1,165 @@ +import React from 'react' + +function InvoiceKPI({num}) { + + + return ( + +
    +
    +

    Previous Invoices

    +
    +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + {num? + + + + + + + + + :null} + +
    +
    + +
    +
    ClientAmountStatusDue
    +
    + +
    +
    + + Weston P. Thomas + ₹7000 + + Paid + + February 16, 2021
    +
    + +
    +
    + + William D. Gibson + ₹650 + + Paid + + December 21, 2021
    +
    + +
    +
    + + Terry P. Camacho + ₹465 + + Cancel + + November 26, 2021
    +
    + +
    +
    + + Terry P. Camacho + ₹645 + + Cancel + + November 26, 2021
    +
    +
    +
    +
    + + ) +} + +export default InvoiceKPI \ No newline at end of file diff --git a/components/widget/NewConnection.js b/components/widget/NewConnection.js new file mode 100644 index 0000000..ed97fbf --- /dev/null +++ b/components/widget/NewConnection.js @@ -0,0 +1,24 @@ +import React from 'react' + +function NewConnection() { + return ( +
    + {/*
    */} +
    +
    +
    +
    + +
    +
    + + +
    +
    +
    +
    +
    + ) +} + +export default NewConnection \ No newline at end of file diff --git a/components/widget/PaymentAddKPI.js b/components/widget/PaymentAddKPI.js new file mode 100644 index 0000000..c07da7d --- /dev/null +++ b/components/widget/PaymentAddKPI.js @@ -0,0 +1,49 @@ +import React from 'react' + +function PaymentAddKPI() { + return ( + +
    + {/*
    +

    Stats

    +
    */} +
    +
    +

    Your Wallet

    +
    +
    +
    +

    ₹0.00

    + Your Current Balance +
    + +
    + +
    +
    Add money to wallet
    + We recommend to recharge your Wallet with ₹500.00 + +
    + +
    +
    + + ₹ + + + + +
    +
    + +
    + +
    + +
    +
    + + ) +} + +export default PaymentAddKPI \ No newline at end of file diff --git a/components/widget/PaymentKPI.js b/components/widget/PaymentKPI.js new file mode 100644 index 0000000..15c5372 --- /dev/null +++ b/components/widget/PaymentKPI.js @@ -0,0 +1,29 @@ +import React from 'react' + +function PaymentKPI() { + return ( +
    +
    +
    +

    Amount To Be Paid

    +
    + +
    + +
    + {/*
    Amount To Be Paid
    */} +
    ₹14000
    +
    + +
    +
    + {/*
    + +
    */} +
    +
    +
    + ) +} + +export default PaymentKPI \ No newline at end of file diff --git a/components/widget/PrevPayment.js b/components/widget/PrevPayment.js new file mode 100644 index 0000000..f09bddd --- /dev/null +++ b/components/widget/PrevPayment.js @@ -0,0 +1,9 @@ +import React from 'react' + +function PrevPayment() { + return ( +
    PrevPayment
    + ) +} + +export default PrevPayment \ No newline at end of file diff --git a/components/widget/StatsWidget.js b/components/widget/StatsWidget.js new file mode 100644 index 0000000..e69de29 diff --git a/components/widget/SupportKPI.js b/components/widget/SupportKPI.js new file mode 100644 index 0000000..8abd63a --- /dev/null +++ b/components/widget/SupportKPI.js @@ -0,0 +1,22 @@ +import React from 'react' + +function SupportKPI() { + return ( +
    +
    + +
    + +
    + +
    +
    + +
    +
    +
    +
    + ) +} + +export default SupportKPI \ No newline at end of file diff --git a/helpers/helpers.js b/helpers/helpers.js new file mode 100644 index 0000000..9cd4f7c --- /dev/null +++ b/helpers/helpers.js @@ -0,0 +1 @@ +export const COMPANY_NAME = 'kerala water board'; \ No newline at end of file diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..09db2ef --- /dev/null +++ b/package-lock.json @@ -0,0 +1,9117 @@ +{ + "name": "Intez", + "version": "0.1.0", + "lockfileVersion": 2, + "requires": true, + "packages": { + "": { + "name": "Intez", + "version": "0.1.0", + "dependencies": { + "@fortawesome/fontawesome-svg-core": "^6.4.2", + "bootstrap": "^5.3.2", + "chart.js": "^2.9.4", + "formik": "^2.2.6", + "next": "10.0.9", + "node-sass": "^5.0.0", + "react": "17.0.2", + "react-bootstrap": "^2.9.1", + "react-chartjs-2": "^2.11.1", + "react-dom": "17.0.2", + "react-perfect-scrollbar": "^1.5.8", + "react-redux": "^7.2.3", + "reactstrap": "^8.9.0", + "redux": "^4.0.5", + "redux-thunk": "^2.3.0", + "yup": "^0.32.9" + }, + "devDependencies": { + "sass": "^1.69.5" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz", + "integrity": "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==", + "dependencies": { + "@babel/highlight": "^7.10.4" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz", + "integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight": { + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.20.tgz", + "integrity": "sha512-dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg==", + "dependencies": { + "@babel/helper-validator-identifier": "^7.22.20", + "chalk": "^2.4.2", + "js-tokens": "^4.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/runtime": { + "version": "7.12.5", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz", + "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==", + "dependencies": { + "regenerator-runtime": "^0.13.4" + } + }, + "node_modules/@babel/types": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.8.3.tgz", + "integrity": "sha512-jBD+G8+LWpMBBWvVcdr4QysjUE4mU/syrhN17o1u3gx0/WzJB1kwiVZAXRtWbsIPOwW8pF/YJV5+nmetPzepXg==", + "dependencies": { + "esutils": "^2.0.2", + "lodash": "^4.17.13", + "to-fast-properties": "^2.0.0" + } + }, + "node_modules/@fortawesome/fontawesome-common-types": { + "version": "6.4.2", + "resolved": "https://registry.npmjs.org/@fortawesome/fontawesome-common-types/-/fontawesome-common-types-6.4.2.tgz", + "integrity": "sha512-1DgP7f+XQIJbLFCTX1V2QnxVmpLdKdzzo2k8EmvDOePfchaIGQ9eCHj2up3/jNEbZuBqel5OxiaOJf37TWauRA==", + "hasInstallScript": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/@fortawesome/fontawesome-svg-core": { + "version": "6.4.2", + "resolved": "https://registry.npmjs.org/@fortawesome/fontawesome-svg-core/-/fontawesome-svg-core-6.4.2.tgz", + "integrity": "sha512-gjYDSKv3TrM2sLTOKBc5rH9ckje8Wrwgx1CxAPbN5N3Fm4prfi7NsJVWd1jklp7i5uSCVwhZS5qlhMXqLrpAIg==", + "hasInstallScript": true, + "dependencies": { + "@fortawesome/fontawesome-common-types": "6.4.2" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@hapi/accept": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/@hapi/accept/-/accept-5.0.1.tgz", + "integrity": "sha512-fMr4d7zLzsAXo28PRRQPXR1o2Wmu+6z+VY1UzDp0iFo13Twj8WePakwXBiqn3E1aAlTpSNzCXdnnQXFhst8h8Q==", + "dependencies": { + "@hapi/boom": "9.x.x", + "@hapi/hoek": "9.x.x" + } + }, + "node_modules/@hapi/boom": { + "version": "9.1.4", + "resolved": "https://registry.npmjs.org/@hapi/boom/-/boom-9.1.4.tgz", + "integrity": "sha512-Ls1oH8jaN1vNsqcaHVYJrKmgMcKsC1wcp8bujvXrHaAqD2iDYq3HoOwsxwo09Cuda5R5nC0o0IxlrlTuvPuzSw==", + "dependencies": { + "@hapi/hoek": "9.x.x" + } + }, + "node_modules/@hapi/hoek": { + "version": "9.3.0", + "resolved": "https://registry.npmjs.org/@hapi/hoek/-/hoek-9.3.0.tgz", + "integrity": "sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==" + }, + "node_modules/@hypnosphi/create-react-context": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/@hypnosphi/create-react-context/-/create-react-context-0.3.1.tgz", + "integrity": "sha512-V1klUed202XahrWJLLOT3EXNeCpFHCcJntdFGI15ntCwau+jfT386w7OFTMaCqOgXUH1fa0w/I1oZs+i/Rfr0A==", + "dependencies": { + "gud": "^1.0.0", + "warning": "^4.0.3" + }, + "peerDependencies": { + "prop-types": "^15.0.0", + "react": ">=0.14.0" + } + }, + "node_modules/@next/env": { + "version": "10.0.9", + "resolved": "https://registry.npmjs.org/@next/env/-/env-10.0.9.tgz", + "integrity": "sha512-MERX3DY5u0Ed29eAsXeFBCZlFAGBtmjf7+Nht0hfgB25MPKKkIbC/0MRPcX/PQcAgLHsAHO6ay1u9xKzR4Vzjw==" + }, + "node_modules/@next/polyfill-module": { + "version": "10.0.9", + "resolved": "https://registry.npmjs.org/@next/polyfill-module/-/polyfill-module-10.0.9.tgz", + "integrity": "sha512-kPOP6ku/e8zdrK8hwxOrjUrPLcdDEj12huLHVz+DZU+20q6VlhMOtR8aKHW1460L4LoLE/DAa7YyIuxtArhDRg==" + }, + "node_modules/@next/react-dev-overlay": { + "version": "10.0.9", + "resolved": "https://registry.npmjs.org/@next/react-dev-overlay/-/react-dev-overlay-10.0.9.tgz", + "integrity": "sha512-JsSh2Y004MEuPYqBD9eTl4PVZIjSzSy2GcD7MrW/gQcExYNpeMIJAbh8/OcyO1t+OnQeIHF5s/xTMsDHBGNcew==", + "dependencies": { + "@babel/code-frame": "7.12.11", + "anser": "1.4.9", + "chalk": "4.0.0", + "classnames": "2.2.6", + "css.escape": "1.5.1", + "data-uri-to-buffer": "3.0.1", + "platform": "1.3.6", + "shell-quote": "1.7.2", + "source-map": "0.8.0-beta.0", + "stacktrace-parser": "0.1.10", + "strip-ansi": "6.0.0" + }, + "peerDependencies": { + "react": "^16.9.0 || ^17", + "react-dom": "^16.9.0 || ^17" + } + }, + "node_modules/@next/react-dev-overlay/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@next/react-dev-overlay/node_modules/chalk": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.0.0.tgz", + "integrity": "sha512-N9oWFcegS0sFr9oh1oz2d7Npos6vNoWW9HvtCg5N1KRFpUhaAhvTv5Y58g880fZaEYSNm3qDz8SU1UrGvp+n7A==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@next/react-dev-overlay/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@next/react-dev-overlay/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@next/react-dev-overlay/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@next/react-refresh-utils": { + "version": "10.0.9", + "resolved": "https://registry.npmjs.org/@next/react-refresh-utils/-/react-refresh-utils-10.0.9.tgz", + "integrity": "sha512-LSoKnM+fI9MHHew+mBg1w2e4/gjwPQsI+mDTzmfwdBwje+j9U2Int6XOZftMqBPXSlL04vjC9SRBkp0+3h8cNA==", + "peerDependencies": { + "react-refresh": "0.8.3", + "webpack": "^4 || ^5" + }, + "peerDependenciesMeta": { + "webpack": { + "optional": true + } + } + }, + "node_modules/@opentelemetry/api": { + "version": "0.14.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/api/-/api-0.14.0.tgz", + "integrity": "sha512-L7RMuZr5LzMmZiQSQDy9O1jo0q+DaLy6XpYJfIGfYSfoJA5qzYwUP3sP1uMIQ549DvxAgM3ng85EaPTM/hUHwQ==", + "dependencies": { + "@opentelemetry/context-base": "^0.14.0" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/@opentelemetry/context-base": { + "version": "0.14.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/context-base/-/context-base-0.14.0.tgz", + "integrity": "sha512-sDOAZcYwynHFTbLo6n8kIbLiVF3a3BLkrmehJUyEbT9F+Smbi47kLGS2gG2g0fjBLR/Lr1InPD7kXL7FaTqEkw==", + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/@popperjs/core": { + "version": "2.11.8", + "resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.11.8.tgz", + "integrity": "sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/popperjs" + } + }, + "node_modules/@react-aria/ssr": { + "version": "3.8.0", + "resolved": "https://registry.npmjs.org/@react-aria/ssr/-/ssr-3.8.0.tgz", + "integrity": "sha512-Y54xs483rglN5DxbwfCPHxnkvZ+gZ0LbSYmR72LyWPGft8hN/lrl1VRS1EW2SMjnkEWlj+Km2mwvA3kEHDUA0A==", + "dependencies": { + "@swc/helpers": "^0.5.0" + }, + "engines": { + "node": ">= 12" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0" + } + }, + "node_modules/@restart/hooks": { + "version": "0.4.11", + "resolved": "https://registry.npmjs.org/@restart/hooks/-/hooks-0.4.11.tgz", + "integrity": "sha512-Ft/ncTULZN6ldGHiF/k5qt72O8JyRMOeg0tApvCni8LkoiEahO+z3TNxfXIVGy890YtWVDvJAl662dVJSJXvMw==", + "dependencies": { + "dequal": "^2.0.3" + }, + "peerDependencies": { + "react": ">=16.8.0" + } + }, + "node_modules/@restart/ui": { + "version": "1.6.6", + "resolved": "https://registry.npmjs.org/@restart/ui/-/ui-1.6.6.tgz", + "integrity": "sha512-eC3puKuWE1SRYbojWHXnvCNHGgf3uzHCb6JOhnF4OXPibOIPEkR1sqDSkL643ydigxwh+ruCa1CmYHlzk7ikKA==", + "dependencies": { + "@babel/runtime": "^7.21.0", + "@popperjs/core": "^2.11.6", + "@react-aria/ssr": "^3.5.0", + "@restart/hooks": "^0.4.9", + "@types/warning": "^3.0.0", + "dequal": "^2.0.3", + "dom-helpers": "^5.2.0", + "uncontrollable": "^8.0.1", + "warning": "^4.0.3" + }, + "peerDependencies": { + "react": ">=16.14.0", + "react-dom": ">=16.14.0" + } + }, + "node_modules/@restart/ui/node_modules/@babel/runtime": { + "version": "7.23.2", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.2.tgz", + "integrity": "sha512-mM8eg4yl5D6i3lu2QKPuPH4FArvJ8KhTofbE7jwMUv9KX5mBvwPAqnV3MlyBNqdp9RyRKP6Yck8TrfYrPvX3bg==", + "dependencies": { + "regenerator-runtime": "^0.14.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@restart/ui/node_modules/dom-helpers": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-5.2.1.tgz", + "integrity": "sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==", + "dependencies": { + "@babel/runtime": "^7.8.7", + "csstype": "^3.0.2" + } + }, + "node_modules/@restart/ui/node_modules/regenerator-runtime": { + "version": "0.14.0", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.0.tgz", + "integrity": "sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==" + }, + "node_modules/@restart/ui/node_modules/uncontrollable": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/uncontrollable/-/uncontrollable-8.0.4.tgz", + "integrity": "sha512-ulRWYWHvscPFc0QQXvyJjY6LIXU56f0h8pQFvhxiKk5V1fcI8gp9Ht9leVAhrVjzqMw0BgjspBINx9r6oyJUvQ==", + "peerDependencies": { + "react": ">=16.14.0" + } + }, + "node_modules/@swc/helpers": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.3.tgz", + "integrity": "sha512-FaruWX6KdudYloq1AHD/4nU+UsMTdNE8CKyrseXWEcgjDAbvkwJg2QGPAnfIJLIWsjZOSPLOAykK6fuYp4vp4A==", + "dependencies": { + "tslib": "^2.4.0" + } + }, + "node_modules/@types/hoist-non-react-statics": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/@types/hoist-non-react-statics/-/hoist-non-react-statics-3.3.4.tgz", + "integrity": "sha512-ZchYkbieA+7tnxwX/SCBySx9WwvWR8TaP5tb2jRAzwvLb/rWchGw3v0w3pqUbUvj0GCwW2Xz/AVPSk6kUGctXQ==", + "dependencies": { + "@types/react": "*", + "hoist-non-react-statics": "^3.3.0" + } + }, + "node_modules/@types/lodash": { + "version": "4.14.200", + "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.200.tgz", + "integrity": "sha512-YI/M/4HRImtNf3pJgbF+W6FrXovqj+T+/HpENLTooK9PnkacBsDpeP3IpHab40CClUfhNmdM2WTNP2sa2dni5Q==" + }, + "node_modules/@types/prop-types": { + "version": "15.7.9", + "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.9.tgz", + "integrity": "sha512-n1yyPsugYNSmHgxDFjicaI2+gCNjsBck8UX9kuofAKlc0h1bL+20oSF72KeNaW2DUlesbEVCFgyV2dPGTiY42g==" + }, + "node_modules/@types/react": { + "version": "18.2.34", + "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.34.tgz", + "integrity": "sha512-U6eW/alrRk37FU/MS2RYMjx0Va2JGIVXELTODaTIYgvWGCV4Y4TfTUzG8DdmpDNIT0Xpj/R7GfyHOJJrDttcvg==", + "dependencies": { + "@types/prop-types": "*", + "@types/scheduler": "*", + "csstype": "^3.0.2" + } + }, + "node_modules/@types/react-redux": { + "version": "7.1.28", + "resolved": "https://registry.npmjs.org/@types/react-redux/-/react-redux-7.1.28.tgz", + "integrity": "sha512-EQr7cChVzVUuqbA+J8ArWK1H0hLAHKOs21SIMrskKZ3nHNeE+LFYA+IsoZGhVOT8Ktjn3M20v4rnZKN3fLbypw==", + "dependencies": { + "@types/hoist-non-react-statics": "^3.3.0", + "@types/react": "*", + "hoist-non-react-statics": "^3.3.0", + "redux": "^4.0.0" + } + }, + "node_modules/@types/react-transition-group": { + "version": "4.4.8", + "resolved": "https://registry.npmjs.org/@types/react-transition-group/-/react-transition-group-4.4.8.tgz", + "integrity": "sha512-QmQ22q+Pb+HQSn04NL3HtrqHwYMf4h3QKArOy5F8U5nEVMaihBs3SR10WiOM1iwPz5jIo8x/u11al+iEGZZrvg==", + "dependencies": { + "@types/react": "*" + } + }, + "node_modules/@types/scheduler": { + "version": "0.16.5", + "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.5.tgz", + "integrity": "sha512-s/FPdYRmZR8SjLWGMCuax7r3qCWQw9QKHzXVukAuuIJkXkDRwp+Pu5LMIVFi0Fxbav35WURicYr8u1QsoybnQw==" + }, + "node_modules/@types/warning": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/@types/warning/-/warning-3.0.2.tgz", + "integrity": "sha512-S/2+OjBIcBl8Kur23YLe0hG1e7J5m2bHfB4UuMNoLZjIFhQWhTf1FeS+WFoXHUC6QsCEfk4pftj4J1KIKC1glA==" + }, + "node_modules/abbrev": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", + "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==" + }, + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/amdefine": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz", + "integrity": "sha512-S2Hw0TtNkMJhIabBwIojKL9YHO5T0n5eNqWJ7Lrlel/zDbftQpxpapi8tZs3X1HWa+u+QeydGmzzNU0m09+Rcg==", + "engines": { + "node": ">=0.4.2" + } + }, + "node_modules/anser": { + "version": "1.4.9", + "resolved": "https://registry.npmjs.org/anser/-/anser-1.4.9.tgz", + "integrity": "sha512-AI+BjTeGt2+WFk4eWcqbQ7snZpDBt8SaLlj0RT2h5xfdWaiy51OjYvqwMrNzJLGy8iOAL6nKDITWO+rd4MkYEA==" + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/aproba": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz", + "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==" + }, + "node_modules/are-we-there-yet": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.7.tgz", + "integrity": "sha512-nxwy40TuMiUGqMyRHgCSWZ9FM4VAoRP4xUYSTv5ImRog+h9yISPbVH7H8fASCIzYn9wlEv4zvFL7uKDMCFQm3g==", + "dependencies": { + "delegates": "^1.0.0", + "readable-stream": "^2.0.6" + } + }, + "node_modules/are-we-there-yet/node_modules/readable-stream": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/are-we-there-yet/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + }, + "node_modules/are-we-there-yet/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/array-find-index": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/array-find-index/-/array-find-index-1.0.2.tgz", + "integrity": "sha512-M1HQyIXcBGtVywBt8WVdim+lrNaK7VHp99Qt5pSNziXznKHViIBbXWtfRTpEFpF/c4FdfxNAsCCwPp5phBYJtw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/asn1": { + "version": "0.2.6", + "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.6.tgz", + "integrity": "sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==", + "dependencies": { + "safer-buffer": "~2.1.0" + } + }, + "node_modules/asn1.js": { + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-5.4.1.tgz", + "integrity": "sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==", + "dependencies": { + "bn.js": "^4.0.0", + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0", + "safer-buffer": "^2.1.0" + } + }, + "node_modules/asn1.js/node_modules/bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" + }, + "node_modules/assert": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/assert/-/assert-1.5.1.tgz", + "integrity": "sha512-zzw1uCAgLbsKwBfFc8CX78DDg+xZeBksSO3vwVIDDN5i94eOrPsSSyiVhmsSABFDM/OcpE2aagCat9dnWQLG1A==", + "dependencies": { + "object.assign": "^4.1.4", + "util": "^0.10.4" + } + }, + "node_modules/assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", + "integrity": "sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==", + "engines": { + "node": ">=0.8" + } + }, + "node_modules/assert/node_modules/inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==" + }, + "node_modules/assert/node_modules/util": { + "version": "0.10.4", + "resolved": "https://registry.npmjs.org/util/-/util-0.10.4.tgz", + "integrity": "sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A==", + "dependencies": { + "inherits": "2.0.3" + } + }, + "node_modules/ast-types": { + "version": "0.13.2", + "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.13.2.tgz", + "integrity": "sha512-uWMHxJxtfj/1oZClOxDEV1sQ1HCDkA4MG8Gr69KKeBjEVH0R84WlejZ0y2DcwyBlpAEMltmVYkVgqfLFb2oyiA==", + "engines": { + "node": ">=4" + } + }, + "node_modules/async-foreach": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/async-foreach/-/async-foreach-0.1.3.tgz", + "integrity": "sha512-VUeSMD8nEGBWaZK4lizI1sf3yEC7pnAQ/mrI7pC2fBz2s/tq5jWWEngTwaf0Gruu/OoXRGLGg1XFqpYBiGTYJA==", + "engines": { + "node": "*" + } + }, + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" + }, + "node_modules/aws-sign2": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", + "integrity": "sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==", + "engines": { + "node": "*" + } + }, + "node_modules/aws4": { + "version": "1.12.0", + "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.12.0.tgz", + "integrity": "sha512-NmWvPnx0F1SfrQbYwOi7OeaNGokp9XhzNioJ/CSBs8Qa4vxug81mhJEAVZwxXuBmYB5KDRfMq/F3RR0BIU7sWg==" + }, + "node_modules/babel-plugin-syntax-jsx": { + "version": "6.18.0", + "resolved": "https://registry.npmjs.org/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz", + "integrity": "sha512-qrPaCSo9c8RHNRHIotaufGbuOBN8rtdC4QrrFFc43vyWCCz7Kl7GL1PGaXtMGQZUXrkCjNEgxDfmAuAabr/rlw==" + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" + }, + "node_modules/base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/bcrypt-pbkdf": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", + "integrity": "sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==", + "dependencies": { + "tweetnacl": "^0.14.3" + } + }, + "node_modules/big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", + "engines": { + "node": "*" + } + }, + "node_modules/binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "engines": { + "node": ">=8" + } + }, + "node_modules/bn.js": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-5.2.1.tgz", + "integrity": "sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ==" + }, + "node_modules/bootstrap": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/bootstrap/-/bootstrap-5.3.2.tgz", + "integrity": "sha512-D32nmNWiQHo94BKHLmOrdjlL05q1c8oxbtBphQFb9Z5to6eGRDCm0QgeaZ4zFBHzfg2++rqa2JkqCcxDy0sH0g==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/twbs" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/bootstrap" + } + ], + "peerDependencies": { + "@popperjs/core": "^2.11.8" + } + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/brorand": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz", + "integrity": "sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w==" + }, + "node_modules/browserify-aes": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz", + "integrity": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==", + "dependencies": { + "buffer-xor": "^1.0.3", + "cipher-base": "^1.0.0", + "create-hash": "^1.1.0", + "evp_bytestokey": "^1.0.3", + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "node_modules/browserify-cipher": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz", + "integrity": "sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==", + "dependencies": { + "browserify-aes": "^1.0.4", + "browserify-des": "^1.0.0", + "evp_bytestokey": "^1.0.0" + } + }, + "node_modules/browserify-des": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz", + "integrity": "sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==", + "dependencies": { + "cipher-base": "^1.0.1", + "des.js": "^1.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" + } + }, + "node_modules/browserify-rsa": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.1.0.tgz", + "integrity": "sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog==", + "dependencies": { + "bn.js": "^5.0.0", + "randombytes": "^2.0.1" + } + }, + "node_modules/browserify-sign": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.2.2.tgz", + "integrity": "sha512-1rudGyeYY42Dk6texmv7c4VcQ0EsvVbLwZkA+AQB7SxvXxmcD93jcHie8bzecJ+ChDlmAm2Qyu0+Ccg5uhZXCg==", + "dependencies": { + "bn.js": "^5.2.1", + "browserify-rsa": "^4.1.0", + "create-hash": "^1.2.0", + "create-hmac": "^1.1.7", + "elliptic": "^6.5.4", + "inherits": "^2.0.4", + "parse-asn1": "^5.1.6", + "readable-stream": "^3.6.2", + "safe-buffer": "^5.2.1" + }, + "engines": { + "node": ">= 4" + } + }, + "node_modules/browserify-zlib": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz", + "integrity": "sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==", + "dependencies": { + "pako": "~1.0.5" + } + }, + "node_modules/browserslist": { + "version": "4.16.1", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.16.1.tgz", + "integrity": "sha512-UXhDrwqsNcpTYJBTZsbGATDxZbiVDsx6UjpmRUmtnP10pr8wAYr5LgFoEFw9ixriQH2mv/NX2SfGzE/o8GndLA==", + "dependencies": { + "caniuse-lite": "^1.0.30001173", + "colorette": "^1.2.1", + "electron-to-chromium": "^1.3.634", + "escalade": "^3.1.1", + "node-releases": "^1.1.69" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + } + }, + "node_modules/buffer": { + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.6.0.tgz", + "integrity": "sha512-/gDYp/UtU0eA1ys8bOs9J6a+E/KWIY+DZ+Q2WESNUA0jFRsJOc0SNUO6xJ5SGA1xueg3NL65W6s+NY5l9cunuw==", + "dependencies": { + "base64-js": "^1.0.2", + "ieee754": "^1.1.4" + } + }, + "node_modules/buffer-xor": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz", + "integrity": "sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ==" + }, + "node_modules/builtin-status-codes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz", + "integrity": "sha512-HpGFw18DgFWlncDfjTa2rcQ4W88O1mC8e8yZ2AvQY5KDaktSTwo+KRf6nHK6FRI5FyRyb/5T6+TSxfP7QyGsmQ==" + }, + "node_modules/bytes": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz", + "integrity": "sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/call-bind": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.5.tgz", + "integrity": "sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==", + "dependencies": { + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.1", + "set-function-length": "^1.1.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/camelcase": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-2.1.1.tgz", + "integrity": "sha512-DLIsRzJVBQu72meAKPkWQOLcujdXT32hwdfnkI1frSiSRMK1MofjKHf+MEx0SB6fjEFXL8fBDv1dKymBlOp4Qw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/camelcase-keys": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-2.1.0.tgz", + "integrity": "sha512-bA/Z/DERHKqoEOrp+qeGKw1QlvEQkGZSc0XaY6VnTxZr+Kv1G5zFwttpjv8qxZ/sBPT4nthwZaAcsAZTJlSKXQ==", + "dependencies": { + "camelcase": "^2.0.0", + "map-obj": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001559", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001559.tgz", + "integrity": "sha512-cPiMKZgqgkg5LY3/ntGeLFUpi6tzddBNS58A4tnTgQw1zON7u2sZMU7SzOeVH4tj20++9ggL+V6FDOFMTaFFYA==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ] + }, + "node_modules/caseless": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", + "integrity": "sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==" + }, + "node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/chart.js": { + "version": "2.9.4", + "resolved": "https://registry.npmjs.org/chart.js/-/chart.js-2.9.4.tgz", + "integrity": "sha512-B07aAzxcrikjAPyV+01j7BmOpxtQETxTSlQ26BEYJ+3iUkbNKaOJ/nDbT6JjyqYxseM0ON12COHYdU2cTIjC7A==", + "dependencies": { + "chartjs-color": "^2.1.0", + "moment": "^2.10.2" + } + }, + "node_modules/chartjs-color": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/chartjs-color/-/chartjs-color-2.4.1.tgz", + "integrity": "sha512-haqOg1+Yebys/Ts/9bLo/BqUcONQOdr/hoEr2LLTRl6C5LXctUdHxsCYfvQVg5JIxITrfCNUDr4ntqmQk9+/0w==", + "dependencies": { + "chartjs-color-string": "^0.6.0", + "color-convert": "^1.9.3" + } + }, + "node_modules/chartjs-color-string": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/chartjs-color-string/-/chartjs-color-string-0.6.0.tgz", + "integrity": "sha512-TIB5OKn1hPJvO7JcteW4WY/63v6KwEdt6udfnDE9iCAZgy+V4SrbSxoIbTw/xkUIapjEI4ExGtD0+6D3KyFd7A==", + "dependencies": { + "color-name": "^1.0.0" + } + }, + "node_modules/chokidar": { + "version": "3.5.1", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.1.tgz", + "integrity": "sha512-9+s+Od+W0VJJzawDma/gvBNQqkTiqYTWLuZoyAsivsI4AaWTCzHG06/TMjsf1cYe9Cb97UCEhjz7HvnPk2p/tw==", + "dependencies": { + "anymatch": "~3.1.1", + "braces": "~3.0.2", + "glob-parent": "~5.1.0", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.5.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.1" + } + }, + "node_modules/chownr": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", + "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", + "engines": { + "node": ">=10" + } + }, + "node_modules/cipher-base": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz", + "integrity": "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==", + "dependencies": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "node_modules/classnames": { + "version": "2.2.6", + "resolved": "https://registry.npmjs.org/classnames/-/classnames-2.2.6.tgz", + "integrity": "sha512-JR/iSQOSt+LQIWwrwEzJ9uk0xfN3mTVYMwt1Ir5mUcSN6pU+V4zQFFaJsclJbPuAUQH+yfWef6tm7l1quW3C8Q==" + }, + "node_modules/cliui": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz", + "integrity": "sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==", + "dependencies": { + "string-width": "^3.1.0", + "strip-ansi": "^5.2.0", + "wrap-ansi": "^5.1.0" + } + }, + "node_modules/cliui/node_modules/ansi-regex": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", + "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", + "engines": { + "node": ">=6" + } + }, + "node_modules/cliui/node_modules/is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==", + "engines": { + "node": ">=4" + } + }, + "node_modules/cliui/node_modules/string-width": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "dependencies": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/cliui/node_modules/strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dependencies": { + "ansi-regex": "^4.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/code-point-at": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz", + "integrity": "sha512-RpAVKQA5T63xEj6/giIbUEtZwJ4UFIc3ZtvEkiaUERylqe8xb5IvqcgOurZLahv93CLKfxcw5YI+DZcUBRyLXA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/color-convert/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/colorette": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-1.4.0.tgz", + "integrity": "sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==" + }, + "node_modules/combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/commondir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", + "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==" + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" + }, + "node_modules/console-browserify": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/console-browserify/-/console-browserify-1.2.0.tgz", + "integrity": "sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==" + }, + "node_modules/console-control-strings": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", + "integrity": "sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==" + }, + "node_modules/constants-browserify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz", + "integrity": "sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ==" + }, + "node_modules/convert-source-map": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.7.0.tgz", + "integrity": "sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA==", + "dependencies": { + "safe-buffer": "~5.1.1" + } + }, + "node_modules/convert-source-map/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + }, + "node_modules/core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==" + }, + "node_modules/create-ecdh": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.4.tgz", + "integrity": "sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==", + "dependencies": { + "bn.js": "^4.1.0", + "elliptic": "^6.5.3" + } + }, + "node_modules/create-ecdh/node_modules/bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" + }, + "node_modules/create-hash": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz", + "integrity": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==", + "dependencies": { + "cipher-base": "^1.0.1", + "inherits": "^2.0.1", + "md5.js": "^1.3.4", + "ripemd160": "^2.0.1", + "sha.js": "^2.4.0" + } + }, + "node_modules/create-hmac": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz", + "integrity": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==", + "dependencies": { + "cipher-base": "^1.0.3", + "create-hash": "^1.1.0", + "inherits": "^2.0.1", + "ripemd160": "^2.0.0", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" + } + }, + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/crypto-browserify": { + "version": "3.12.0", + "resolved": "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz", + "integrity": "sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==", + "dependencies": { + "browserify-cipher": "^1.0.0", + "browserify-sign": "^4.0.0", + "create-ecdh": "^4.0.0", + "create-hash": "^1.1.0", + "create-hmac": "^1.1.0", + "diffie-hellman": "^5.0.0", + "inherits": "^2.0.1", + "pbkdf2": "^3.0.3", + "public-encrypt": "^4.0.0", + "randombytes": "^2.0.0", + "randomfill": "^1.0.3" + }, + "engines": { + "node": "*" + } + }, + "node_modules/css.escape": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/css.escape/-/css.escape-1.5.1.tgz", + "integrity": "sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg==" + }, + "node_modules/cssnano-preset-simple": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/cssnano-preset-simple/-/cssnano-preset-simple-1.2.2.tgz", + "integrity": "sha512-gtvrcRSGtP3hA/wS8mFVinFnQdEsEpm3v4I/s/KmNjpdWaThV/4E5EojAzFXxyT5OCSRPLlHR9iQexAqKHlhGQ==", + "dependencies": { + "caniuse-lite": "^1.0.30001179", + "postcss": "^7.0.32" + } + }, + "node_modules/cssnano-preset-simple/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/cssnano-preset-simple/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/cssnano-simple": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/cssnano-simple/-/cssnano-simple-1.2.2.tgz", + "integrity": "sha512-4slyYc1w4JhSbhVX5xi9G0aQ42JnRyPg+7l7cqoNyoIDzfWx40Rq3JQZnoAWDu60A4AvKVp9ln/YSUOdhDX68g==", + "dependencies": { + "cssnano-preset-simple": "1.2.2", + "postcss": "^7.0.32" + } + }, + "node_modules/cssnano-simple/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/cssnano-simple/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/csstype": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.2.tgz", + "integrity": "sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==" + }, + "node_modules/currently-unhandled": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/currently-unhandled/-/currently-unhandled-0.4.1.tgz", + "integrity": "sha512-/fITjgjGU50vjQ4FH6eUoYu+iUoUKIXws2hL15JJpIR+BbTxaXQsMuuyjtNh2WqsSBS5nsaZHFsFecyw5CCAng==", + "dependencies": { + "array-find-index": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/dashdash": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", + "integrity": "sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==", + "dependencies": { + "assert-plus": "^1.0.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/data-uri-to-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-3.0.1.tgz", + "integrity": "sha512-WboRycPNsVw3B3TL559F7kuBUM4d8CgMEvk6xEJlOp7OBPjt6G7z8WMWlD2rOFZLk6OYfFIUGsCOWzcQH9K2og==", + "engines": { + "node": ">= 6" + } + }, + "node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/deep-equal": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.1.1.tgz", + "integrity": "sha512-yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g==", + "dependencies": { + "is-arguments": "^1.0.4", + "is-date-object": "^1.0.1", + "is-regex": "^1.0.4", + "object-is": "^1.0.1", + "object-keys": "^1.1.1", + "regexp.prototype.flags": "^1.2.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/deepmerge": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-2.2.1.tgz", + "integrity": "sha512-R9hc1Xa/NOBi9WRVUWg19rl1UB7Tt4kuPd+thNJgFZoxXsTz7ncaPaeIm+40oSGuP33DfMb4sZt1QIGiJzC4EA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/define-data-property": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.1.tgz", + "integrity": "sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==", + "dependencies": { + "get-intrinsic": "^1.2.1", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/define-properties": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", + "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", + "dependencies": { + "define-data-property": "^1.0.1", + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/delegates": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", + "integrity": "sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==" + }, + "node_modules/depd": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", + "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/dequal": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", + "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", + "engines": { + "node": ">=6" + } + }, + "node_modules/des.js": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/des.js/-/des.js-1.1.0.tgz", + "integrity": "sha512-r17GxjhUCjSRy8aiJpr8/UadFIzMzJGexI3Nmz4ADi9LYSFx4gTBp80+NaX/YsXWWLhpZ7v/v/ubEc/bCNfKwg==", + "dependencies": { + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0" + } + }, + "node_modules/diffie-hellman": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz", + "integrity": "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==", + "dependencies": { + "bn.js": "^4.1.0", + "miller-rabin": "^4.0.0", + "randombytes": "^2.0.0" + } + }, + "node_modules/diffie-hellman/node_modules/bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" + }, + "node_modules/dom-helpers": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-3.4.0.tgz", + "integrity": "sha512-LnuPJ+dwqKDIyotW1VzmOZ5TONUN7CwkCR5hrgawTUbkBGYdeoNLZo6nNfGkCrjtE1nXXaj7iMMpDa8/d9WoIA==", + "dependencies": { + "@babel/runtime": "^7.1.2" + } + }, + "node_modules/domain-browser": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/domain-browser/-/domain-browser-1.2.0.tgz", + "integrity": "sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==", + "engines": { + "node": ">=0.4", + "npm": ">=1.2" + } + }, + "node_modules/ecc-jsbn": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", + "integrity": "sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==", + "dependencies": { + "jsbn": "~0.1.0", + "safer-buffer": "^2.1.0" + } + }, + "node_modules/electron-to-chromium": { + "version": "1.4.575", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.575.tgz", + "integrity": "sha512-kY2BGyvgAHiX899oF6xLXSIf99bAvvdPhDoJwG77nxCSyWYuRH6e9a9a3gpXBvCs6lj4dQZJkfnW2hdKWHEISg==" + }, + "node_modules/elliptic": { + "version": "6.5.4", + "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.4.tgz", + "integrity": "sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==", + "dependencies": { + "bn.js": "^4.11.9", + "brorand": "^1.1.0", + "hash.js": "^1.0.0", + "hmac-drbg": "^1.0.1", + "inherits": "^2.0.4", + "minimalistic-assert": "^1.0.1", + "minimalistic-crypto-utils": "^1.0.1" + } + }, + "node_modules/elliptic/node_modules/bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" + }, + "node_modules/emoji-regex": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", + "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==" + }, + "node_modules/emojis-list": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-2.1.0.tgz", + "integrity": "sha512-knHEZMgs8BB+MInokmNTg/OyPlAddghe1YBgNwJBc5zsJi/uyIcXoSDsL/W9ymOsBoBGdPIHXYJ9+qKFwRwDng==", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/env-paths": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz", + "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==", + "engines": { + "node": ">=6" + } + }, + "node_modules/error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "dependencies": { + "is-arrayish": "^0.2.1" + } + }, + "node_modules/escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/events": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", + "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", + "engines": { + "node": ">=0.8.x" + } + }, + "node_modules/evp_bytestokey": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz", + "integrity": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==", + "dependencies": { + "md5.js": "^1.3.4", + "safe-buffer": "^5.1.1" + } + }, + "node_modules/extend": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" + }, + "node_modules/extsprintf": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", + "integrity": "sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==", + "engines": [ + "node >=0.6.0" + ] + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" + }, + "node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/find-cache-dir": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.1.tgz", + "integrity": "sha512-t2GDMt3oGC/v+BMwzmllWDuJF/xcDtE5j/fCGbqDD7OLuJkj0cfh1YSA5VKPvwMeLFLNDBkwOKZ2X85jGLVftQ==", + "dependencies": { + "commondir": "^1.0.1", + "make-dir": "^3.0.2", + "pkg-dir": "^4.1.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/avajs/find-cache-dir?sponsor=1" + } + }, + "node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/forever-agent": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", + "integrity": "sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==", + "engines": { + "node": "*" + } + }, + "node_modules/form-data": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", + "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.6", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 0.12" + } + }, + "node_modules/formik": { + "version": "2.4.5", + "resolved": "https://registry.npmjs.org/formik/-/formik-2.4.5.tgz", + "integrity": "sha512-Gxlht0TD3vVdzMDHwkiNZqJ7Mvg77xQNfmBRrNtvzcHZs72TJppSTDKHpImCMJZwcWPBJ8jSQQ95GJzXFf1nAQ==", + "funding": [ + { + "type": "individual", + "url": "https://opencollective.com/formik" + } + ], + "dependencies": { + "@types/hoist-non-react-statics": "^3.3.1", + "deepmerge": "^2.1.1", + "hoist-non-react-statics": "^3.3.0", + "lodash": "^4.17.21", + "lodash-es": "^4.17.21", + "react-fast-compare": "^2.0.1", + "tiny-warning": "^1.0.2", + "tslib": "^2.0.0" + }, + "peerDependencies": { + "react": ">=16.8.0" + } + }, + "node_modules/fs-minipass": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", + "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/fs-minipass/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/functions-have-names": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/gauge": { + "version": "2.7.4", + "resolved": "https://registry.npmjs.org/gauge/-/gauge-2.7.4.tgz", + "integrity": "sha512-14x4kjc6lkD3ltw589k0NrPD6cCNTD6CWoVUNpB85+DrtONoZn+Rug6xZU5RvSC4+TZPxA5AnBibQYAvZn41Hg==", + "dependencies": { + "aproba": "^1.0.3", + "console-control-strings": "^1.0.0", + "has-unicode": "^2.0.0", + "object-assign": "^4.1.0", + "signal-exit": "^3.0.0", + "string-width": "^1.0.1", + "strip-ansi": "^3.0.1", + "wide-align": "^1.1.0" + } + }, + "node_modules/gauge/node_modules/ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/gauge/node_modules/strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==", + "dependencies": { + "ansi-regex": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/gaze": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/gaze/-/gaze-1.1.3.tgz", + "integrity": "sha512-BRdNm8hbWzFzWHERTrejLqwHDfS4GibPoq5wjTPIoJHoBtKGPg3xAFfxmM+9ztbXelxcf2hwQcaz1PtmFeue8g==", + "dependencies": { + "globule": "^1.0.0" + }, + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/get-intrinsic": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.2.tgz", + "integrity": "sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==", + "dependencies": { + "function-bind": "^1.1.2", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "hasown": "^2.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-orientation": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/get-orientation/-/get-orientation-1.1.2.tgz", + "integrity": "sha512-/pViTfifW+gBbh/RnlFYHINvELT9Znt+SYyDKAUL6uV6By019AK/s+i9XP4jSwq7lwP38Fd8HVeTxym3+hkwmQ==", + "dependencies": { + "stream-parser": "^0.3.1" + } + }, + "node_modules/get-stdin": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-4.0.1.tgz", + "integrity": "sha512-F5aQMywwJ2n85s4hJPTT9RPxGmubonuB10MNYo17/xph174n2MIR33HRguhzVag10O/npM7SPk73LMZNP+FaWw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/getpass": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", + "integrity": "sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==", + "dependencies": { + "assert-plus": "^1.0.0" + } + }, + "node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/glob-to-regexp": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", + "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==" + }, + "node_modules/globule": { + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/globule/-/globule-1.3.4.tgz", + "integrity": "sha512-OPTIfhMBh7JbBYDpa5b+Q5ptmMWKwcNcFSR/0c6t8V4f3ZAVBEsKNY37QdVqmLRYSMhOUGYrY0QhSoEpzGr/Eg==", + "dependencies": { + "glob": "~7.1.1", + "lodash": "^4.17.21", + "minimatch": "~3.0.2" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/globule/node_modules/glob": { + "version": "7.1.7", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz", + "integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/globule/node_modules/minimatch": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.8.tgz", + "integrity": "sha512-6FsRAQsxQ61mw+qP1ZzbL9Bc78x2p5OqNgNpnoAFLTrX8n5Kxph0CsnhmKKNXTWjXqU5L0pGPR7hYk+XWZr60Q==", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/gopd": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", + "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + "dependencies": { + "get-intrinsic": "^1.1.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" + }, + "node_modules/gud": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/gud/-/gud-1.0.0.tgz", + "integrity": "sha512-zGEOVKFM5sVPPrYs7J5/hYEw2Pof8KCyOwyhG8sAF26mCAeUFAcYPu1mwB7hhpIP29zOIBaDqwuHdLp0jvZXjw==" + }, + "node_modules/har-schema": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", + "integrity": "sha512-Oqluz6zhGX8cyRaTQlFMPw80bSJVG2x/cFb8ZPhUILGgHka9SsokCCOQgpveePerqidZOrT14ipqfJb7ILcW5Q==", + "engines": { + "node": ">=4" + } + }, + "node_modules/har-validator": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz", + "integrity": "sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==", + "deprecated": "this library is no longer supported", + "dependencies": { + "ajv": "^6.12.3", + "har-schema": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/has-ansi": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz", + "integrity": "sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg==", + "dependencies": { + "ansi-regex": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-ansi/node_modules/ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "engines": { + "node": ">=4" + } + }, + "node_modules/has-property-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.1.tgz", + "integrity": "sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==", + "dependencies": { + "get-intrinsic": "^1.2.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", + "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-tostringtag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", + "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", + "dependencies": { + "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-unicode": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", + "integrity": "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==" + }, + "node_modules/hash-base": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.1.0.tgz", + "integrity": "sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==", + "dependencies": { + "inherits": "^2.0.4", + "readable-stream": "^3.6.0", + "safe-buffer": "^5.2.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/hash.js": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz", + "integrity": "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==", + "dependencies": { + "inherits": "^2.0.3", + "minimalistic-assert": "^1.0.1" + } + }, + "node_modules/hasown": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.0.tgz", + "integrity": "sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==", + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/he": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", + "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", + "bin": { + "he": "bin/he" + } + }, + "node_modules/hmac-drbg": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz", + "integrity": "sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg==", + "dependencies": { + "hash.js": "^1.0.3", + "minimalistic-assert": "^1.0.0", + "minimalistic-crypto-utils": "^1.0.1" + } + }, + "node_modules/hoist-non-react-statics": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz", + "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==", + "dependencies": { + "react-is": "^16.7.0" + } + }, + "node_modules/hosted-git-info": { + "version": "2.8.9", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==" + }, + "node_modules/http-errors": { + "version": "1.7.3", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.7.3.tgz", + "integrity": "sha512-ZTTX0MWrsQ2ZAhA1cejAwDLycFsd7I7nVtnkT3Ol0aqodaKW+0CTZDQ1uBv5whptCnc8e8HeRRJxRs0kmm/Qfw==", + "dependencies": { + "depd": "~1.1.2", + "inherits": "2.0.4", + "setprototypeof": "1.1.1", + "statuses": ">= 1.5.0 < 2", + "toidentifier": "1.0.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/http-signature": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", + "integrity": "sha512-CAbnr6Rz4CYQkLYUtSNXxQPUH2gK8f3iWexVlsnMeD+GjlsQ0Xsy1cOX+mN3dtxYomRy21CiOzU8Uhw6OwncEQ==", + "dependencies": { + "assert-plus": "^1.0.0", + "jsprim": "^1.2.2", + "sshpk": "^1.7.0" + }, + "engines": { + "node": ">=0.8", + "npm": ">=1.3.7" + } + }, + "node_modules/https-browserify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz", + "integrity": "sha512-J+FkSdyD+0mA0N+81tMotaRMfSL9SGi+xpD3T6YApKsc3bGSXJlfXri3VyFOeYkfLRQisDk1W+jIFFKBeUBbBg==" + }, + "node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/immutable": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/immutable/-/immutable-4.3.4.tgz", + "integrity": "sha512-fsXeu4J4i6WNWSikpI88v/PcVflZz+6kMhUfIwc5SY+poQRPnaf5V7qds6SUyUN3cVxEzuCab7QIoLOQ+DQ1wA==", + "devOptional": true + }, + "node_modules/indent-string": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-2.1.0.tgz", + "integrity": "sha512-aqwDFWSgSgfRaEwao5lg5KEcVd/2a+D1rvoG7NdilmYz0NwRk6StWpWdz/Hpk34MKPpx7s8XxUqimfcQK6gGlg==", + "dependencies": { + "repeating": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + }, + "node_modules/invariant": { + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz", + "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==", + "dependencies": { + "loose-envify": "^1.0.0" + } + }, + "node_modules/is-arguments": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", + "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==" + }, + "node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-core-module": { + "version": "2.13.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.1.tgz", + "integrity": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==", + "dependencies": { + "hasown": "^2.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-date-object": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-finite": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-finite/-/is-finite-1.1.0.tgz", + "integrity": "sha512-cdyMtqX/BOqqNBBiKlIVkytNHm49MtMlYyn1zxzvJKWmFMlGzm+ry5BBfYyeY9YmNKbRSo/o7OX9w9ale0wg3w==", + "engines": { + "node": ">=0.10.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", + "integrity": "sha512-1pqUqRjkhPJ9miNq9SwMfdvi6lBJcd6eFxvfaivQhaH3SgisfiuudvFntdKOmxuee/77l+FPjKrQjWvmPjWrRw==", + "dependencies": { + "number-is-nan": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-regex": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-typedarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", + "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==" + }, + "node_modules/is-utf8": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz", + "integrity": "sha512-rMYPYvCzsXywIsldgLaSoPlw5PfoB/ssr7hY4pLfcodrA5M/eArza1a9VmTiNIBNMjOGr1Ow9mTyU2o69U6U9Q==" + }, + "node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" + }, + "node_modules/isobject": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", + "integrity": "sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==", + "dependencies": { + "isarray": "1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/isstream": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", + "integrity": "sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==" + }, + "node_modules/jest-worker": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-24.9.0.tgz", + "integrity": "sha512-51PE4haMSXcHohnSMdM42anbvZANYTqMrr52tVKPqqsPJMzoP6FYYDVqahX/HrAoKEKz3uUPzSvKs9A3qR4iVw==", + "dependencies": { + "merge-stream": "^2.0.0", + "supports-color": "^6.1.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-worker/node_modules/supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/js-base64": { + "version": "2.6.4", + "resolved": "https://registry.npmjs.org/js-base64/-/js-base64-2.6.4.tgz", + "integrity": "sha512-pZe//GGmwJndub7ZghVHz7vjb2LgC1m8B07Au3eYqeqv9emhESByMXxaEgkUkEqJe87oBbSniGYoQNIBklc7IQ==" + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" + }, + "node_modules/jsbn": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", + "integrity": "sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==" + }, + "node_modules/json-schema": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz", + "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==" + }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" + }, + "node_modules/json-stringify-safe": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", + "integrity": "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==" + }, + "node_modules/json5": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/jsprim": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.2.tgz", + "integrity": "sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==", + "dependencies": { + "assert-plus": "1.0.0", + "extsprintf": "1.3.0", + "json-schema": "0.4.0", + "verror": "1.10.0" + }, + "engines": { + "node": ">=0.6.0" + } + }, + "node_modules/line-column": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/line-column/-/line-column-1.0.2.tgz", + "integrity": "sha512-Ktrjk5noGYlHsVnYWh62FLVs4hTb8A3e+vucNZMgPeAOITdshMSgv4cCZQeRDjm7+goqmo6+liZwTXo+U3sVww==", + "dependencies": { + "isarray": "^1.0.0", + "isobject": "^2.0.0" + } + }, + "node_modules/load-json-file": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz", + "integrity": "sha512-cy7ZdNRXdablkXYNI049pthVeXFurRyb9+hA/dZzerZ0pGTx42z+y+ssxBaVV2l70t1muq5IdKhn4UtcoGUY9A==", + "dependencies": { + "graceful-fs": "^4.1.2", + "parse-json": "^2.2.0", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0", + "strip-bom": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/loader-utils": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.2.3.tgz", + "integrity": "sha512-fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA==", + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^2.0.0", + "json5": "^1.0.1" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" + }, + "node_modules/lodash-es": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash-es/-/lodash-es-4.17.21.tgz", + "integrity": "sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==" + }, + "node_modules/lodash.sortby": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz", + "integrity": "sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==" + }, + "node_modules/loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "dependencies": { + "js-tokens": "^3.0.0 || ^4.0.0" + }, + "bin": { + "loose-envify": "cli.js" + } + }, + "node_modules/loud-rejection": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/loud-rejection/-/loud-rejection-1.6.0.tgz", + "integrity": "sha512-RPNliZOFkqFumDhvYqOaNY4Uz9oJM2K9tC6JWsJJsNdhuONW4LQHRBpb0qf4pJApVffI5N39SwzWZJuEhfd7eQ==", + "dependencies": { + "currently-unhandled": "^0.4.1", + "signal-exit": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "dependencies": { + "semver": "^6.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/map-obj": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz", + "integrity": "sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/md5.js": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz", + "integrity": "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==", + "dependencies": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" + } + }, + "node_modules/meow": { + "version": "3.7.0", + "resolved": "https://registry.npmjs.org/meow/-/meow-3.7.0.tgz", + "integrity": "sha512-TNdwZs0skRlpPpCUK25StC4VH+tP5GgeY1HQOOGP+lQ2xtdkN2VtT/5tiX9k3IWpkBPV9b3LsAWXn4GGi/PrSA==", + "dependencies": { + "camelcase-keys": "^2.0.0", + "decamelize": "^1.1.2", + "loud-rejection": "^1.0.0", + "map-obj": "^1.0.1", + "minimist": "^1.1.3", + "normalize-package-data": "^2.3.4", + "object-assign": "^4.0.1", + "read-pkg-up": "^1.0.1", + "redent": "^1.0.0", + "trim-newlines": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==" + }, + "node_modules/miller-rabin": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz", + "integrity": "sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==", + "dependencies": { + "bn.js": "^4.0.0", + "brorand": "^1.0.1" + }, + "bin": { + "miller-rabin": "bin/miller-rabin" + } + }, + "node_modules/miller-rabin/node_modules/bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" + }, + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/minimalistic-assert": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", + "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==" + }, + "node_modules/minimalistic-crypto-utils": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz", + "integrity": "sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg==" + }, + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/minipass": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz", + "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/minizlib": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", + "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", + "dependencies": { + "minipass": "^3.0.0", + "yallist": "^4.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/minizlib/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/mkdirp": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", + "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", + "dependencies": { + "minimist": "^1.2.6" + }, + "bin": { + "mkdirp": "bin/cmd.js" + } + }, + "node_modules/moment": { + "version": "2.29.4", + "resolved": "https://registry.npmjs.org/moment/-/moment-2.29.4.tgz", + "integrity": "sha512-5LC9SOxjSc2HF6vO2CyuTDNivEdoz2IvyJJGj6X8DJ0eFyfszE0QiEd+iXmBvUP3WHxSjFH/vIsA0EN00cgr8w==", + "engines": { + "node": "*" + } + }, + "node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "node_modules/nan": { + "version": "2.18.0", + "resolved": "https://registry.npmjs.org/nan/-/nan-2.18.0.tgz", + "integrity": "sha512-W7tfG7vMOGtD30sHoZSSc/JVYiyDPEyQVso/Zz+/uQd0B0L46gtC+pHha5FFMRpil6fm/AoEcRWyOVi4+E/f8w==" + }, + "node_modules/nanoclone": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/nanoclone/-/nanoclone-0.2.1.tgz", + "integrity": "sha512-wynEP02LmIbLpcYw8uBKpcfF6dmg2vcpKqxeH5UcoKEYdExslsdUA4ugFauuaeYdTB76ez6gJW8XAZ6CgkXYxA==" + }, + "node_modules/nanoid": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz", + "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/native-url": { + "version": "0.3.4", + "resolved": "https://registry.npmjs.org/native-url/-/native-url-0.3.4.tgz", + "integrity": "sha512-6iM8R99ze45ivyH8vybJ7X0yekIcPf5GgLV5K0ENCbmRcaRIDoj37BC8iLEmaaBfqqb8enuZ5p0uhY+lVAbAcA==", + "dependencies": { + "querystring": "^0.2.0" + } + }, + "node_modules/next": { + "version": "10.0.9", + "resolved": "https://registry.npmjs.org/next/-/next-10.0.9.tgz", + "integrity": "sha512-HyoVjYydcM6LaFAUOHSxVQCcKOsIimVO/IKXCuWUu1rr6DDgXbWNg/8ckH084qD46MOYlLzjViiZ3KCmNQL4Cw==", + "dependencies": { + "@babel/runtime": "7.12.5", + "@hapi/accept": "5.0.1", + "@next/env": "10.0.9", + "@next/polyfill-module": "10.0.9", + "@next/react-dev-overlay": "10.0.9", + "@next/react-refresh-utils": "10.0.9", + "@opentelemetry/api": "0.14.0", + "ast-types": "0.13.2", + "browserslist": "4.16.1", + "buffer": "5.6.0", + "caniuse-lite": "^1.0.30001179", + "chalk": "2.4.2", + "chokidar": "3.5.1", + "crypto-browserify": "3.12.0", + "cssnano-simple": "1.2.2", + "etag": "1.8.1", + "find-cache-dir": "3.3.1", + "get-orientation": "1.1.2", + "jest-worker": "24.9.0", + "native-url": "0.3.4", + "node-fetch": "2.6.1", + "node-html-parser": "1.4.9", + "node-libs-browser": "^2.2.1", + "p-limit": "3.1.0", + "path-browserify": "1.0.1", + "pnp-webpack-plugin": "1.6.4", + "postcss": "8.1.7", + "process": "0.11.10", + "prop-types": "15.7.2", + "raw-body": "2.4.1", + "react-is": "16.13.1", + "react-refresh": "0.8.3", + "stream-browserify": "3.0.0", + "styled-jsx": "3.3.2", + "use-subscription": "1.5.1", + "vm-browserify": "1.1.2", + "watchpack": "2.1.1" + }, + "bin": { + "next": "dist/bin/next" + }, + "engines": { + "node": ">=10.13.0" + }, + "peerDependencies": { + "fibers": ">= 3.1.0", + "node-sass": "^4.0.0 || ^5.0.0", + "react": "^16.6.0 || ^17", + "react-dom": "^16.6.0 || ^17", + "sass": "^1.3.0" + }, + "peerDependenciesMeta": { + "fibers": { + "optional": true + }, + "node-sass": { + "optional": true + }, + "sass": { + "optional": true + } + } + }, + "node_modules/node-fetch": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.1.tgz", + "integrity": "sha512-V4aYg89jEoVRxRb2fJdAg8FHvI7cEyYdVAh94HH0UIK8oJxUfkjlDQN9RbMx+bEjP7+ggMiFRprSti032Oipxw==", + "engines": { + "node": "4.x || >=6.0.0" + } + }, + "node_modules/node-gyp": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-7.1.2.tgz", + "integrity": "sha512-CbpcIo7C3eMu3dL1c3d0xw449fHIGALIJsRP4DDPHpyiW8vcriNY7ubh9TE4zEKfSxscY7PjeFnshE7h75ynjQ==", + "dependencies": { + "env-paths": "^2.2.0", + "glob": "^7.1.4", + "graceful-fs": "^4.2.3", + "nopt": "^5.0.0", + "npmlog": "^4.1.2", + "request": "^2.88.2", + "rimraf": "^3.0.2", + "semver": "^7.3.2", + "tar": "^6.0.2", + "which": "^2.0.2" + }, + "bin": { + "node-gyp": "bin/node-gyp.js" + }, + "engines": { + "node": ">= 10.12.0" + } + }, + "node_modules/node-gyp/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/node-html-parser": { + "version": "1.4.9", + "resolved": "https://registry.npmjs.org/node-html-parser/-/node-html-parser-1.4.9.tgz", + "integrity": "sha512-UVcirFD1Bn0O+TSmloHeHqZZCxHjvtIeGdVdGMhyZ8/PWlEiZaZ5iJzR189yKZr8p0FXN58BUeC7RHRkf/KYGw==", + "dependencies": { + "he": "1.2.0" + } + }, + "node_modules/node-libs-browser": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-2.2.1.tgz", + "integrity": "sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q==", + "dependencies": { + "assert": "^1.1.1", + "browserify-zlib": "^0.2.0", + "buffer": "^4.3.0", + "console-browserify": "^1.1.0", + "constants-browserify": "^1.0.0", + "crypto-browserify": "^3.11.0", + "domain-browser": "^1.1.1", + "events": "^3.0.0", + "https-browserify": "^1.0.0", + "os-browserify": "^0.3.0", + "path-browserify": "0.0.1", + "process": "^0.11.10", + "punycode": "^1.2.4", + "querystring-es3": "^0.2.0", + "readable-stream": "^2.3.3", + "stream-browserify": "^2.0.1", + "stream-http": "^2.7.2", + "string_decoder": "^1.0.0", + "timers-browserify": "^2.0.4", + "tty-browserify": "0.0.0", + "url": "^0.11.0", + "util": "^0.11.0", + "vm-browserify": "^1.0.1" + } + }, + "node_modules/node-libs-browser/node_modules/buffer": { + "version": "4.9.2", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-4.9.2.tgz", + "integrity": "sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==", + "dependencies": { + "base64-js": "^1.0.2", + "ieee754": "^1.1.4", + "isarray": "^1.0.0" + } + }, + "node_modules/node-libs-browser/node_modules/path-browserify": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.1.tgz", + "integrity": "sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ==" + }, + "node_modules/node-libs-browser/node_modules/readable-stream": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/node-libs-browser/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + }, + "node_modules/node-libs-browser/node_modules/stream-browserify": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.2.tgz", + "integrity": "sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg==", + "dependencies": { + "inherits": "~2.0.1", + "readable-stream": "^2.0.2" + } + }, + "node_modules/node-libs-browser/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/node-releases": { + "version": "1.1.77", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.77.tgz", + "integrity": "sha512-rB1DUFUNAN4Gn9keO2K1efO35IDK7yKHCdCaIMvFO7yUYmmZYeDjnGKle26G4rwj+LKRQpjyUUvMkPglwGCYNQ==" + }, + "node_modules/node-sass": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/node-sass/-/node-sass-5.0.0.tgz", + "integrity": "sha512-opNgmlu83ZCF792U281Ry7tak9IbVC+AKnXGovcQ8LG8wFaJv6cLnRlc6DIHlmNxWEexB5bZxi9SZ9JyUuOYjw==", + "hasInstallScript": true, + "dependencies": { + "async-foreach": "^0.1.3", + "chalk": "^1.1.1", + "cross-spawn": "^7.0.3", + "gaze": "^1.0.0", + "get-stdin": "^4.0.1", + "glob": "^7.0.3", + "lodash": "^4.17.15", + "meow": "^3.7.0", + "mkdirp": "^0.5.1", + "nan": "^2.13.2", + "node-gyp": "^7.1.0", + "npmlog": "^4.0.0", + "request": "^2.88.0", + "sass-graph": "2.2.5", + "stdout-stream": "^1.4.0", + "true-case-path": "^1.0.2" + }, + "bin": { + "node-sass": "bin/node-sass" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/node-sass/node_modules/ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/node-sass/node_modules/ansi-styles": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", + "integrity": "sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/node-sass/node_modules/chalk": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "integrity": "sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==", + "dependencies": { + "ansi-styles": "^2.2.1", + "escape-string-regexp": "^1.0.2", + "has-ansi": "^2.0.0", + "strip-ansi": "^3.0.0", + "supports-color": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/node-sass/node_modules/strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==", + "dependencies": { + "ansi-regex": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/node-sass/node_modules/supports-color": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/nopt": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/nopt/-/nopt-5.0.0.tgz", + "integrity": "sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==", + "dependencies": { + "abbrev": "1" + }, + "bin": { + "nopt": "bin/nopt.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/normalize-package-data": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", + "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", + "dependencies": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" + } + }, + "node_modules/normalize-package-data/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/npmlog": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-4.1.2.tgz", + "integrity": "sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==", + "dependencies": { + "are-we-there-yet": "~1.1.2", + "console-control-strings": "~1.1.0", + "gauge": "~2.7.3", + "set-blocking": "~2.0.0" + } + }, + "node_modules/number-is-nan": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", + "integrity": "sha512-4jbtZXNAsfZbAHiiqjLPBiCl16dES1zI4Hpzzxw61Tk+loF+sBDBKx1ICKKKwIqQ7M0mFn1TmkN7euSncWgHiQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/oauth-sign": { + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", + "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==", + "engines": { + "node": "*" + } + }, + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-inspect": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.1.tgz", + "integrity": "sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object-is": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz", + "integrity": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.assign": { + "version": "4.1.4", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz", + "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "has-symbols": "^1.0.3", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/os-browserify": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz", + "integrity": "sha512-gjcpUc3clBf9+210TRaDWbf+rZZZEshZ+DlXMRCeAjp0xhTrnQsKHypIy1J3d5hKdUzj69t708EHtU8P6bUn0A==" + }, + "node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/p-locate/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "engines": { + "node": ">=6" + } + }, + "node_modules/pako": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz", + "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==" + }, + "node_modules/parse-asn1": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.6.tgz", + "integrity": "sha512-RnZRo1EPU6JBnra2vGHj0yhp6ebyjBZpmUCLHWiFhxlzvBCCpAuZ7elsBp1PVAbQN0/04VD/19rfzlBSwLstMw==", + "dependencies": { + "asn1.js": "^5.2.0", + "browserify-aes": "^1.0.0", + "evp_bytestokey": "^1.0.0", + "pbkdf2": "^3.0.3", + "safe-buffer": "^5.1.1" + } + }, + "node_modules/parse-json": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", + "integrity": "sha512-QR/GGaKCkhwk1ePQNYDRKYZ3mwU9ypsKhB0XyFnLQdomyEqk3e8wpW3V5Jp88zbxK4n5ST1nqo+g9juTpownhQ==", + "dependencies": { + "error-ex": "^1.2.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-browserify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-1.0.1.tgz", + "integrity": "sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==" + }, + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" + }, + "node_modules/path-type": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz", + "integrity": "sha512-S4eENJz1pkiQn9Znv33Q+deTOKmbl+jj1Fl+qiP/vYezj+S8x+J3Uo0ISrx/QoEvIlOaDWJhPaRd1flJ9HXZqg==", + "dependencies": { + "graceful-fs": "^4.1.2", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pbkdf2": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.1.2.tgz", + "integrity": "sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA==", + "dependencies": { + "create-hash": "^1.1.2", + "create-hmac": "^1.1.4", + "ripemd160": "^2.0.1", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" + }, + "engines": { + "node": ">=0.12" + } + }, + "node_modules/perfect-scrollbar": { + "version": "1.5.5", + "resolved": "https://registry.npmjs.org/perfect-scrollbar/-/perfect-scrollbar-1.5.5.tgz", + "integrity": "sha512-dzalfutyP3e/FOpdlhVryN4AJ5XDVauVWxybSkLZmakFE2sS3y3pc4JnSprw8tGmHvkaG5Edr5T7LBTZ+WWU2g==" + }, + "node_modules/performance-now": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", + "integrity": "sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==" + }, + "node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pinkie": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", + "integrity": "sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pinkie-promise": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", + "integrity": "sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==", + "dependencies": { + "pinkie": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "dependencies": { + "find-up": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/platform": { + "version": "1.3.6", + "resolved": "https://registry.npmjs.org/platform/-/platform-1.3.6.tgz", + "integrity": "sha512-fnWVljUchTro6RiCFvCXBbNhJc2NijN7oIQxbwsyL0buWJPG85v81ehlHI9fXrJsMNgTofEoWIQeClKpgxFLrg==" + }, + "node_modules/pnp-webpack-plugin": { + "version": "1.6.4", + "resolved": "https://registry.npmjs.org/pnp-webpack-plugin/-/pnp-webpack-plugin-1.6.4.tgz", + "integrity": "sha512-7Wjy+9E3WwLOEL30D+m8TSTF7qJJUJLONBnwQp0518siuMxUQUbgZwssaFX+QKlZkjHZcw/IpZCt/H0srrntSg==", + "dependencies": { + "ts-pnp": "^1.1.6" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/popper.js": { + "version": "1.16.1", + "resolved": "https://registry.npmjs.org/popper.js/-/popper.js-1.16.1.tgz", + "integrity": "sha512-Wb4p1J4zyFTbM+u6WuO4XstYx4Ky9Cewe4DWrel7B0w6VVICvPwdOpotjzcf6eD8TsckVnIMNONQyPIUFOUbCQ==", + "deprecated": "You can find the new Popper v2 at @popperjs/core, this package is dedicated to the legacy v1", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/popperjs" + } + }, + "node_modules/postcss": { + "version": "8.1.7", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.1.7.tgz", + "integrity": "sha512-llCQW1Pz4MOPwbZLmOddGM9eIJ8Bh7SZ2Oj5sxZva77uVaotYDsYTch1WBTNu7fUY0fpWp0fdt7uW40D4sRiiQ==", + "dependencies": { + "colorette": "^1.2.1", + "line-column": "^1.0.2", + "nanoid": "^3.1.16", + "source-map": "^0.6.1" + }, + "engines": { + "node": "^10 || ^12 || >=14" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/process": { + "version": "0.11.10", + "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", + "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==", + "engines": { + "node": ">= 0.6.0" + } + }, + "node_modules/process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" + }, + "node_modules/prop-types": { + "version": "15.7.2", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.7.2.tgz", + "integrity": "sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ==", + "dependencies": { + "loose-envify": "^1.4.0", + "object-assign": "^4.1.1", + "react-is": "^16.8.1" + } + }, + "node_modules/prop-types-extra": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/prop-types-extra/-/prop-types-extra-1.1.1.tgz", + "integrity": "sha512-59+AHNnHYCdiC+vMwY52WmvP5dM3QLeoumYuEyceQDi9aEhtwN9zIQ2ZNo25sMyXnbh32h+P1ezDsUpUH3JAew==", + "dependencies": { + "react-is": "^16.3.2", + "warning": "^4.0.0" + }, + "peerDependencies": { + "react": ">=0.14.0" + } + }, + "node_modules/property-expr": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/property-expr/-/property-expr-2.0.6.tgz", + "integrity": "sha512-SVtmxhRE/CGkn3eZY1T6pC8Nln6Fr/lu1mKSgRud0eC73whjGfoAogbn78LkD8aFL0zz3bAFerKSnOl7NlErBA==" + }, + "node_modules/psl": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz", + "integrity": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==" + }, + "node_modules/public-encrypt": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.3.tgz", + "integrity": "sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==", + "dependencies": { + "bn.js": "^4.1.0", + "browserify-rsa": "^4.0.0", + "create-hash": "^1.1.0", + "parse-asn1": "^5.0.0", + "randombytes": "^2.0.1", + "safe-buffer": "^5.1.2" + } + }, + "node_modules/public-encrypt/node_modules/bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" + }, + "node_modules/punycode": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", + "integrity": "sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==" + }, + "node_modules/qs": { + "version": "6.5.3", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.3.tgz", + "integrity": "sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==", + "engines": { + "node": ">=0.6" + } + }, + "node_modules/querystring": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.1.tgz", + "integrity": "sha512-wkvS7mL/JMugcup3/rMitHmd9ecIGd2lhFhK9N3UUQ450h66d1r3Y9nvXzQAW1Lq+wyx61k/1pfKS5KuKiyEbg==", + "deprecated": "The querystring API is considered Legacy. new code should use the URLSearchParams API instead.", + "engines": { + "node": ">=0.4.x" + } + }, + "node_modules/querystring-es3": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz", + "integrity": "sha512-773xhDQnZBMFobEiztv8LIl70ch5MSF/jUQVlhwFyBILqq96anmoctVIYz+ZRp0qbCKATTn6ev02M3r7Ga5vqA==", + "engines": { + "node": ">=0.4.x" + } + }, + "node_modules/randombytes": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", + "dependencies": { + "safe-buffer": "^5.1.0" + } + }, + "node_modules/randomfill": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz", + "integrity": "sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==", + "dependencies": { + "randombytes": "^2.0.5", + "safe-buffer": "^5.1.0" + } + }, + "node_modules/raw-body": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.4.1.tgz", + "integrity": "sha512-9WmIKF6mkvA0SLmA2Knm9+qj89e+j1zqgyn8aXGd7+nAduPoqgI9lO57SAZNn/Byzo5P7JhXTyg9PzaJbH73bA==", + "dependencies": { + "bytes": "3.1.0", + "http-errors": "1.7.3", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/react": { + "version": "17.0.2", + "resolved": "https://registry.npmjs.org/react/-/react-17.0.2.tgz", + "integrity": "sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA==", + "dependencies": { + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-bootstrap": { + "version": "2.9.1", + "resolved": "https://registry.npmjs.org/react-bootstrap/-/react-bootstrap-2.9.1.tgz", + "integrity": "sha512-ezgmh/ARCYp18LbZEqPp0ppvy+ytCmycDORqc8vXSKYV3cer4VH7OReV8uMOoKXmYzivJTxgzGHalGrHamryHA==", + "dependencies": { + "@babel/runtime": "^7.22.5", + "@restart/hooks": "^0.4.9", + "@restart/ui": "^1.6.6", + "@types/react-transition-group": "^4.4.6", + "classnames": "^2.3.2", + "dom-helpers": "^5.2.1", + "invariant": "^2.2.4", + "prop-types": "^15.8.1", + "prop-types-extra": "^1.1.0", + "react-transition-group": "^4.4.5", + "uncontrollable": "^7.2.1", + "warning": "^4.0.3" + }, + "peerDependencies": { + "@types/react": ">=16.14.8", + "react": ">=16.14.0", + "react-dom": ">=16.14.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/react-bootstrap/node_modules/@babel/runtime": { + "version": "7.23.2", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.2.tgz", + "integrity": "sha512-mM8eg4yl5D6i3lu2QKPuPH4FArvJ8KhTofbE7jwMUv9KX5mBvwPAqnV3MlyBNqdp9RyRKP6Yck8TrfYrPvX3bg==", + "dependencies": { + "regenerator-runtime": "^0.14.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/react-bootstrap/node_modules/classnames": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/classnames/-/classnames-2.3.2.tgz", + "integrity": "sha512-CSbhY4cFEJRe6/GQzIk5qXZ4Jeg5pcsP7b5peFSDpffpe1cqjASH/n9UTjBwOp6XpMSTwQ8Za2K5V02ueA7Tmw==" + }, + "node_modules/react-bootstrap/node_modules/dom-helpers": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-5.2.1.tgz", + "integrity": "sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==", + "dependencies": { + "@babel/runtime": "^7.8.7", + "csstype": "^3.0.2" + } + }, + "node_modules/react-bootstrap/node_modules/prop-types": { + "version": "15.8.1", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", + "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", + "dependencies": { + "loose-envify": "^1.4.0", + "object-assign": "^4.1.1", + "react-is": "^16.13.1" + } + }, + "node_modules/react-bootstrap/node_modules/react-transition-group": { + "version": "4.4.5", + "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-4.4.5.tgz", + "integrity": "sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==", + "dependencies": { + "@babel/runtime": "^7.5.5", + "dom-helpers": "^5.0.1", + "loose-envify": "^1.4.0", + "prop-types": "^15.6.2" + }, + "peerDependencies": { + "react": ">=16.6.0", + "react-dom": ">=16.6.0" + } + }, + "node_modules/react-bootstrap/node_modules/regenerator-runtime": { + "version": "0.14.0", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.0.tgz", + "integrity": "sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==" + }, + "node_modules/react-chartjs-2": { + "version": "2.11.2", + "resolved": "https://registry.npmjs.org/react-chartjs-2/-/react-chartjs-2-2.11.2.tgz", + "integrity": "sha512-hcPS9vmRJeAALPPf0uo02BiD8BDm0HNmneJYTZVR74UKprXOpql+Jy1rVuj93rKw0Jfx77mkcRfXPxTe5K83uw==", + "dependencies": { + "lodash": "^4.17.19", + "prop-types": "^15.7.2" + }, + "peerDependencies": { + "chart.js": "^2.3", + "react": "^0.14.0 || ^15.0.0 || ^16.0.0 || ^17.0.0", + "react-dom": "^0.14.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" + } + }, + "node_modules/react-dom": { + "version": "17.0.2", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-17.0.2.tgz", + "integrity": "sha512-s4h96KtLDUQlsENhMn1ar8t2bEa+q/YAtj8pPPdIjPDGBDIVNsrD9aXNWqspUe6AzKCIG0C1HZZLqLV7qpOBGA==", + "dependencies": { + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1", + "scheduler": "^0.20.2" + }, + "peerDependencies": { + "react": "17.0.2" + } + }, + "node_modules/react-fast-compare": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/react-fast-compare/-/react-fast-compare-2.0.4.tgz", + "integrity": "sha512-suNP+J1VU1MWFKcyt7RtjiSWUjvidmQSlqu+eHslq+342xCbGTYmC0mEhPCOHxlW0CywylOC1u2DFAT+bv4dBw==" + }, + "node_modules/react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" + }, + "node_modules/react-lifecycles-compat": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz", + "integrity": "sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==" + }, + "node_modules/react-perfect-scrollbar": { + "version": "1.5.8", + "resolved": "https://registry.npmjs.org/react-perfect-scrollbar/-/react-perfect-scrollbar-1.5.8.tgz", + "integrity": "sha512-bQ46m70gp/HJtiBOF3gRzBISSZn8FFGNxznTdmTG8AAwpxG1bJCyn7shrgjEvGSQ5FJEafVEiosY+ccER11OSA==", + "dependencies": { + "perfect-scrollbar": "^1.5.0", + "prop-types": "^15.6.1" + }, + "peerDependencies": { + "react": ">=16.3.3", + "react-dom": ">=16.3.3" + } + }, + "node_modules/react-popper": { + "version": "1.3.11", + "resolved": "https://registry.npmjs.org/react-popper/-/react-popper-1.3.11.tgz", + "integrity": "sha512-VSA/bS+pSndSF2fiasHK/PTEEAyOpX60+H5EPAjoArr8JGm+oihu4UbrqcEBpQibJxBVCpYyjAX7abJ+7DoYVg==", + "dependencies": { + "@babel/runtime": "^7.1.2", + "@hypnosphi/create-react-context": "^0.3.1", + "deep-equal": "^1.1.1", + "popper.js": "^1.14.4", + "prop-types": "^15.6.1", + "typed-styles": "^0.0.7", + "warning": "^4.0.2" + }, + "peerDependencies": { + "react": "0.14.x || ^15.0.0 || ^16.0.0 || ^17.0.0" + } + }, + "node_modules/react-redux": { + "version": "7.2.9", + "resolved": "https://registry.npmjs.org/react-redux/-/react-redux-7.2.9.tgz", + "integrity": "sha512-Gx4L3uM182jEEayZfRbI/G11ZpYdNAnBs70lFVMNdHJI76XYtR+7m0MN+eAs7UHBPhWXcnFPaS+9owSCJQHNpQ==", + "dependencies": { + "@babel/runtime": "^7.15.4", + "@types/react-redux": "^7.1.20", + "hoist-non-react-statics": "^3.3.2", + "loose-envify": "^1.4.0", + "prop-types": "^15.7.2", + "react-is": "^17.0.2" + }, + "peerDependencies": { + "react": "^16.8.3 || ^17 || ^18" + }, + "peerDependenciesMeta": { + "react-dom": { + "optional": true + }, + "react-native": { + "optional": true + } + } + }, + "node_modules/react-redux/node_modules/@babel/runtime": { + "version": "7.23.2", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.2.tgz", + "integrity": "sha512-mM8eg4yl5D6i3lu2QKPuPH4FArvJ8KhTofbE7jwMUv9KX5mBvwPAqnV3MlyBNqdp9RyRKP6Yck8TrfYrPvX3bg==", + "dependencies": { + "regenerator-runtime": "^0.14.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/react-redux/node_modules/react-is": { + "version": "17.0.2", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", + "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==" + }, + "node_modules/react-redux/node_modules/regenerator-runtime": { + "version": "0.14.0", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.0.tgz", + "integrity": "sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==" + }, + "node_modules/react-refresh": { + "version": "0.8.3", + "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.8.3.tgz", + "integrity": "sha512-X8jZHc7nCMjaCqoU+V2I0cOhNW+QMBwSUkeXnTi8IPe6zaRWfn60ZzvFDZqWPfmSJfjub7dDW1SP0jaHWLu/hg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-transition-group": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-3.0.0.tgz", + "integrity": "sha512-A9ojB/LWECbFj58SNfjK1X9aaAU+1olLS0DFSikvrr2KfMaiBELemHDa5dKNvcTk2t3gUtDL/PJpFrBKDfMpLg==", + "dependencies": { + "dom-helpers": "^3.4.0", + "loose-envify": "^1.4.0", + "prop-types": "^15.6.2", + "react-lifecycles-compat": "^3.0.4" + }, + "peerDependencies": { + "react": ">=16.6.0", + "react-dom": ">=16.6.0" + } + }, + "node_modules/reactstrap": { + "version": "8.10.1", + "resolved": "https://registry.npmjs.org/reactstrap/-/reactstrap-8.10.1.tgz", + "integrity": "sha512-StjLADa/12yMNjafrSs+UD7sZAGtKpLO9fZp++2Dj0IzJinqY7eQhXlM3nFf0q40YsIcLvQdFc9pKF8PF4f0Qg==", + "dependencies": { + "@babel/runtime": "^7.12.5", + "classnames": "^2.2.3", + "prop-types": "^15.5.8", + "react-popper": "^1.3.6", + "react-transition-group": "^3.0.0" + }, + "peerDependencies": { + "react": ">=16.3.0", + "react-dom": ">=16.3.0" + } + }, + "node_modules/read-pkg": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz", + "integrity": "sha512-7BGwRHqt4s/uVbuyoeejRn4YmFnYZiFl4AuaeXHlgZf3sONF0SOGlxs2Pw8g6hCKupo08RafIO5YXFNOKTfwsQ==", + "dependencies": { + "load-json-file": "^1.0.0", + "normalize-package-data": "^2.3.2", + "path-type": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/read-pkg-up": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz", + "integrity": "sha512-WD9MTlNtI55IwYUS27iHh9tK3YoIVhxis8yKhLpTqWtml739uXc9NWTpxoHkfZf3+DkCCsXox94/VWZniuZm6A==", + "dependencies": { + "find-up": "^1.0.0", + "read-pkg": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/read-pkg-up/node_modules/find-up": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", + "integrity": "sha512-jvElSjyuo4EMQGoTwo1uJU5pQMwTW5lS1x05zzfJuTIyLR3zwO27LYrxNg+dlvKpGOuGy/MzBdXh80g0ve5+HA==", + "dependencies": { + "path-exists": "^2.0.0", + "pinkie-promise": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/read-pkg-up/node_modules/path-exists": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", + "integrity": "sha512-yTltuKuhtNeFJKa1PiRzfLAU5182q1y4Eb4XCJ3PBqyzEDkAZRzBrKKBct682ls9reBVHf9udYLN5Nd+K1B9BQ==", + "dependencies": { + "pinkie-promise": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/readdirp": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.5.0.tgz", + "integrity": "sha512-cMhu7c/8rdhkHXWsY+osBhfSy0JikwpHK/5+imo+LpeasTF8ouErHrlYkwT0++njiyuDvc7OFY5T3ukvZ8qmFQ==", + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/redent": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/redent/-/redent-1.0.0.tgz", + "integrity": "sha512-qtW5hKzGQZqKoh6JNSD+4lfitfPKGz42e6QwiRmPM5mmKtR0N41AbJRYu0xJi7nhOJ4WDgRkKvAk6tw4WIwR4g==", + "dependencies": { + "indent-string": "^2.1.0", + "strip-indent": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/redux": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/redux/-/redux-4.2.1.tgz", + "integrity": "sha512-LAUYz4lc+Do8/g7aeRa8JkyDErK6ekstQaqWQrNRW//MY1TvCEpMtpTWvlQ+FPbWCx+Xixu/6SHt5N0HR+SB4w==", + "dependencies": { + "@babel/runtime": "^7.9.2" + } + }, + "node_modules/redux-thunk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/redux-thunk/-/redux-thunk-2.4.2.tgz", + "integrity": "sha512-+P3TjtnP0k/FEjcBL5FZpoovtvrTNT/UXd4/sluaSyrURlSlhLSzEdfsTBW7WsKB6yPvgd7q/iZPICFjW4o57Q==", + "peerDependencies": { + "redux": "^4" + } + }, + "node_modules/regenerator-runtime": { + "version": "0.13.11", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", + "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==" + }, + "node_modules/regexp.prototype.flags": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.1.tgz", + "integrity": "sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "set-function-name": "^2.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/repeating": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/repeating/-/repeating-2.0.1.tgz", + "integrity": "sha512-ZqtSMuVybkISo2OWvqvm7iHSWngvdaW3IpsT9/uP8v4gMi591LY6h35wdOfvQdWCKFWZWm2Y1Opp4kV7vQKT6A==", + "dependencies": { + "is-finite": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/request": { + "version": "2.88.2", + "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz", + "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==", + "deprecated": "request has been deprecated, see https://github.com/request/request/issues/3142", + "dependencies": { + "aws-sign2": "~0.7.0", + "aws4": "^1.8.0", + "caseless": "~0.12.0", + "combined-stream": "~1.0.6", + "extend": "~3.0.2", + "forever-agent": "~0.6.1", + "form-data": "~2.3.2", + "har-validator": "~5.1.3", + "http-signature": "~1.2.0", + "is-typedarray": "~1.0.0", + "isstream": "~0.1.2", + "json-stringify-safe": "~5.0.1", + "mime-types": "~2.1.19", + "oauth-sign": "~0.9.0", + "performance-now": "^2.1.0", + "qs": "~6.5.2", + "safe-buffer": "^5.1.2", + "tough-cookie": "~2.5.0", + "tunnel-agent": "^0.6.0", + "uuid": "^3.3.2" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/require-main-filename": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", + "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==" + }, + "node_modules/resolve": { + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/ripemd160": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz", + "integrity": "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==", + "dependencies": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1" + } + }, + "node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" + }, + "node_modules/sass": { + "version": "1.69.5", + "resolved": "https://registry.npmjs.org/sass/-/sass-1.69.5.tgz", + "integrity": "sha512-qg2+UCJibLr2LCVOt3OlPhr/dqVHWOa9XtZf2OjbLs/T4VPSJ00udtgJxH3neXZm+QqX8B+3cU7RaLqp1iVfcQ==", + "devOptional": true, + "dependencies": { + "chokidar": ">=3.0.0 <4.0.0", + "immutable": "^4.0.0", + "source-map-js": ">=0.6.2 <2.0.0" + }, + "bin": { + "sass": "sass.js" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/sass-graph": { + "version": "2.2.5", + "resolved": "https://registry.npmjs.org/sass-graph/-/sass-graph-2.2.5.tgz", + "integrity": "sha512-VFWDAHOe6mRuT4mZRd4eKE+d8Uedrk6Xnh7Sh9b4NGufQLQjOrvf/MQoOdx+0s92L89FeyUUNfU597j/3uNpag==", + "dependencies": { + "glob": "^7.0.0", + "lodash": "^4.0.0", + "scss-tokenizer": "^0.2.3", + "yargs": "^13.3.2" + }, + "bin": { + "sassgraph": "bin/sassgraph" + } + }, + "node_modules/scheduler": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.20.2.tgz", + "integrity": "sha512-2eWfGgAqqWFGqtdMmcL5zCMK1U8KlXv8SQFGglL3CEtd0aDVDWgeF/YoCmvln55m5zSk3J/20hTaSBeSObsQDQ==", + "dependencies": { + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1" + } + }, + "node_modules/scss-tokenizer": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/scss-tokenizer/-/scss-tokenizer-0.2.3.tgz", + "integrity": "sha512-dYE8LhncfBUar6POCxMTm0Ln+erjeczqEvCJib5/7XNkdw1FkUGgwMPY360FY0FgPWQxHWCx29Jl3oejyGLM9Q==", + "dependencies": { + "js-base64": "^2.1.8", + "source-map": "^0.4.2" + } + }, + "node_modules/scss-tokenizer/node_modules/source-map": { + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.4.4.tgz", + "integrity": "sha512-Y8nIfcb1s/7DcobUz1yOO1GSp7gyL+D9zLHDehT7iRESqGSxjJ448Sg7rvfgsRJCnKLdSl11uGf0s9X80cH0/A==", + "dependencies": { + "amdefine": ">=0.0.4" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/set-blocking": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", + "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==" + }, + "node_modules/set-function-length": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.1.1.tgz", + "integrity": "sha512-VoaqjbBJKiWtg4yRcKBQ7g7wnGnLV3M8oLvVWwOk2PdYY6PEFegR1vezXR0tw6fZGF9csVakIRjrJiy2veSBFQ==", + "dependencies": { + "define-data-property": "^1.1.1", + "get-intrinsic": "^1.2.1", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/set-function-name": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.1.tgz", + "integrity": "sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==", + "dependencies": { + "define-data-property": "^1.0.1", + "functions-have-names": "^1.2.3", + "has-property-descriptors": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/setimmediate": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", + "integrity": "sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==" + }, + "node_modules/setprototypeof": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz", + "integrity": "sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==" + }, + "node_modules/sha.js": { + "version": "2.4.11", + "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz", + "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==", + "dependencies": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + }, + "bin": { + "sha.js": "bin.js" + } + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "engines": { + "node": ">=8" + } + }, + "node_modules/shell-quote": { + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.7.2.tgz", + "integrity": "sha512-mRz/m/JVscCrkMyPqHc/bczi3OQHkLTqXHEFu0zDhK/qfv3UcOA4SVmRCLmos4bhjr9ekVQubj/R7waKapmiQg==" + }, + "node_modules/side-channel": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", + "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "dependencies": { + "call-bind": "^1.0.0", + "get-intrinsic": "^1.0.2", + "object-inspect": "^1.9.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" + }, + "node_modules/source-map": { + "version": "0.8.0-beta.0", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.8.0-beta.0.tgz", + "integrity": "sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA==", + "dependencies": { + "whatwg-url": "^7.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/source-map-js": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", + "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", + "devOptional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/spdx-correct": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz", + "integrity": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==", + "dependencies": { + "spdx-expression-parse": "^3.0.0", + "spdx-license-ids": "^3.0.0" + } + }, + "node_modules/spdx-exceptions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", + "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==" + }, + "node_modules/spdx-expression-parse": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", + "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", + "dependencies": { + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" + } + }, + "node_modules/spdx-license-ids": { + "version": "3.0.16", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.16.tgz", + "integrity": "sha512-eWN+LnM3GR6gPu35WxNgbGl8rmY1AEmoMDvL/QD6zYmPWgywxWqJWNdLGT+ke8dKNWrcYgYjPpG5gbTfghP8rw==" + }, + "node_modules/sshpk": { + "version": "1.18.0", + "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.18.0.tgz", + "integrity": "sha512-2p2KJZTSqQ/I3+HX42EpYOa2l3f8Erv8MWKsy2I9uf4wA7yFIkXRffYdsx86y6z4vHtV8u7g+pPlr8/4ouAxsQ==", + "dependencies": { + "asn1": "~0.2.3", + "assert-plus": "^1.0.0", + "bcrypt-pbkdf": "^1.0.0", + "dashdash": "^1.12.0", + "ecc-jsbn": "~0.1.1", + "getpass": "^0.1.1", + "jsbn": "~0.1.0", + "safer-buffer": "^2.0.2", + "tweetnacl": "~0.14.0" + }, + "bin": { + "sshpk-conv": "bin/sshpk-conv", + "sshpk-sign": "bin/sshpk-sign", + "sshpk-verify": "bin/sshpk-verify" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/stacktrace-parser": { + "version": "0.1.10", + "resolved": "https://registry.npmjs.org/stacktrace-parser/-/stacktrace-parser-0.1.10.tgz", + "integrity": "sha512-KJP1OCML99+8fhOHxwwzyWrlUuVX5GQ0ZpJTd1DFXhdkrvg1szxfHhawXUZ3g9TkXORQd4/WG68jMlQZ2p8wlg==", + "dependencies": { + "type-fest": "^0.7.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/statuses": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", + "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/stdout-stream": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/stdout-stream/-/stdout-stream-1.4.1.tgz", + "integrity": "sha512-j4emi03KXqJWcIeF8eIXkjMFN1Cmb8gUlDYGeBALLPo5qdyTfA9bOtl8m33lRoC+vFMkP3gl0WsDr6+gzxbbTA==", + "dependencies": { + "readable-stream": "^2.0.1" + } + }, + "node_modules/stdout-stream/node_modules/readable-stream": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/stdout-stream/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + }, + "node_modules/stdout-stream/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/stream-browserify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/stream-browserify/-/stream-browserify-3.0.0.tgz", + "integrity": "sha512-H73RAHsVBapbim0tU2JwwOiXUj+fikfiaoYAKHF3VJfA0pe2BCzkhAHBlLG6REzE+2WNZcxOXjK7lkso+9euLA==", + "dependencies": { + "inherits": "~2.0.4", + "readable-stream": "^3.5.0" + } + }, + "node_modules/stream-http": { + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/stream-http/-/stream-http-2.8.3.tgz", + "integrity": "sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==", + "dependencies": { + "builtin-status-codes": "^3.0.0", + "inherits": "^2.0.1", + "readable-stream": "^2.3.6", + "to-arraybuffer": "^1.0.0", + "xtend": "^4.0.0" + } + }, + "node_modules/stream-http/node_modules/readable-stream": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/stream-http/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + }, + "node_modules/stream-http/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/stream-parser": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/stream-parser/-/stream-parser-0.3.1.tgz", + "integrity": "sha512-bJ/HgKq41nlKvlhccD5kaCr/P+Hu0wPNKPJOH7en+YrJu/9EgqUF+88w5Jb6KNcjOFMhfX4B2asfeAtIGuHObQ==", + "dependencies": { + "debug": "2" + } + }, + "node_modules/string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "dependencies": { + "safe-buffer": "~5.2.0" + } + }, + "node_modules/string-hash": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/string-hash/-/string-hash-1.1.3.tgz", + "integrity": "sha512-kJUvRUFK49aub+a7T1nNE66EJbZBMnBgoC1UbCZ5n6bsZKBRga4KgBRTMn/pFkeCZSYtNeSyMxPDM0AXWELk2A==" + }, + "node_modules/string-width": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", + "integrity": "sha512-0XsVpQLnVCXHJfyEs8tC0zpTVIr5PKKsQtkT29IwupnPTjtPmQ3xT/4yCREF9hYkV/3M3kzcUTSAZT6a6h81tw==", + "dependencies": { + "code-point-at": "^1.0.0", + "is-fullwidth-code-point": "^1.0.0", + "strip-ansi": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/string-width/node_modules/ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/string-width/node_modules/strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==", + "dependencies": { + "ansi-regex": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/strip-ansi": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz", + "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==", + "dependencies": { + "ansi-regex": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-bom": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz", + "integrity": "sha512-kwrX1y7czp1E69n2ajbG65mIo9dqvJ+8aBQXOGVxqwvNbsXdFM6Lq37dLAY3mknUwru8CfcCbfOLL/gMo+fi3g==", + "dependencies": { + "is-utf8": "^0.2.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/strip-indent": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-1.0.1.tgz", + "integrity": "sha512-I5iQq6aFMM62fBEAIB/hXzwJD6EEZ0xEGCX2t7oXqaKPIRgt4WruAQ285BISgdkP+HLGWyeGmNJcpIwFeRYRUA==", + "dependencies": { + "get-stdin": "^4.0.1" + }, + "bin": { + "strip-indent": "cli.js" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/styled-jsx": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/styled-jsx/-/styled-jsx-3.3.2.tgz", + "integrity": "sha512-daAkGd5mqhbBhLd6jYAjYBa9LpxYCzsgo/f6qzPdFxVB8yoGbhxvzQgkC0pfmCVvW3JuAEBn0UzFLBfkHVZG1g==", + "dependencies": { + "@babel/types": "7.8.3", + "babel-plugin-syntax-jsx": "6.18.0", + "convert-source-map": "1.7.0", + "loader-utils": "1.2.3", + "source-map": "0.7.3", + "string-hash": "1.1.3", + "stylis": "3.5.4", + "stylis-rule-sheet": "0.0.10" + }, + "peerDependencies": { + "react": "15.x.x || 16.x.x || 17.x.x" + } + }, + "node_modules/styled-jsx/node_modules/source-map": { + "version": "0.7.3", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", + "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==", + "engines": { + "node": ">= 8" + } + }, + "node_modules/stylis": { + "version": "3.5.4", + "resolved": "https://registry.npmjs.org/stylis/-/stylis-3.5.4.tgz", + "integrity": "sha512-8/3pSmthWM7lsPBKv7NXkzn2Uc9W7NotcwGNpJaa3k7WMM1XDCA4MgT5k/8BIexd5ydZdboXtU90XH9Ec4Bv/Q==" + }, + "node_modules/stylis-rule-sheet": { + "version": "0.0.10", + "resolved": "https://registry.npmjs.org/stylis-rule-sheet/-/stylis-rule-sheet-0.0.10.tgz", + "integrity": "sha512-nTbZoaqoBnmK+ptANthb10ZRZOGC+EmTLLUxeYIuHNkEKcmKgXX1XWKkUBT2Ac4es3NybooPe0SmvKdhKJZAuw==", + "peerDependencies": { + "stylis": "^3.5.0" + } + }, + "node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/tar": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/tar/-/tar-6.2.0.tgz", + "integrity": "sha512-/Wo7DcT0u5HUV486xg675HtjNd3BXZ6xDbzsCUZPt5iw8bTQ63bP0Raut3mvro9u+CUyq7YQd8Cx55fsZXxqLQ==", + "dependencies": { + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "minipass": "^5.0.0", + "minizlib": "^2.1.1", + "mkdirp": "^1.0.3", + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/tar/node_modules/mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "bin": { + "mkdirp": "bin/cmd.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/timers-browserify": { + "version": "2.0.12", + "resolved": "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.12.tgz", + "integrity": "sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ==", + "dependencies": { + "setimmediate": "^1.0.4" + }, + "engines": { + "node": ">=0.6.0" + } + }, + "node_modules/tiny-warning": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/tiny-warning/-/tiny-warning-1.0.3.tgz", + "integrity": "sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==" + }, + "node_modules/to-arraybuffer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz", + "integrity": "sha512-okFlQcoGTi4LQBG/PgSYblw9VOyptsz2KJZqc6qtgGdes8VktzUQkj4BI2blit072iS8VODNcMA+tvnS9dnuMA==" + }, + "node_modules/to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", + "engines": { + "node": ">=4" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/toidentifier": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz", + "integrity": "sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==", + "engines": { + "node": ">=0.6" + } + }, + "node_modules/toposort": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/toposort/-/toposort-2.0.2.tgz", + "integrity": "sha512-0a5EOkAUp8D4moMi2W8ZF8jcga7BgZd91O/yabJCFY8az+XSzeGyTKs0Aoo897iV1Nj6guFq8orWDS96z91oGg==" + }, + "node_modules/tough-cookie": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", + "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", + "dependencies": { + "psl": "^1.1.28", + "punycode": "^2.1.1" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/tough-cookie/node_modules/punycode": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", + "engines": { + "node": ">=6" + } + }, + "node_modules/tr46": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-1.0.1.tgz", + "integrity": "sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==", + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/tr46/node_modules/punycode": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", + "engines": { + "node": ">=6" + } + }, + "node_modules/trim-newlines": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-1.0.0.tgz", + "integrity": "sha512-Nm4cF79FhSTzrLKGDMi3I4utBtFv8qKy4sq1enftf2gMdpqI8oVQTAfySkTz5r49giVzDj88SVZXP4CeYQwjaw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/true-case-path": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/true-case-path/-/true-case-path-1.0.3.tgz", + "integrity": "sha512-m6s2OdQe5wgpFMC+pAJ+q9djG82O2jcHPOI6RNg1yy9rCYR+WD6Nbpl32fDpfC56nirdRy+opFa/Vk7HYhqaew==", + "dependencies": { + "glob": "^7.1.2" + } + }, + "node_modules/ts-pnp": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/ts-pnp/-/ts-pnp-1.2.0.tgz", + "integrity": "sha512-csd+vJOb/gkzvcCHgTGSChYpy5f1/XKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q/ccdhQw==", + "engines": { + "node": ">=6" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + }, + "node_modules/tty-browserify": { + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.0.tgz", + "integrity": "sha512-JVa5ijo+j/sOoHGjw0sxw734b1LhBkQ3bvUGNdxnVXDCX81Yx7TFgnZygxrIIWn23hbfTaMYLwRmAxFyDuFmIw==" + }, + "node_modules/tunnel-agent": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", + "integrity": "sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==", + "dependencies": { + "safe-buffer": "^5.0.1" + }, + "engines": { + "node": "*" + } + }, + "node_modules/tweetnacl": { + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", + "integrity": "sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==" + }, + "node_modules/type-fest": { + "version": "0.7.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.7.1.tgz", + "integrity": "sha512-Ne2YiiGN8bmrmJJEuTWTLJR32nh/JdL1+PSicowtNb0WFpn59GK8/lfD61bVtzguz7b3PBt74nxpv/Pw5po5Rg==", + "engines": { + "node": ">=8" + } + }, + "node_modules/typed-styles": { + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/typed-styles/-/typed-styles-0.0.7.tgz", + "integrity": "sha512-pzP0PWoZUhsECYjABgCGQlRGL1n7tOHsgwYv3oIiEpJwGhFTuty/YNeduxQYzXXa3Ge5BdT6sHYIQYpl4uJ+5Q==" + }, + "node_modules/uncontrollable": { + "version": "7.2.1", + "resolved": "https://registry.npmjs.org/uncontrollable/-/uncontrollable-7.2.1.tgz", + "integrity": "sha512-svtcfoTADIB0nT9nltgjujTi7BzVmwjZClOmskKu/E8FW9BXzg9os8OLr4f8Dlnk0rYWJIWr4wv9eKUXiQvQwQ==", + "dependencies": { + "@babel/runtime": "^7.6.3", + "@types/react": ">=16.9.11", + "invariant": "^2.2.4", + "react-lifecycles-compat": "^3.0.4" + }, + "peerDependencies": { + "react": ">=15.0.0" + } + }, + "node_modules/unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/uri-js/node_modules/punycode": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", + "engines": { + "node": ">=6" + } + }, + "node_modules/url": { + "version": "0.11.3", + "resolved": "https://registry.npmjs.org/url/-/url-0.11.3.tgz", + "integrity": "sha512-6hxOLGfZASQK/cijlZnZJTq8OXAkt/3YGfQX45vvMYXpZoo8NdWZcY73K108Jf759lS1Bv/8wXnHDTSz17dSRw==", + "dependencies": { + "punycode": "^1.4.1", + "qs": "^6.11.2" + } + }, + "node_modules/url/node_modules/qs": { + "version": "6.11.2", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.2.tgz", + "integrity": "sha512-tDNIz22aBzCDxLtVH++VnTfzxlfeK5CbqohpSqpJgj1Wg/cQbStNAz3NuqCs5vV+pjBsK4x4pN9HlVh7rcYRiA==", + "dependencies": { + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/use-subscription": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/use-subscription/-/use-subscription-1.5.1.tgz", + "integrity": "sha512-Xv2a1P/yReAjAbhylMfFplFKj9GssgTwN7RlcTxBujFQcloStWNDQdc4g4NRWH9xS4i/FDk04vQBptAXoF3VcA==", + "dependencies": { + "object-assign": "^4.1.1" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0" + } + }, + "node_modules/util": { + "version": "0.11.1", + "resolved": "https://registry.npmjs.org/util/-/util-0.11.1.tgz", + "integrity": "sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ==", + "dependencies": { + "inherits": "2.0.3" + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" + }, + "node_modules/util/node_modules/inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==" + }, + "node_modules/uuid": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", + "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", + "deprecated": "Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details.", + "bin": { + "uuid": "bin/uuid" + } + }, + "node_modules/validate-npm-package-license": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", + "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", + "dependencies": { + "spdx-correct": "^3.0.0", + "spdx-expression-parse": "^3.0.0" + } + }, + "node_modules/verror": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", + "integrity": "sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==", + "engines": [ + "node >=0.6.0" + ], + "dependencies": { + "assert-plus": "^1.0.0", + "core-util-is": "1.0.2", + "extsprintf": "^1.2.0" + } + }, + "node_modules/vm-browserify": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vm-browserify/-/vm-browserify-1.1.2.tgz", + "integrity": "sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==" + }, + "node_modules/warning": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/warning/-/warning-4.0.3.tgz", + "integrity": "sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==", + "dependencies": { + "loose-envify": "^1.0.0" + } + }, + "node_modules/watchpack": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.1.1.tgz", + "integrity": "sha512-Oo7LXCmc1eE1AjyuSBmtC3+Wy4HcV8PxWh2kP6fOl8yTlNS7r0K9l1ao2lrrUza7V39Y3D/BbJgY8VeSlc5JKw==", + "dependencies": { + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.1.2" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/webidl-conversions": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.2.tgz", + "integrity": "sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==" + }, + "node_modules/whatwg-url": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-7.1.0.tgz", + "integrity": "sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==", + "dependencies": { + "lodash.sortby": "^4.7.0", + "tr46": "^1.0.1", + "webidl-conversions": "^4.0.2" + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/which-module": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.1.tgz", + "integrity": "sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==" + }, + "node_modules/wide-align": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz", + "integrity": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==", + "dependencies": { + "string-width": "^1.0.2 || 2 || 3 || 4" + } + }, + "node_modules/wrap-ansi": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz", + "integrity": "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==", + "dependencies": { + "ansi-styles": "^3.2.0", + "string-width": "^3.0.0", + "strip-ansi": "^5.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/wrap-ansi/node_modules/ansi-regex": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", + "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", + "engines": { + "node": ">=6" + } + }, + "node_modules/wrap-ansi/node_modules/is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==", + "engines": { + "node": ">=4" + } + }, + "node_modules/wrap-ansi/node_modules/string-width": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "dependencies": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/wrap-ansi/node_modules/strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dependencies": { + "ansi-regex": "^4.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" + }, + "node_modules/xtend": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", + "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", + "engines": { + "node": ">=0.4" + } + }, + "node_modules/y18n": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz", + "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==" + }, + "node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + }, + "node_modules/yargs": { + "version": "13.3.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-13.3.2.tgz", + "integrity": "sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==", + "dependencies": { + "cliui": "^5.0.0", + "find-up": "^3.0.0", + "get-caller-file": "^2.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^3.0.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^13.1.2" + } + }, + "node_modules/yargs-parser": { + "version": "13.1.2", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.2.tgz", + "integrity": "sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==", + "dependencies": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + } + }, + "node_modules/yargs-parser/node_modules/camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "engines": { + "node": ">=6" + } + }, + "node_modules/yargs/node_modules/ansi-regex": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", + "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", + "engines": { + "node": ">=6" + } + }, + "node_modules/yargs/node_modules/find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dependencies": { + "locate-path": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/yargs/node_modules/is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==", + "engines": { + "node": ">=4" + } + }, + "node_modules/yargs/node_modules/locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "dependencies": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/yargs/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/yargs/node_modules/p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dependencies": { + "p-limit": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/yargs/node_modules/path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", + "engines": { + "node": ">=4" + } + }, + "node_modules/yargs/node_modules/string-width": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "dependencies": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/yargs/node_modules/strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dependencies": { + "ansi-regex": "^4.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/yup": { + "version": "0.32.11", + "resolved": "https://registry.npmjs.org/yup/-/yup-0.32.11.tgz", + "integrity": "sha512-Z2Fe1bn+eLstG8DRR6FTavGD+MeAwyfmouhHsIUgaADz8jvFKbO/fXc2trJKZg+5EBjh4gGm3iU/t3onKlXHIg==", + "dependencies": { + "@babel/runtime": "^7.15.4", + "@types/lodash": "^4.14.175", + "lodash": "^4.17.21", + "lodash-es": "^4.17.21", + "nanoclone": "^0.2.1", + "property-expr": "^2.0.4", + "toposort": "^2.0.2" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/yup/node_modules/@babel/runtime": { + "version": "7.23.2", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.2.tgz", + "integrity": "sha512-mM8eg4yl5D6i3lu2QKPuPH4FArvJ8KhTofbE7jwMUv9KX5mBvwPAqnV3MlyBNqdp9RyRKP6Yck8TrfYrPvX3bg==", + "dependencies": { + "regenerator-runtime": "^0.14.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/yup/node_modules/regenerator-runtime": { + "version": "0.14.0", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.0.tgz", + "integrity": "sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==" + } + }, + "dependencies": { + "@babel/code-frame": { + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz", + "integrity": "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==", + "requires": { + "@babel/highlight": "^7.10.4" + } + }, + "@babel/helper-validator-identifier": { + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz", + "integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==" + }, + "@babel/highlight": { + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.20.tgz", + "integrity": "sha512-dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg==", + "requires": { + "@babel/helper-validator-identifier": "^7.22.20", + "chalk": "^2.4.2", + "js-tokens": "^4.0.0" + } + }, + "@babel/runtime": { + "version": "7.12.5", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz", + "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==", + "requires": { + "regenerator-runtime": "^0.13.4" + } + }, + "@babel/types": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.8.3.tgz", + "integrity": "sha512-jBD+G8+LWpMBBWvVcdr4QysjUE4mU/syrhN17o1u3gx0/WzJB1kwiVZAXRtWbsIPOwW8pF/YJV5+nmetPzepXg==", + "requires": { + "esutils": "^2.0.2", + "lodash": "^4.17.13", + "to-fast-properties": "^2.0.0" + } + }, + "@fortawesome/fontawesome-common-types": { + "version": "6.4.2", + "resolved": "https://registry.npmjs.org/@fortawesome/fontawesome-common-types/-/fontawesome-common-types-6.4.2.tgz", + "integrity": "sha512-1DgP7f+XQIJbLFCTX1V2QnxVmpLdKdzzo2k8EmvDOePfchaIGQ9eCHj2up3/jNEbZuBqel5OxiaOJf37TWauRA==" + }, + "@fortawesome/fontawesome-svg-core": { + "version": "6.4.2", + "resolved": "https://registry.npmjs.org/@fortawesome/fontawesome-svg-core/-/fontawesome-svg-core-6.4.2.tgz", + "integrity": "sha512-gjYDSKv3TrM2sLTOKBc5rH9ckje8Wrwgx1CxAPbN5N3Fm4prfi7NsJVWd1jklp7i5uSCVwhZS5qlhMXqLrpAIg==", + "requires": { + "@fortawesome/fontawesome-common-types": "6.4.2" + } + }, + "@hapi/accept": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/@hapi/accept/-/accept-5.0.1.tgz", + "integrity": "sha512-fMr4d7zLzsAXo28PRRQPXR1o2Wmu+6z+VY1UzDp0iFo13Twj8WePakwXBiqn3E1aAlTpSNzCXdnnQXFhst8h8Q==", + "requires": { + "@hapi/boom": "9.x.x", + "@hapi/hoek": "9.x.x" + } + }, + "@hapi/boom": { + "version": "9.1.4", + "resolved": "https://registry.npmjs.org/@hapi/boom/-/boom-9.1.4.tgz", + "integrity": "sha512-Ls1oH8jaN1vNsqcaHVYJrKmgMcKsC1wcp8bujvXrHaAqD2iDYq3HoOwsxwo09Cuda5R5nC0o0IxlrlTuvPuzSw==", + "requires": { + "@hapi/hoek": "9.x.x" + } + }, + "@hapi/hoek": { + "version": "9.3.0", + "resolved": "https://registry.npmjs.org/@hapi/hoek/-/hoek-9.3.0.tgz", + "integrity": "sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==" + }, + "@hypnosphi/create-react-context": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/@hypnosphi/create-react-context/-/create-react-context-0.3.1.tgz", + "integrity": "sha512-V1klUed202XahrWJLLOT3EXNeCpFHCcJntdFGI15ntCwau+jfT386w7OFTMaCqOgXUH1fa0w/I1oZs+i/Rfr0A==", + "requires": { + "gud": "^1.0.0", + "warning": "^4.0.3" + } + }, + "@next/env": { + "version": "10.0.9", + "resolved": "https://registry.npmjs.org/@next/env/-/env-10.0.9.tgz", + "integrity": "sha512-MERX3DY5u0Ed29eAsXeFBCZlFAGBtmjf7+Nht0hfgB25MPKKkIbC/0MRPcX/PQcAgLHsAHO6ay1u9xKzR4Vzjw==" + }, + "@next/polyfill-module": { + "version": "10.0.9", + "resolved": "https://registry.npmjs.org/@next/polyfill-module/-/polyfill-module-10.0.9.tgz", + "integrity": "sha512-kPOP6ku/e8zdrK8hwxOrjUrPLcdDEj12huLHVz+DZU+20q6VlhMOtR8aKHW1460L4LoLE/DAa7YyIuxtArhDRg==" + }, + "@next/react-dev-overlay": { + "version": "10.0.9", + "resolved": "https://registry.npmjs.org/@next/react-dev-overlay/-/react-dev-overlay-10.0.9.tgz", + "integrity": "sha512-JsSh2Y004MEuPYqBD9eTl4PVZIjSzSy2GcD7MrW/gQcExYNpeMIJAbh8/OcyO1t+OnQeIHF5s/xTMsDHBGNcew==", + "requires": { + "@babel/code-frame": "7.12.11", + "anser": "1.4.9", + "chalk": "4.0.0", + "classnames": "2.2.6", + "css.escape": "1.5.1", + "data-uri-to-buffer": "3.0.1", + "platform": "1.3.6", + "shell-quote": "1.7.2", + "source-map": "0.8.0-beta.0", + "stacktrace-parser": "0.1.10", + "strip-ansi": "6.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.0.0.tgz", + "integrity": "sha512-N9oWFcegS0sFr9oh1oz2d7Npos6vNoWW9HvtCg5N1KRFpUhaAhvTv5Y58g880fZaEYSNm3qDz8SU1UrGvp+n7A==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "@next/react-refresh-utils": { + "version": "10.0.9", + "resolved": "https://registry.npmjs.org/@next/react-refresh-utils/-/react-refresh-utils-10.0.9.tgz", + "integrity": "sha512-LSoKnM+fI9MHHew+mBg1w2e4/gjwPQsI+mDTzmfwdBwje+j9U2Int6XOZftMqBPXSlL04vjC9SRBkp0+3h8cNA==", + "requires": {} + }, + "@opentelemetry/api": { + "version": "0.14.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/api/-/api-0.14.0.tgz", + "integrity": "sha512-L7RMuZr5LzMmZiQSQDy9O1jo0q+DaLy6XpYJfIGfYSfoJA5qzYwUP3sP1uMIQ549DvxAgM3ng85EaPTM/hUHwQ==", + "requires": { + "@opentelemetry/context-base": "^0.14.0" + } + }, + "@opentelemetry/context-base": { + "version": "0.14.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/context-base/-/context-base-0.14.0.tgz", + "integrity": "sha512-sDOAZcYwynHFTbLo6n8kIbLiVF3a3BLkrmehJUyEbT9F+Smbi47kLGS2gG2g0fjBLR/Lr1InPD7kXL7FaTqEkw==" + }, + "@popperjs/core": { + "version": "2.11.8", + "resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.11.8.tgz", + "integrity": "sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==" + }, + "@react-aria/ssr": { + "version": "3.8.0", + "resolved": "https://registry.npmjs.org/@react-aria/ssr/-/ssr-3.8.0.tgz", + "integrity": "sha512-Y54xs483rglN5DxbwfCPHxnkvZ+gZ0LbSYmR72LyWPGft8hN/lrl1VRS1EW2SMjnkEWlj+Km2mwvA3kEHDUA0A==", + "requires": { + "@swc/helpers": "^0.5.0" + } + }, + "@restart/hooks": { + "version": "0.4.11", + "resolved": "https://registry.npmjs.org/@restart/hooks/-/hooks-0.4.11.tgz", + "integrity": "sha512-Ft/ncTULZN6ldGHiF/k5qt72O8JyRMOeg0tApvCni8LkoiEahO+z3TNxfXIVGy890YtWVDvJAl662dVJSJXvMw==", + "requires": { + "dequal": "^2.0.3" + } + }, + "@restart/ui": { + "version": "1.6.6", + "resolved": "https://registry.npmjs.org/@restart/ui/-/ui-1.6.6.tgz", + "integrity": "sha512-eC3puKuWE1SRYbojWHXnvCNHGgf3uzHCb6JOhnF4OXPibOIPEkR1sqDSkL643ydigxwh+ruCa1CmYHlzk7ikKA==", + "requires": { + "@babel/runtime": "^7.21.0", + "@popperjs/core": "^2.11.6", + "@react-aria/ssr": "^3.5.0", + "@restart/hooks": "^0.4.9", + "@types/warning": "^3.0.0", + "dequal": "^2.0.3", + "dom-helpers": "^5.2.0", + "uncontrollable": "^8.0.1", + "warning": "^4.0.3" + }, + "dependencies": { + "@babel/runtime": { + "version": "7.23.2", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.2.tgz", + "integrity": "sha512-mM8eg4yl5D6i3lu2QKPuPH4FArvJ8KhTofbE7jwMUv9KX5mBvwPAqnV3MlyBNqdp9RyRKP6Yck8TrfYrPvX3bg==", + "requires": { + "regenerator-runtime": "^0.14.0" + } + }, + "dom-helpers": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-5.2.1.tgz", + "integrity": "sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==", + "requires": { + "@babel/runtime": "^7.8.7", + "csstype": "^3.0.2" + } + }, + "regenerator-runtime": { + "version": "0.14.0", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.0.tgz", + "integrity": "sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==" + }, + "uncontrollable": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/uncontrollable/-/uncontrollable-8.0.4.tgz", + "integrity": "sha512-ulRWYWHvscPFc0QQXvyJjY6LIXU56f0h8pQFvhxiKk5V1fcI8gp9Ht9leVAhrVjzqMw0BgjspBINx9r6oyJUvQ==", + "requires": {} + } + } + }, + "@swc/helpers": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.3.tgz", + "integrity": "sha512-FaruWX6KdudYloq1AHD/4nU+UsMTdNE8CKyrseXWEcgjDAbvkwJg2QGPAnfIJLIWsjZOSPLOAykK6fuYp4vp4A==", + "requires": { + "tslib": "^2.4.0" + } + }, + "@types/hoist-non-react-statics": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/@types/hoist-non-react-statics/-/hoist-non-react-statics-3.3.4.tgz", + "integrity": "sha512-ZchYkbieA+7tnxwX/SCBySx9WwvWR8TaP5tb2jRAzwvLb/rWchGw3v0w3pqUbUvj0GCwW2Xz/AVPSk6kUGctXQ==", + "requires": { + "@types/react": "*", + "hoist-non-react-statics": "^3.3.0" + } + }, + "@types/lodash": { + "version": "4.14.200", + "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.200.tgz", + "integrity": "sha512-YI/M/4HRImtNf3pJgbF+W6FrXovqj+T+/HpENLTooK9PnkacBsDpeP3IpHab40CClUfhNmdM2WTNP2sa2dni5Q==" + }, + "@types/prop-types": { + "version": "15.7.9", + "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.9.tgz", + "integrity": "sha512-n1yyPsugYNSmHgxDFjicaI2+gCNjsBck8UX9kuofAKlc0h1bL+20oSF72KeNaW2DUlesbEVCFgyV2dPGTiY42g==" + }, + "@types/react": { + "version": "18.2.34", + "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.34.tgz", + "integrity": "sha512-U6eW/alrRk37FU/MS2RYMjx0Va2JGIVXELTODaTIYgvWGCV4Y4TfTUzG8DdmpDNIT0Xpj/R7GfyHOJJrDttcvg==", + "requires": { + "@types/prop-types": "*", + "@types/scheduler": "*", + "csstype": "^3.0.2" + } + }, + "@types/react-redux": { + "version": "7.1.28", + "resolved": "https://registry.npmjs.org/@types/react-redux/-/react-redux-7.1.28.tgz", + "integrity": "sha512-EQr7cChVzVUuqbA+J8ArWK1H0hLAHKOs21SIMrskKZ3nHNeE+LFYA+IsoZGhVOT8Ktjn3M20v4rnZKN3fLbypw==", + "requires": { + "@types/hoist-non-react-statics": "^3.3.0", + "@types/react": "*", + "hoist-non-react-statics": "^3.3.0", + "redux": "^4.0.0" + } + }, + "@types/react-transition-group": { + "version": "4.4.8", + "resolved": "https://registry.npmjs.org/@types/react-transition-group/-/react-transition-group-4.4.8.tgz", + "integrity": "sha512-QmQ22q+Pb+HQSn04NL3HtrqHwYMf4h3QKArOy5F8U5nEVMaihBs3SR10WiOM1iwPz5jIo8x/u11al+iEGZZrvg==", + "requires": { + "@types/react": "*" + } + }, + "@types/scheduler": { + "version": "0.16.5", + "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.5.tgz", + "integrity": "sha512-s/FPdYRmZR8SjLWGMCuax7r3qCWQw9QKHzXVukAuuIJkXkDRwp+Pu5LMIVFi0Fxbav35WURicYr8u1QsoybnQw==" + }, + "@types/warning": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/@types/warning/-/warning-3.0.2.tgz", + "integrity": "sha512-S/2+OjBIcBl8Kur23YLe0hG1e7J5m2bHfB4UuMNoLZjIFhQWhTf1FeS+WFoXHUC6QsCEfk4pftj4J1KIKC1glA==" + }, + "abbrev": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", + "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==" + }, + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "amdefine": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz", + "integrity": "sha512-S2Hw0TtNkMJhIabBwIojKL9YHO5T0n5eNqWJ7Lrlel/zDbftQpxpapi8tZs3X1HWa+u+QeydGmzzNU0m09+Rcg==" + }, + "anser": { + "version": "1.4.9", + "resolved": "https://registry.npmjs.org/anser/-/anser-1.4.9.tgz", + "integrity": "sha512-AI+BjTeGt2+WFk4eWcqbQ7snZpDBt8SaLlj0RT2h5xfdWaiy51OjYvqwMrNzJLGy8iOAL6nKDITWO+rd4MkYEA==" + }, + "ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==" + }, + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "requires": { + "color-convert": "^1.9.0" + } + }, + "anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "requires": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + } + }, + "aproba": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz", + "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==" + }, + "are-we-there-yet": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.7.tgz", + "integrity": "sha512-nxwy40TuMiUGqMyRHgCSWZ9FM4VAoRP4xUYSTv5ImRog+h9yISPbVH7H8fASCIzYn9wlEv4zvFL7uKDMCFQm3g==", + "requires": { + "delegates": "^1.0.0", + "readable-stream": "^2.0.6" + }, + "dependencies": { + "readable-stream": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "requires": { + "safe-buffer": "~5.1.0" + } + } + } + }, + "array-find-index": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/array-find-index/-/array-find-index-1.0.2.tgz", + "integrity": "sha512-M1HQyIXcBGtVywBt8WVdim+lrNaK7VHp99Qt5pSNziXznKHViIBbXWtfRTpEFpF/c4FdfxNAsCCwPp5phBYJtw==" + }, + "asn1": { + "version": "0.2.6", + "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.6.tgz", + "integrity": "sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==", + "requires": { + "safer-buffer": "~2.1.0" + } + }, + "asn1.js": { + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-5.4.1.tgz", + "integrity": "sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==", + "requires": { + "bn.js": "^4.0.0", + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0", + "safer-buffer": "^2.1.0" + }, + "dependencies": { + "bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" + } + } + }, + "assert": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/assert/-/assert-1.5.1.tgz", + "integrity": "sha512-zzw1uCAgLbsKwBfFc8CX78DDg+xZeBksSO3vwVIDDN5i94eOrPsSSyiVhmsSABFDM/OcpE2aagCat9dnWQLG1A==", + "requires": { + "object.assign": "^4.1.4", + "util": "^0.10.4" + }, + "dependencies": { + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==" + }, + "util": { + "version": "0.10.4", + "resolved": "https://registry.npmjs.org/util/-/util-0.10.4.tgz", + "integrity": "sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A==", + "requires": { + "inherits": "2.0.3" + } + } + } + }, + "assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", + "integrity": "sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==" + }, + "ast-types": { + "version": "0.13.2", + "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.13.2.tgz", + "integrity": "sha512-uWMHxJxtfj/1oZClOxDEV1sQ1HCDkA4MG8Gr69KKeBjEVH0R84WlejZ0y2DcwyBlpAEMltmVYkVgqfLFb2oyiA==" + }, + "async-foreach": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/async-foreach/-/async-foreach-0.1.3.tgz", + "integrity": "sha512-VUeSMD8nEGBWaZK4lizI1sf3yEC7pnAQ/mrI7pC2fBz2s/tq5jWWEngTwaf0Gruu/OoXRGLGg1XFqpYBiGTYJA==" + }, + "asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" + }, + "aws-sign2": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", + "integrity": "sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==" + }, + "aws4": { + "version": "1.12.0", + "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.12.0.tgz", + "integrity": "sha512-NmWvPnx0F1SfrQbYwOi7OeaNGokp9XhzNioJ/CSBs8Qa4vxug81mhJEAVZwxXuBmYB5KDRfMq/F3RR0BIU7sWg==" + }, + "babel-plugin-syntax-jsx": { + "version": "6.18.0", + "resolved": "https://registry.npmjs.org/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz", + "integrity": "sha512-qrPaCSo9c8RHNRHIotaufGbuOBN8rtdC4QrrFFc43vyWCCz7Kl7GL1PGaXtMGQZUXrkCjNEgxDfmAuAabr/rlw==" + }, + "balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" + }, + "base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==" + }, + "bcrypt-pbkdf": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", + "integrity": "sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==", + "requires": { + "tweetnacl": "^0.14.3" + } + }, + "big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==" + }, + "binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==" + }, + "bn.js": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-5.2.1.tgz", + "integrity": "sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ==" + }, + "bootstrap": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/bootstrap/-/bootstrap-5.3.2.tgz", + "integrity": "sha512-D32nmNWiQHo94BKHLmOrdjlL05q1c8oxbtBphQFb9Z5to6eGRDCm0QgeaZ4zFBHzfg2++rqa2JkqCcxDy0sH0g==", + "requires": {} + }, + "brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "requires": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "requires": { + "fill-range": "^7.0.1" + } + }, + "brorand": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz", + "integrity": "sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w==" + }, + "browserify-aes": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz", + "integrity": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==", + "requires": { + "buffer-xor": "^1.0.3", + "cipher-base": "^1.0.0", + "create-hash": "^1.1.0", + "evp_bytestokey": "^1.0.3", + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "browserify-cipher": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz", + "integrity": "sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==", + "requires": { + "browserify-aes": "^1.0.4", + "browserify-des": "^1.0.0", + "evp_bytestokey": "^1.0.0" + } + }, + "browserify-des": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz", + "integrity": "sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==", + "requires": { + "cipher-base": "^1.0.1", + "des.js": "^1.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" + } + }, + "browserify-rsa": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.1.0.tgz", + "integrity": "sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog==", + "requires": { + "bn.js": "^5.0.0", + "randombytes": "^2.0.1" + } + }, + "browserify-sign": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.2.2.tgz", + "integrity": "sha512-1rudGyeYY42Dk6texmv7c4VcQ0EsvVbLwZkA+AQB7SxvXxmcD93jcHie8bzecJ+ChDlmAm2Qyu0+Ccg5uhZXCg==", + "requires": { + "bn.js": "^5.2.1", + "browserify-rsa": "^4.1.0", + "create-hash": "^1.2.0", + "create-hmac": "^1.1.7", + "elliptic": "^6.5.4", + "inherits": "^2.0.4", + "parse-asn1": "^5.1.6", + "readable-stream": "^3.6.2", + "safe-buffer": "^5.2.1" + } + }, + "browserify-zlib": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz", + "integrity": "sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==", + "requires": { + "pako": "~1.0.5" + } + }, + "browserslist": { + "version": "4.16.1", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.16.1.tgz", + "integrity": "sha512-UXhDrwqsNcpTYJBTZsbGATDxZbiVDsx6UjpmRUmtnP10pr8wAYr5LgFoEFw9ixriQH2mv/NX2SfGzE/o8GndLA==", + "requires": { + "caniuse-lite": "^1.0.30001173", + "colorette": "^1.2.1", + "electron-to-chromium": "^1.3.634", + "escalade": "^3.1.1", + "node-releases": "^1.1.69" + } + }, + "buffer": { + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.6.0.tgz", + "integrity": "sha512-/gDYp/UtU0eA1ys8bOs9J6a+E/KWIY+DZ+Q2WESNUA0jFRsJOc0SNUO6xJ5SGA1xueg3NL65W6s+NY5l9cunuw==", + "requires": { + "base64-js": "^1.0.2", + "ieee754": "^1.1.4" + } + }, + "buffer-xor": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz", + "integrity": "sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ==" + }, + "builtin-status-codes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz", + "integrity": "sha512-HpGFw18DgFWlncDfjTa2rcQ4W88O1mC8e8yZ2AvQY5KDaktSTwo+KRf6nHK6FRI5FyRyb/5T6+TSxfP7QyGsmQ==" + }, + "bytes": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz", + "integrity": "sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==" + }, + "call-bind": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.5.tgz", + "integrity": "sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==", + "requires": { + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.1", + "set-function-length": "^1.1.1" + } + }, + "camelcase": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-2.1.1.tgz", + "integrity": "sha512-DLIsRzJVBQu72meAKPkWQOLcujdXT32hwdfnkI1frSiSRMK1MofjKHf+MEx0SB6fjEFXL8fBDv1dKymBlOp4Qw==" + }, + "camelcase-keys": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-2.1.0.tgz", + "integrity": "sha512-bA/Z/DERHKqoEOrp+qeGKw1QlvEQkGZSc0XaY6VnTxZr+Kv1G5zFwttpjv8qxZ/sBPT4nthwZaAcsAZTJlSKXQ==", + "requires": { + "camelcase": "^2.0.0", + "map-obj": "^1.0.0" + } + }, + "caniuse-lite": { + "version": "1.0.30001559", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001559.tgz", + "integrity": "sha512-cPiMKZgqgkg5LY3/ntGeLFUpi6tzddBNS58A4tnTgQw1zON7u2sZMU7SzOeVH4tj20++9ggL+V6FDOFMTaFFYA==" + }, + "caseless": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", + "integrity": "sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==" + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "chart.js": { + "version": "2.9.4", + "resolved": "https://registry.npmjs.org/chart.js/-/chart.js-2.9.4.tgz", + "integrity": "sha512-B07aAzxcrikjAPyV+01j7BmOpxtQETxTSlQ26BEYJ+3iUkbNKaOJ/nDbT6JjyqYxseM0ON12COHYdU2cTIjC7A==", + "requires": { + "chartjs-color": "^2.1.0", + "moment": "^2.10.2" + } + }, + "chartjs-color": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/chartjs-color/-/chartjs-color-2.4.1.tgz", + "integrity": "sha512-haqOg1+Yebys/Ts/9bLo/BqUcONQOdr/hoEr2LLTRl6C5LXctUdHxsCYfvQVg5JIxITrfCNUDr4ntqmQk9+/0w==", + "requires": { + "chartjs-color-string": "^0.6.0", + "color-convert": "^1.9.3" + } + }, + "chartjs-color-string": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/chartjs-color-string/-/chartjs-color-string-0.6.0.tgz", + "integrity": "sha512-TIB5OKn1hPJvO7JcteW4WY/63v6KwEdt6udfnDE9iCAZgy+V4SrbSxoIbTw/xkUIapjEI4ExGtD0+6D3KyFd7A==", + "requires": { + "color-name": "^1.0.0" + } + }, + "chokidar": { + "version": "3.5.1", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.1.tgz", + "integrity": "sha512-9+s+Od+W0VJJzawDma/gvBNQqkTiqYTWLuZoyAsivsI4AaWTCzHG06/TMjsf1cYe9Cb97UCEhjz7HvnPk2p/tw==", + "requires": { + "anymatch": "~3.1.1", + "braces": "~3.0.2", + "fsevents": "~2.3.1", + "glob-parent": "~5.1.0", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.5.0" + } + }, + "chownr": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", + "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==" + }, + "cipher-base": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz", + "integrity": "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==", + "requires": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "classnames": { + "version": "2.2.6", + "resolved": "https://registry.npmjs.org/classnames/-/classnames-2.2.6.tgz", + "integrity": "sha512-JR/iSQOSt+LQIWwrwEzJ9uk0xfN3mTVYMwt1Ir5mUcSN6pU+V4zQFFaJsclJbPuAUQH+yfWef6tm7l1quW3C8Q==" + }, + "cliui": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz", + "integrity": "sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==", + "requires": { + "string-width": "^3.1.0", + "strip-ansi": "^5.2.0", + "wrap-ansi": "^5.1.0" + }, + "dependencies": { + "ansi-regex": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", + "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==" + }, + "is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==" + }, + "string-width": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "requires": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + } + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "requires": { + "ansi-regex": "^4.1.0" + } + } + } + }, + "code-point-at": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz", + "integrity": "sha512-RpAVKQA5T63xEj6/giIbUEtZwJ4UFIc3ZtvEkiaUERylqe8xb5IvqcgOurZLahv93CLKfxcw5YI+DZcUBRyLXA==" + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "requires": { + "color-name": "1.1.3" + }, + "dependencies": { + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" + } + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "colorette": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-1.4.0.tgz", + "integrity": "sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==" + }, + "combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "requires": { + "delayed-stream": "~1.0.0" + } + }, + "commondir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", + "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==" + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" + }, + "console-browserify": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/console-browserify/-/console-browserify-1.2.0.tgz", + "integrity": "sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==" + }, + "console-control-strings": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", + "integrity": "sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==" + }, + "constants-browserify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz", + "integrity": "sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ==" + }, + "convert-source-map": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.7.0.tgz", + "integrity": "sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA==", + "requires": { + "safe-buffer": "~5.1.1" + }, + "dependencies": { + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + } + } + }, + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==" + }, + "create-ecdh": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.4.tgz", + "integrity": "sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==", + "requires": { + "bn.js": "^4.1.0", + "elliptic": "^6.5.3" + }, + "dependencies": { + "bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" + } + } + }, + "create-hash": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz", + "integrity": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==", + "requires": { + "cipher-base": "^1.0.1", + "inherits": "^2.0.1", + "md5.js": "^1.3.4", + "ripemd160": "^2.0.1", + "sha.js": "^2.4.0" + } + }, + "create-hmac": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz", + "integrity": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==", + "requires": { + "cipher-base": "^1.0.3", + "create-hash": "^1.1.0", + "inherits": "^2.0.1", + "ripemd160": "^2.0.0", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" + } + }, + "cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "requires": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + } + }, + "crypto-browserify": { + "version": "3.12.0", + "resolved": "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz", + "integrity": "sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==", + "requires": { + "browserify-cipher": "^1.0.0", + "browserify-sign": "^4.0.0", + "create-ecdh": "^4.0.0", + "create-hash": "^1.1.0", + "create-hmac": "^1.1.0", + "diffie-hellman": "^5.0.0", + "inherits": "^2.0.1", + "pbkdf2": "^3.0.3", + "public-encrypt": "^4.0.0", + "randombytes": "^2.0.0", + "randomfill": "^1.0.3" + } + }, + "css.escape": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/css.escape/-/css.escape-1.5.1.tgz", + "integrity": "sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg==" + }, + "cssnano-preset-simple": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/cssnano-preset-simple/-/cssnano-preset-simple-1.2.2.tgz", + "integrity": "sha512-gtvrcRSGtP3hA/wS8mFVinFnQdEsEpm3v4I/s/KmNjpdWaThV/4E5EojAzFXxyT5OCSRPLlHR9iQexAqKHlhGQ==", + "requires": { + "caniuse-lite": "^1.0.30001179", + "postcss": "^7.0.32" + }, + "dependencies": { + "postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "requires": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "cssnano-simple": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/cssnano-simple/-/cssnano-simple-1.2.2.tgz", + "integrity": "sha512-4slyYc1w4JhSbhVX5xi9G0aQ42JnRyPg+7l7cqoNyoIDzfWx40Rq3JQZnoAWDu60A4AvKVp9ln/YSUOdhDX68g==", + "requires": { + "cssnano-preset-simple": "1.2.2", + "postcss": "^7.0.32" + }, + "dependencies": { + "postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "requires": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "csstype": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.2.tgz", + "integrity": "sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==" + }, + "currently-unhandled": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/currently-unhandled/-/currently-unhandled-0.4.1.tgz", + "integrity": "sha512-/fITjgjGU50vjQ4FH6eUoYu+iUoUKIXws2hL15JJpIR+BbTxaXQsMuuyjtNh2WqsSBS5nsaZHFsFecyw5CCAng==", + "requires": { + "array-find-index": "^1.0.1" + } + }, + "dashdash": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", + "integrity": "sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==", + "requires": { + "assert-plus": "^1.0.0" + } + }, + "data-uri-to-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-3.0.1.tgz", + "integrity": "sha512-WboRycPNsVw3B3TL559F7kuBUM4d8CgMEvk6xEJlOp7OBPjt6G7z8WMWlD2rOFZLk6OYfFIUGsCOWzcQH9K2og==" + }, + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==" + }, + "deep-equal": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.1.1.tgz", + "integrity": "sha512-yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g==", + "requires": { + "is-arguments": "^1.0.4", + "is-date-object": "^1.0.1", + "is-regex": "^1.0.4", + "object-is": "^1.0.1", + "object-keys": "^1.1.1", + "regexp.prototype.flags": "^1.2.0" + } + }, + "deepmerge": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-2.2.1.tgz", + "integrity": "sha512-R9hc1Xa/NOBi9WRVUWg19rl1UB7Tt4kuPd+thNJgFZoxXsTz7ncaPaeIm+40oSGuP33DfMb4sZt1QIGiJzC4EA==" + }, + "define-data-property": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.1.tgz", + "integrity": "sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==", + "requires": { + "get-intrinsic": "^1.2.1", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.0" + } + }, + "define-properties": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", + "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", + "requires": { + "define-data-property": "^1.0.1", + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" + } + }, + "delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==" + }, + "delegates": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", + "integrity": "sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==" + }, + "depd": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", + "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==" + }, + "dequal": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", + "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==" + }, + "des.js": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/des.js/-/des.js-1.1.0.tgz", + "integrity": "sha512-r17GxjhUCjSRy8aiJpr8/UadFIzMzJGexI3Nmz4ADi9LYSFx4gTBp80+NaX/YsXWWLhpZ7v/v/ubEc/bCNfKwg==", + "requires": { + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0" + } + }, + "diffie-hellman": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz", + "integrity": "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==", + "requires": { + "bn.js": "^4.1.0", + "miller-rabin": "^4.0.0", + "randombytes": "^2.0.0" + }, + "dependencies": { + "bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" + } + } + }, + "dom-helpers": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-3.4.0.tgz", + "integrity": "sha512-LnuPJ+dwqKDIyotW1VzmOZ5TONUN7CwkCR5hrgawTUbkBGYdeoNLZo6nNfGkCrjtE1nXXaj7iMMpDa8/d9WoIA==", + "requires": { + "@babel/runtime": "^7.1.2" + } + }, + "domain-browser": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/domain-browser/-/domain-browser-1.2.0.tgz", + "integrity": "sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==" + }, + "ecc-jsbn": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", + "integrity": "sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==", + "requires": { + "jsbn": "~0.1.0", + "safer-buffer": "^2.1.0" + } + }, + "electron-to-chromium": { + "version": "1.4.575", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.575.tgz", + "integrity": "sha512-kY2BGyvgAHiX899oF6xLXSIf99bAvvdPhDoJwG77nxCSyWYuRH6e9a9a3gpXBvCs6lj4dQZJkfnW2hdKWHEISg==" + }, + "elliptic": { + "version": "6.5.4", + "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.4.tgz", + "integrity": "sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==", + "requires": { + "bn.js": "^4.11.9", + "brorand": "^1.1.0", + "hash.js": "^1.0.0", + "hmac-drbg": "^1.0.1", + "inherits": "^2.0.4", + "minimalistic-assert": "^1.0.1", + "minimalistic-crypto-utils": "^1.0.1" + }, + "dependencies": { + "bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" + } + } + }, + "emoji-regex": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", + "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==" + }, + "emojis-list": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-2.1.0.tgz", + "integrity": "sha512-knHEZMgs8BB+MInokmNTg/OyPlAddghe1YBgNwJBc5zsJi/uyIcXoSDsL/W9ymOsBoBGdPIHXYJ9+qKFwRwDng==" + }, + "env-paths": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz", + "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==" + }, + "error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "requires": { + "is-arrayish": "^0.2.1" + } + }, + "escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==" + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==" + }, + "esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==" + }, + "etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==" + }, + "events": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", + "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==" + }, + "evp_bytestokey": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz", + "integrity": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==", + "requires": { + "md5.js": "^1.3.4", + "safe-buffer": "^5.1.1" + } + }, + "extend": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" + }, + "extsprintf": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", + "integrity": "sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==" + }, + "fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" + }, + "fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" + }, + "fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "requires": { + "to-regex-range": "^5.0.1" + } + }, + "find-cache-dir": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.1.tgz", + "integrity": "sha512-t2GDMt3oGC/v+BMwzmllWDuJF/xcDtE5j/fCGbqDD7OLuJkj0cfh1YSA5VKPvwMeLFLNDBkwOKZ2X85jGLVftQ==", + "requires": { + "commondir": "^1.0.1", + "make-dir": "^3.0.2", + "pkg-dir": "^4.1.0" + } + }, + "find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "requires": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + } + }, + "forever-agent": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", + "integrity": "sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==" + }, + "form-data": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", + "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", + "requires": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.6", + "mime-types": "^2.1.12" + } + }, + "formik": { + "version": "2.4.5", + "resolved": "https://registry.npmjs.org/formik/-/formik-2.4.5.tgz", + "integrity": "sha512-Gxlht0TD3vVdzMDHwkiNZqJ7Mvg77xQNfmBRrNtvzcHZs72TJppSTDKHpImCMJZwcWPBJ8jSQQ95GJzXFf1nAQ==", + "requires": { + "@types/hoist-non-react-statics": "^3.3.1", + "deepmerge": "^2.1.1", + "hoist-non-react-statics": "^3.3.0", + "lodash": "^4.17.21", + "lodash-es": "^4.17.21", + "react-fast-compare": "^2.0.1", + "tiny-warning": "^1.0.2", + "tslib": "^2.0.0" + } + }, + "fs-minipass": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", + "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", + "requires": { + "minipass": "^3.0.0" + }, + "dependencies": { + "minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "requires": { + "yallist": "^4.0.0" + } + } + } + }, + "fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" + }, + "fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "optional": true + }, + "function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==" + }, + "functions-have-names": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==" + }, + "gauge": { + "version": "2.7.4", + "resolved": "https://registry.npmjs.org/gauge/-/gauge-2.7.4.tgz", + "integrity": "sha512-14x4kjc6lkD3ltw589k0NrPD6cCNTD6CWoVUNpB85+DrtONoZn+Rug6xZU5RvSC4+TZPxA5AnBibQYAvZn41Hg==", + "requires": { + "aproba": "^1.0.3", + "console-control-strings": "^1.0.0", + "has-unicode": "^2.0.0", + "object-assign": "^4.1.0", + "signal-exit": "^3.0.0", + "string-width": "^1.0.1", + "strip-ansi": "^3.0.1", + "wide-align": "^1.1.0" + }, + "dependencies": { + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==" + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==", + "requires": { + "ansi-regex": "^2.0.0" + } + } + } + }, + "gaze": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/gaze/-/gaze-1.1.3.tgz", + "integrity": "sha512-BRdNm8hbWzFzWHERTrejLqwHDfS4GibPoq5wjTPIoJHoBtKGPg3xAFfxmM+9ztbXelxcf2hwQcaz1PtmFeue8g==", + "requires": { + "globule": "^1.0.0" + } + }, + "get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==" + }, + "get-intrinsic": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.2.tgz", + "integrity": "sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==", + "requires": { + "function-bind": "^1.1.2", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "hasown": "^2.0.0" + } + }, + "get-orientation": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/get-orientation/-/get-orientation-1.1.2.tgz", + "integrity": "sha512-/pViTfifW+gBbh/RnlFYHINvELT9Znt+SYyDKAUL6uV6By019AK/s+i9XP4jSwq7lwP38Fd8HVeTxym3+hkwmQ==", + "requires": { + "stream-parser": "^0.3.1" + } + }, + "get-stdin": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-4.0.1.tgz", + "integrity": "sha512-F5aQMywwJ2n85s4hJPTT9RPxGmubonuB10MNYo17/xph174n2MIR33HRguhzVag10O/npM7SPk73LMZNP+FaWw==" + }, + "getpass": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", + "integrity": "sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==", + "requires": { + "assert-plus": "^1.0.0" + } + }, + "glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + }, + "glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "requires": { + "is-glob": "^4.0.1" + } + }, + "glob-to-regexp": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", + "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==" + }, + "globule": { + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/globule/-/globule-1.3.4.tgz", + "integrity": "sha512-OPTIfhMBh7JbBYDpa5b+Q5ptmMWKwcNcFSR/0c6t8V4f3ZAVBEsKNY37QdVqmLRYSMhOUGYrY0QhSoEpzGr/Eg==", + "requires": { + "glob": "~7.1.1", + "lodash": "^4.17.21", + "minimatch": "~3.0.2" + }, + "dependencies": { + "glob": { + "version": "7.1.7", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz", + "integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==", + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + }, + "minimatch": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.8.tgz", + "integrity": "sha512-6FsRAQsxQ61mw+qP1ZzbL9Bc78x2p5OqNgNpnoAFLTrX8n5Kxph0CsnhmKKNXTWjXqU5L0pGPR7hYk+XWZr60Q==", + "requires": { + "brace-expansion": "^1.1.7" + } + } + } + }, + "gopd": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", + "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + "requires": { + "get-intrinsic": "^1.1.3" + } + }, + "graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" + }, + "gud": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/gud/-/gud-1.0.0.tgz", + "integrity": "sha512-zGEOVKFM5sVPPrYs7J5/hYEw2Pof8KCyOwyhG8sAF26mCAeUFAcYPu1mwB7hhpIP29zOIBaDqwuHdLp0jvZXjw==" + }, + "har-schema": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", + "integrity": "sha512-Oqluz6zhGX8cyRaTQlFMPw80bSJVG2x/cFb8ZPhUILGgHka9SsokCCOQgpveePerqidZOrT14ipqfJb7ILcW5Q==" + }, + "har-validator": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz", + "integrity": "sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==", + "requires": { + "ajv": "^6.12.3", + "har-schema": "^2.0.0" + } + }, + "has-ansi": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz", + "integrity": "sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg==", + "requires": { + "ansi-regex": "^2.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==" + } + } + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==" + }, + "has-property-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.1.tgz", + "integrity": "sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==", + "requires": { + "get-intrinsic": "^1.2.2" + } + }, + "has-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", + "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==" + }, + "has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==" + }, + "has-tostringtag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", + "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", + "requires": { + "has-symbols": "^1.0.2" + } + }, + "has-unicode": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", + "integrity": "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==" + }, + "hash-base": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.1.0.tgz", + "integrity": "sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==", + "requires": { + "inherits": "^2.0.4", + "readable-stream": "^3.6.0", + "safe-buffer": "^5.2.0" + } + }, + "hash.js": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz", + "integrity": "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==", + "requires": { + "inherits": "^2.0.3", + "minimalistic-assert": "^1.0.1" + } + }, + "hasown": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.0.tgz", + "integrity": "sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==", + "requires": { + "function-bind": "^1.1.2" + } + }, + "he": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", + "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==" + }, + "hmac-drbg": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz", + "integrity": "sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg==", + "requires": { + "hash.js": "^1.0.3", + "minimalistic-assert": "^1.0.0", + "minimalistic-crypto-utils": "^1.0.1" + } + }, + "hoist-non-react-statics": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz", + "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==", + "requires": { + "react-is": "^16.7.0" + } + }, + "hosted-git-info": { + "version": "2.8.9", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==" + }, + "http-errors": { + "version": "1.7.3", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.7.3.tgz", + "integrity": "sha512-ZTTX0MWrsQ2ZAhA1cejAwDLycFsd7I7nVtnkT3Ol0aqodaKW+0CTZDQ1uBv5whptCnc8e8HeRRJxRs0kmm/Qfw==", + "requires": { + "depd": "~1.1.2", + "inherits": "2.0.4", + "setprototypeof": "1.1.1", + "statuses": ">= 1.5.0 < 2", + "toidentifier": "1.0.0" + } + }, + "http-signature": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", + "integrity": "sha512-CAbnr6Rz4CYQkLYUtSNXxQPUH2gK8f3iWexVlsnMeD+GjlsQ0Xsy1cOX+mN3dtxYomRy21CiOzU8Uhw6OwncEQ==", + "requires": { + "assert-plus": "^1.0.0", + "jsprim": "^1.2.2", + "sshpk": "^1.7.0" + } + }, + "https-browserify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz", + "integrity": "sha512-J+FkSdyD+0mA0N+81tMotaRMfSL9SGi+xpD3T6YApKsc3bGSXJlfXri3VyFOeYkfLRQisDk1W+jIFFKBeUBbBg==" + }, + "iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "requires": { + "safer-buffer": ">= 2.1.2 < 3" + } + }, + "ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==" + }, + "immutable": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/immutable/-/immutable-4.3.4.tgz", + "integrity": "sha512-fsXeu4J4i6WNWSikpI88v/PcVflZz+6kMhUfIwc5SY+poQRPnaf5V7qds6SUyUN3cVxEzuCab7QIoLOQ+DQ1wA==", + "devOptional": true + }, + "indent-string": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-2.1.0.tgz", + "integrity": "sha512-aqwDFWSgSgfRaEwao5lg5KEcVd/2a+D1rvoG7NdilmYz0NwRk6StWpWdz/Hpk34MKPpx7s8XxUqimfcQK6gGlg==", + "requires": { + "repeating": "^2.0.0" + } + }, + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "requires": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + }, + "invariant": { + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz", + "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==", + "requires": { + "loose-envify": "^1.0.0" + } + }, + "is-arguments": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", + "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", + "requires": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + } + }, + "is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==" + }, + "is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "requires": { + "binary-extensions": "^2.0.0" + } + }, + "is-core-module": { + "version": "2.13.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.1.tgz", + "integrity": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==", + "requires": { + "hasown": "^2.0.0" + } + }, + "is-date-object": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "requires": { + "has-tostringtag": "^1.0.0" + } + }, + "is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==" + }, + "is-finite": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-finite/-/is-finite-1.1.0.tgz", + "integrity": "sha512-cdyMtqX/BOqqNBBiKlIVkytNHm49MtMlYyn1zxzvJKWmFMlGzm+ry5BBfYyeY9YmNKbRSo/o7OX9w9ale0wg3w==" + }, + "is-fullwidth-code-point": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", + "integrity": "sha512-1pqUqRjkhPJ9miNq9SwMfdvi6lBJcd6eFxvfaivQhaH3SgisfiuudvFntdKOmxuee/77l+FPjKrQjWvmPjWrRw==", + "requires": { + "number-is-nan": "^1.0.0" + } + }, + "is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "requires": { + "is-extglob": "^2.1.1" + } + }, + "is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==" + }, + "is-regex": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "requires": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + } + }, + "is-typedarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", + "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==" + }, + "is-utf8": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz", + "integrity": "sha512-rMYPYvCzsXywIsldgLaSoPlw5PfoB/ssr7hY4pLfcodrA5M/eArza1a9VmTiNIBNMjOGr1Ow9mTyU2o69U6U9Q==" + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" + }, + "isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" + }, + "isobject": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", + "integrity": "sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==", + "requires": { + "isarray": "1.0.0" + } + }, + "isstream": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", + "integrity": "sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==" + }, + "jest-worker": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-24.9.0.tgz", + "integrity": "sha512-51PE4haMSXcHohnSMdM42anbvZANYTqMrr52tVKPqqsPJMzoP6FYYDVqahX/HrAoKEKz3uUPzSvKs9A3qR4iVw==", + "requires": { + "merge-stream": "^2.0.0", + "supports-color": "^6.1.0" + }, + "dependencies": { + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "js-base64": { + "version": "2.6.4", + "resolved": "https://registry.npmjs.org/js-base64/-/js-base64-2.6.4.tgz", + "integrity": "sha512-pZe//GGmwJndub7ZghVHz7vjb2LgC1m8B07Au3eYqeqv9emhESByMXxaEgkUkEqJe87oBbSniGYoQNIBklc7IQ==" + }, + "js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" + }, + "jsbn": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", + "integrity": "sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==" + }, + "json-schema": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz", + "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==" + }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" + }, + "json-stringify-safe": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", + "integrity": "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==" + }, + "json5": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "requires": { + "minimist": "^1.2.0" + } + }, + "jsprim": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.2.tgz", + "integrity": "sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==", + "requires": { + "assert-plus": "1.0.0", + "extsprintf": "1.3.0", + "json-schema": "0.4.0", + "verror": "1.10.0" + } + }, + "line-column": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/line-column/-/line-column-1.0.2.tgz", + "integrity": "sha512-Ktrjk5noGYlHsVnYWh62FLVs4hTb8A3e+vucNZMgPeAOITdshMSgv4cCZQeRDjm7+goqmo6+liZwTXo+U3sVww==", + "requires": { + "isarray": "^1.0.0", + "isobject": "^2.0.0" + } + }, + "load-json-file": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz", + "integrity": "sha512-cy7ZdNRXdablkXYNI049pthVeXFurRyb9+hA/dZzerZ0pGTx42z+y+ssxBaVV2l70t1muq5IdKhn4UtcoGUY9A==", + "requires": { + "graceful-fs": "^4.1.2", + "parse-json": "^2.2.0", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0", + "strip-bom": "^2.0.0" + } + }, + "loader-utils": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.2.3.tgz", + "integrity": "sha512-fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA==", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^2.0.0", + "json5": "^1.0.1" + } + }, + "locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "requires": { + "p-locate": "^4.1.0" + } + }, + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" + }, + "lodash-es": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash-es/-/lodash-es-4.17.21.tgz", + "integrity": "sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==" + }, + "lodash.sortby": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz", + "integrity": "sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==" + }, + "loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "requires": { + "js-tokens": "^3.0.0 || ^4.0.0" + } + }, + "loud-rejection": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/loud-rejection/-/loud-rejection-1.6.0.tgz", + "integrity": "sha512-RPNliZOFkqFumDhvYqOaNY4Uz9oJM2K9tC6JWsJJsNdhuONW4LQHRBpb0qf4pJApVffI5N39SwzWZJuEhfd7eQ==", + "requires": { + "currently-unhandled": "^0.4.1", + "signal-exit": "^3.0.0" + } + }, + "lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "requires": { + "yallist": "^4.0.0" + } + }, + "make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "requires": { + "semver": "^6.0.0" + } + }, + "map-obj": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz", + "integrity": "sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==" + }, + "md5.js": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz", + "integrity": "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==", + "requires": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" + } + }, + "meow": { + "version": "3.7.0", + "resolved": "https://registry.npmjs.org/meow/-/meow-3.7.0.tgz", + "integrity": "sha512-TNdwZs0skRlpPpCUK25StC4VH+tP5GgeY1HQOOGP+lQ2xtdkN2VtT/5tiX9k3IWpkBPV9b3LsAWXn4GGi/PrSA==", + "requires": { + "camelcase-keys": "^2.0.0", + "decamelize": "^1.1.2", + "loud-rejection": "^1.0.0", + "map-obj": "^1.0.1", + "minimist": "^1.1.3", + "normalize-package-data": "^2.3.4", + "object-assign": "^4.0.1", + "read-pkg-up": "^1.0.1", + "redent": "^1.0.0", + "trim-newlines": "^1.0.0" + } + }, + "merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==" + }, + "miller-rabin": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz", + "integrity": "sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==", + "requires": { + "bn.js": "^4.0.0", + "brorand": "^1.0.1" + }, + "dependencies": { + "bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" + } + } + }, + "mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==" + }, + "mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "requires": { + "mime-db": "1.52.0" + } + }, + "minimalistic-assert": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", + "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==" + }, + "minimalistic-crypto-utils": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz", + "integrity": "sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg==" + }, + "minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "requires": { + "brace-expansion": "^1.1.7" + } + }, + "minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==" + }, + "minipass": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz", + "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==" + }, + "minizlib": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", + "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", + "requires": { + "minipass": "^3.0.0", + "yallist": "^4.0.0" + }, + "dependencies": { + "minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "requires": { + "yallist": "^4.0.0" + } + } + } + }, + "mkdirp": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", + "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", + "requires": { + "minimist": "^1.2.6" + } + }, + "moment": { + "version": "2.29.4", + "resolved": "https://registry.npmjs.org/moment/-/moment-2.29.4.tgz", + "integrity": "sha512-5LC9SOxjSc2HF6vO2CyuTDNivEdoz2IvyJJGj6X8DJ0eFyfszE0QiEd+iXmBvUP3WHxSjFH/vIsA0EN00cgr8w==" + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "nan": { + "version": "2.18.0", + "resolved": "https://registry.npmjs.org/nan/-/nan-2.18.0.tgz", + "integrity": "sha512-W7tfG7vMOGtD30sHoZSSc/JVYiyDPEyQVso/Zz+/uQd0B0L46gtC+pHha5FFMRpil6fm/AoEcRWyOVi4+E/f8w==" + }, + "nanoclone": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/nanoclone/-/nanoclone-0.2.1.tgz", + "integrity": "sha512-wynEP02LmIbLpcYw8uBKpcfF6dmg2vcpKqxeH5UcoKEYdExslsdUA4ugFauuaeYdTB76ez6gJW8XAZ6CgkXYxA==" + }, + "nanoid": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz", + "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==" + }, + "native-url": { + "version": "0.3.4", + "resolved": "https://registry.npmjs.org/native-url/-/native-url-0.3.4.tgz", + "integrity": "sha512-6iM8R99ze45ivyH8vybJ7X0yekIcPf5GgLV5K0ENCbmRcaRIDoj37BC8iLEmaaBfqqb8enuZ5p0uhY+lVAbAcA==", + "requires": { + "querystring": "^0.2.0" + } + }, + "next": { + "version": "10.0.9", + "resolved": "https://registry.npmjs.org/next/-/next-10.0.9.tgz", + "integrity": "sha512-HyoVjYydcM6LaFAUOHSxVQCcKOsIimVO/IKXCuWUu1rr6DDgXbWNg/8ckH084qD46MOYlLzjViiZ3KCmNQL4Cw==", + "requires": { + "@babel/runtime": "7.12.5", + "@hapi/accept": "5.0.1", + "@next/env": "10.0.9", + "@next/polyfill-module": "10.0.9", + "@next/react-dev-overlay": "10.0.9", + "@next/react-refresh-utils": "10.0.9", + "@opentelemetry/api": "0.14.0", + "ast-types": "0.13.2", + "browserslist": "4.16.1", + "buffer": "5.6.0", + "caniuse-lite": "^1.0.30001179", + "chalk": "2.4.2", + "chokidar": "3.5.1", + "crypto-browserify": "3.12.0", + "cssnano-simple": "1.2.2", + "etag": "1.8.1", + "find-cache-dir": "3.3.1", + "get-orientation": "1.1.2", + "jest-worker": "24.9.0", + "native-url": "0.3.4", + "node-fetch": "2.6.1", + "node-html-parser": "1.4.9", + "node-libs-browser": "^2.2.1", + "p-limit": "3.1.0", + "path-browserify": "1.0.1", + "pnp-webpack-plugin": "1.6.4", + "postcss": "8.1.7", + "process": "0.11.10", + "prop-types": "15.7.2", + "raw-body": "2.4.1", + "react-is": "16.13.1", + "react-refresh": "0.8.3", + "stream-browserify": "3.0.0", + "styled-jsx": "3.3.2", + "use-subscription": "1.5.1", + "vm-browserify": "1.1.2", + "watchpack": "2.1.1" + } + }, + "node-fetch": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.1.tgz", + "integrity": "sha512-V4aYg89jEoVRxRb2fJdAg8FHvI7cEyYdVAh94HH0UIK8oJxUfkjlDQN9RbMx+bEjP7+ggMiFRprSti032Oipxw==" + }, + "node-gyp": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-7.1.2.tgz", + "integrity": "sha512-CbpcIo7C3eMu3dL1c3d0xw449fHIGALIJsRP4DDPHpyiW8vcriNY7ubh9TE4zEKfSxscY7PjeFnshE7h75ynjQ==", + "requires": { + "env-paths": "^2.2.0", + "glob": "^7.1.4", + "graceful-fs": "^4.2.3", + "nopt": "^5.0.0", + "npmlog": "^4.1.2", + "request": "^2.88.2", + "rimraf": "^3.0.2", + "semver": "^7.3.2", + "tar": "^6.0.2", + "which": "^2.0.2" + }, + "dependencies": { + "semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "requires": { + "lru-cache": "^6.0.0" + } + } + } + }, + "node-html-parser": { + "version": "1.4.9", + "resolved": "https://registry.npmjs.org/node-html-parser/-/node-html-parser-1.4.9.tgz", + "integrity": "sha512-UVcirFD1Bn0O+TSmloHeHqZZCxHjvtIeGdVdGMhyZ8/PWlEiZaZ5iJzR189yKZr8p0FXN58BUeC7RHRkf/KYGw==", + "requires": { + "he": "1.2.0" + } + }, + "node-libs-browser": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-2.2.1.tgz", + "integrity": "sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q==", + "requires": { + "assert": "^1.1.1", + "browserify-zlib": "^0.2.0", + "buffer": "^4.3.0", + "console-browserify": "^1.1.0", + "constants-browserify": "^1.0.0", + "crypto-browserify": "^3.11.0", + "domain-browser": "^1.1.1", + "events": "^3.0.0", + "https-browserify": "^1.0.0", + "os-browserify": "^0.3.0", + "path-browserify": "0.0.1", + "process": "^0.11.10", + "punycode": "^1.2.4", + "querystring-es3": "^0.2.0", + "readable-stream": "^2.3.3", + "stream-browserify": "^2.0.1", + "stream-http": "^2.7.2", + "string_decoder": "^1.0.0", + "timers-browserify": "^2.0.4", + "tty-browserify": "0.0.0", + "url": "^0.11.0", + "util": "^0.11.0", + "vm-browserify": "^1.0.1" + }, + "dependencies": { + "buffer": { + "version": "4.9.2", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-4.9.2.tgz", + "integrity": "sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==", + "requires": { + "base64-js": "^1.0.2", + "ieee754": "^1.1.4", + "isarray": "^1.0.0" + } + }, + "path-browserify": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.1.tgz", + "integrity": "sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ==" + }, + "readable-stream": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + }, + "stream-browserify": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.2.tgz", + "integrity": "sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg==", + "requires": { + "inherits": "~2.0.1", + "readable-stream": "^2.0.2" + } + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "requires": { + "safe-buffer": "~5.1.0" + } + } + } + }, + "node-releases": { + "version": "1.1.77", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.77.tgz", + "integrity": "sha512-rB1DUFUNAN4Gn9keO2K1efO35IDK7yKHCdCaIMvFO7yUYmmZYeDjnGKle26G4rwj+LKRQpjyUUvMkPglwGCYNQ==" + }, + "node-sass": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/node-sass/-/node-sass-5.0.0.tgz", + "integrity": "sha512-opNgmlu83ZCF792U281Ry7tak9IbVC+AKnXGovcQ8LG8wFaJv6cLnRlc6DIHlmNxWEexB5bZxi9SZ9JyUuOYjw==", + "requires": { + "async-foreach": "^0.1.3", + "chalk": "^1.1.1", + "cross-spawn": "^7.0.3", + "gaze": "^1.0.0", + "get-stdin": "^4.0.1", + "glob": "^7.0.3", + "lodash": "^4.17.15", + "meow": "^3.7.0", + "mkdirp": "^0.5.1", + "nan": "^2.13.2", + "node-gyp": "^7.1.0", + "npmlog": "^4.0.0", + "request": "^2.88.0", + "sass-graph": "2.2.5", + "stdout-stream": "^1.4.0", + "true-case-path": "^1.0.2" + }, + "dependencies": { + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==" + }, + "ansi-styles": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", + "integrity": "sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==" + }, + "chalk": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "integrity": "sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==", + "requires": { + "ansi-styles": "^2.2.1", + "escape-string-regexp": "^1.0.2", + "has-ansi": "^2.0.0", + "strip-ansi": "^3.0.0", + "supports-color": "^2.0.0" + } + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==", + "requires": { + "ansi-regex": "^2.0.0" + } + }, + "supports-color": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==" + } + } + }, + "nopt": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/nopt/-/nopt-5.0.0.tgz", + "integrity": "sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==", + "requires": { + "abbrev": "1" + } + }, + "normalize-package-data": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", + "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", + "requires": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" + }, + "dependencies": { + "semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==" + } + } + }, + "normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==" + }, + "npmlog": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-4.1.2.tgz", + "integrity": "sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==", + "requires": { + "are-we-there-yet": "~1.1.2", + "console-control-strings": "~1.1.0", + "gauge": "~2.7.3", + "set-blocking": "~2.0.0" + } + }, + "number-is-nan": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", + "integrity": "sha512-4jbtZXNAsfZbAHiiqjLPBiCl16dES1zI4Hpzzxw61Tk+loF+sBDBKx1ICKKKwIqQ7M0mFn1TmkN7euSncWgHiQ==" + }, + "oauth-sign": { + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", + "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==" + }, + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==" + }, + "object-inspect": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.1.tgz", + "integrity": "sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==" + }, + "object-is": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz", + "integrity": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + } + }, + "object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==" + }, + "object.assign": { + "version": "4.1.4", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz", + "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "has-symbols": "^1.0.3", + "object-keys": "^1.1.1" + } + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "requires": { + "wrappy": "1" + } + }, + "os-browserify": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz", + "integrity": "sha512-gjcpUc3clBf9+210TRaDWbf+rZZZEshZ+DlXMRCeAjp0xhTrnQsKHypIy1J3d5hKdUzj69t708EHtU8P6bUn0A==" + }, + "p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "requires": { + "yocto-queue": "^0.1.0" + } + }, + "p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "requires": { + "p-limit": "^2.2.0" + }, + "dependencies": { + "p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "requires": { + "p-try": "^2.0.0" + } + } + } + }, + "p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==" + }, + "pako": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz", + "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==" + }, + "parse-asn1": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.6.tgz", + "integrity": "sha512-RnZRo1EPU6JBnra2vGHj0yhp6ebyjBZpmUCLHWiFhxlzvBCCpAuZ7elsBp1PVAbQN0/04VD/19rfzlBSwLstMw==", + "requires": { + "asn1.js": "^5.2.0", + "browserify-aes": "^1.0.0", + "evp_bytestokey": "^1.0.0", + "pbkdf2": "^3.0.3", + "safe-buffer": "^5.1.1" + } + }, + "parse-json": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", + "integrity": "sha512-QR/GGaKCkhwk1ePQNYDRKYZ3mwU9ypsKhB0XyFnLQdomyEqk3e8wpW3V5Jp88zbxK4n5ST1nqo+g9juTpownhQ==", + "requires": { + "error-ex": "^1.2.0" + } + }, + "path-browserify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-1.0.1.tgz", + "integrity": "sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==" + }, + "path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==" + }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==" + }, + "path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==" + }, + "path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" + }, + "path-type": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz", + "integrity": "sha512-S4eENJz1pkiQn9Znv33Q+deTOKmbl+jj1Fl+qiP/vYezj+S8x+J3Uo0ISrx/QoEvIlOaDWJhPaRd1flJ9HXZqg==", + "requires": { + "graceful-fs": "^4.1.2", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0" + } + }, + "pbkdf2": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.1.2.tgz", + "integrity": "sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA==", + "requires": { + "create-hash": "^1.1.2", + "create-hmac": "^1.1.4", + "ripemd160": "^2.0.1", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" + } + }, + "perfect-scrollbar": { + "version": "1.5.5", + "resolved": "https://registry.npmjs.org/perfect-scrollbar/-/perfect-scrollbar-1.5.5.tgz", + "integrity": "sha512-dzalfutyP3e/FOpdlhVryN4AJ5XDVauVWxybSkLZmakFE2sS3y3pc4JnSprw8tGmHvkaG5Edr5T7LBTZ+WWU2g==" + }, + "performance-now": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", + "integrity": "sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==" + }, + "picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + }, + "picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==" + }, + "pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==" + }, + "pinkie": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", + "integrity": "sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==" + }, + "pinkie-promise": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", + "integrity": "sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==", + "requires": { + "pinkie": "^2.0.0" + } + }, + "pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "requires": { + "find-up": "^4.0.0" + } + }, + "platform": { + "version": "1.3.6", + "resolved": "https://registry.npmjs.org/platform/-/platform-1.3.6.tgz", + "integrity": "sha512-fnWVljUchTro6RiCFvCXBbNhJc2NijN7oIQxbwsyL0buWJPG85v81ehlHI9fXrJsMNgTofEoWIQeClKpgxFLrg==" + }, + "pnp-webpack-plugin": { + "version": "1.6.4", + "resolved": "https://registry.npmjs.org/pnp-webpack-plugin/-/pnp-webpack-plugin-1.6.4.tgz", + "integrity": "sha512-7Wjy+9E3WwLOEL30D+m8TSTF7qJJUJLONBnwQp0518siuMxUQUbgZwssaFX+QKlZkjHZcw/IpZCt/H0srrntSg==", + "requires": { + "ts-pnp": "^1.1.6" + } + }, + "popper.js": { + "version": "1.16.1", + "resolved": "https://registry.npmjs.org/popper.js/-/popper.js-1.16.1.tgz", + "integrity": "sha512-Wb4p1J4zyFTbM+u6WuO4XstYx4Ky9Cewe4DWrel7B0w6VVICvPwdOpotjzcf6eD8TsckVnIMNONQyPIUFOUbCQ==" + }, + "postcss": { + "version": "8.1.7", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.1.7.tgz", + "integrity": "sha512-llCQW1Pz4MOPwbZLmOddGM9eIJ8Bh7SZ2Oj5sxZva77uVaotYDsYTch1WBTNu7fUY0fpWp0fdt7uW40D4sRiiQ==", + "requires": { + "colorette": "^1.2.1", + "line-column": "^1.0.2", + "nanoid": "^3.1.16", + "source-map": "^0.6.1" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "process": { + "version": "0.11.10", + "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", + "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==" + }, + "process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" + }, + "prop-types": { + "version": "15.7.2", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.7.2.tgz", + "integrity": "sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ==", + "requires": { + "loose-envify": "^1.4.0", + "object-assign": "^4.1.1", + "react-is": "^16.8.1" + } + }, + "prop-types-extra": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/prop-types-extra/-/prop-types-extra-1.1.1.tgz", + "integrity": "sha512-59+AHNnHYCdiC+vMwY52WmvP5dM3QLeoumYuEyceQDi9aEhtwN9zIQ2ZNo25sMyXnbh32h+P1ezDsUpUH3JAew==", + "requires": { + "react-is": "^16.3.2", + "warning": "^4.0.0" + } + }, + "property-expr": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/property-expr/-/property-expr-2.0.6.tgz", + "integrity": "sha512-SVtmxhRE/CGkn3eZY1T6pC8Nln6Fr/lu1mKSgRud0eC73whjGfoAogbn78LkD8aFL0zz3bAFerKSnOl7NlErBA==" + }, + "psl": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz", + "integrity": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==" + }, + "public-encrypt": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.3.tgz", + "integrity": "sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==", + "requires": { + "bn.js": "^4.1.0", + "browserify-rsa": "^4.0.0", + "create-hash": "^1.1.0", + "parse-asn1": "^5.0.0", + "randombytes": "^2.0.1", + "safe-buffer": "^5.1.2" + }, + "dependencies": { + "bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" + } + } + }, + "punycode": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", + "integrity": "sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==" + }, + "qs": { + "version": "6.5.3", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.3.tgz", + "integrity": "sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==" + }, + "querystring": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.1.tgz", + "integrity": "sha512-wkvS7mL/JMugcup3/rMitHmd9ecIGd2lhFhK9N3UUQ450h66d1r3Y9nvXzQAW1Lq+wyx61k/1pfKS5KuKiyEbg==" + }, + "querystring-es3": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz", + "integrity": "sha512-773xhDQnZBMFobEiztv8LIl70ch5MSF/jUQVlhwFyBILqq96anmoctVIYz+ZRp0qbCKATTn6ev02M3r7Ga5vqA==" + }, + "randombytes": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", + "requires": { + "safe-buffer": "^5.1.0" + } + }, + "randomfill": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz", + "integrity": "sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==", + "requires": { + "randombytes": "^2.0.5", + "safe-buffer": "^5.1.0" + } + }, + "raw-body": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.4.1.tgz", + "integrity": "sha512-9WmIKF6mkvA0SLmA2Knm9+qj89e+j1zqgyn8aXGd7+nAduPoqgI9lO57SAZNn/Byzo5P7JhXTyg9PzaJbH73bA==", + "requires": { + "bytes": "3.1.0", + "http-errors": "1.7.3", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + } + }, + "react": { + "version": "17.0.2", + "resolved": "https://registry.npmjs.org/react/-/react-17.0.2.tgz", + "integrity": "sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA==", + "requires": { + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1" + } + }, + "react-bootstrap": { + "version": "2.9.1", + "resolved": "https://registry.npmjs.org/react-bootstrap/-/react-bootstrap-2.9.1.tgz", + "integrity": "sha512-ezgmh/ARCYp18LbZEqPp0ppvy+ytCmycDORqc8vXSKYV3cer4VH7OReV8uMOoKXmYzivJTxgzGHalGrHamryHA==", + "requires": { + "@babel/runtime": "^7.22.5", + "@restart/hooks": "^0.4.9", + "@restart/ui": "^1.6.6", + "@types/react-transition-group": "^4.4.6", + "classnames": "^2.3.2", + "dom-helpers": "^5.2.1", + "invariant": "^2.2.4", + "prop-types": "^15.8.1", + "prop-types-extra": "^1.1.0", + "react-transition-group": "^4.4.5", + "uncontrollable": "^7.2.1", + "warning": "^4.0.3" + }, + "dependencies": { + "@babel/runtime": { + "version": "7.23.2", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.2.tgz", + "integrity": "sha512-mM8eg4yl5D6i3lu2QKPuPH4FArvJ8KhTofbE7jwMUv9KX5mBvwPAqnV3MlyBNqdp9RyRKP6Yck8TrfYrPvX3bg==", + "requires": { + "regenerator-runtime": "^0.14.0" + } + }, + "classnames": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/classnames/-/classnames-2.3.2.tgz", + "integrity": "sha512-CSbhY4cFEJRe6/GQzIk5qXZ4Jeg5pcsP7b5peFSDpffpe1cqjASH/n9UTjBwOp6XpMSTwQ8Za2K5V02ueA7Tmw==" + }, + "dom-helpers": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-5.2.1.tgz", + "integrity": "sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==", + "requires": { + "@babel/runtime": "^7.8.7", + "csstype": "^3.0.2" + } + }, + "prop-types": { + "version": "15.8.1", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", + "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", + "requires": { + "loose-envify": "^1.4.0", + "object-assign": "^4.1.1", + "react-is": "^16.13.1" + } + }, + "react-transition-group": { + "version": "4.4.5", + "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-4.4.5.tgz", + "integrity": "sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==", + "requires": { + "@babel/runtime": "^7.5.5", + "dom-helpers": "^5.0.1", + "loose-envify": "^1.4.0", + "prop-types": "^15.6.2" + } + }, + "regenerator-runtime": { + "version": "0.14.0", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.0.tgz", + "integrity": "sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==" + } + } + }, + "react-chartjs-2": { + "version": "2.11.2", + "resolved": "https://registry.npmjs.org/react-chartjs-2/-/react-chartjs-2-2.11.2.tgz", + "integrity": "sha512-hcPS9vmRJeAALPPf0uo02BiD8BDm0HNmneJYTZVR74UKprXOpql+Jy1rVuj93rKw0Jfx77mkcRfXPxTe5K83uw==", + "requires": { + "lodash": "^4.17.19", + "prop-types": "^15.7.2" + } + }, + "react-dom": { + "version": "17.0.2", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-17.0.2.tgz", + "integrity": "sha512-s4h96KtLDUQlsENhMn1ar8t2bEa+q/YAtj8pPPdIjPDGBDIVNsrD9aXNWqspUe6AzKCIG0C1HZZLqLV7qpOBGA==", + "requires": { + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1", + "scheduler": "^0.20.2" + } + }, + "react-fast-compare": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/react-fast-compare/-/react-fast-compare-2.0.4.tgz", + "integrity": "sha512-suNP+J1VU1MWFKcyt7RtjiSWUjvidmQSlqu+eHslq+342xCbGTYmC0mEhPCOHxlW0CywylOC1u2DFAT+bv4dBw==" + }, + "react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" + }, + "react-lifecycles-compat": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz", + "integrity": "sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==" + }, + "react-perfect-scrollbar": { + "version": "1.5.8", + "resolved": "https://registry.npmjs.org/react-perfect-scrollbar/-/react-perfect-scrollbar-1.5.8.tgz", + "integrity": "sha512-bQ46m70gp/HJtiBOF3gRzBISSZn8FFGNxznTdmTG8AAwpxG1bJCyn7shrgjEvGSQ5FJEafVEiosY+ccER11OSA==", + "requires": { + "perfect-scrollbar": "^1.5.0", + "prop-types": "^15.6.1" + } + }, + "react-popper": { + "version": "1.3.11", + "resolved": "https://registry.npmjs.org/react-popper/-/react-popper-1.3.11.tgz", + "integrity": "sha512-VSA/bS+pSndSF2fiasHK/PTEEAyOpX60+H5EPAjoArr8JGm+oihu4UbrqcEBpQibJxBVCpYyjAX7abJ+7DoYVg==", + "requires": { + "@babel/runtime": "^7.1.2", + "@hypnosphi/create-react-context": "^0.3.1", + "deep-equal": "^1.1.1", + "popper.js": "^1.14.4", + "prop-types": "^15.6.1", + "typed-styles": "^0.0.7", + "warning": "^4.0.2" + } + }, + "react-redux": { + "version": "7.2.9", + "resolved": "https://registry.npmjs.org/react-redux/-/react-redux-7.2.9.tgz", + "integrity": "sha512-Gx4L3uM182jEEayZfRbI/G11ZpYdNAnBs70lFVMNdHJI76XYtR+7m0MN+eAs7UHBPhWXcnFPaS+9owSCJQHNpQ==", + "requires": { + "@babel/runtime": "^7.15.4", + "@types/react-redux": "^7.1.20", + "hoist-non-react-statics": "^3.3.2", + "loose-envify": "^1.4.0", + "prop-types": "^15.7.2", + "react-is": "^17.0.2" + }, + "dependencies": { + "@babel/runtime": { + "version": "7.23.2", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.2.tgz", + "integrity": "sha512-mM8eg4yl5D6i3lu2QKPuPH4FArvJ8KhTofbE7jwMUv9KX5mBvwPAqnV3MlyBNqdp9RyRKP6Yck8TrfYrPvX3bg==", + "requires": { + "regenerator-runtime": "^0.14.0" + } + }, + "react-is": { + "version": "17.0.2", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", + "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==" + }, + "regenerator-runtime": { + "version": "0.14.0", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.0.tgz", + "integrity": "sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==" + } + } + }, + "react-refresh": { + "version": "0.8.3", + "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.8.3.tgz", + "integrity": "sha512-X8jZHc7nCMjaCqoU+V2I0cOhNW+QMBwSUkeXnTi8IPe6zaRWfn60ZzvFDZqWPfmSJfjub7dDW1SP0jaHWLu/hg==" + }, + "react-transition-group": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-3.0.0.tgz", + "integrity": "sha512-A9ojB/LWECbFj58SNfjK1X9aaAU+1olLS0DFSikvrr2KfMaiBELemHDa5dKNvcTk2t3gUtDL/PJpFrBKDfMpLg==", + "requires": { + "dom-helpers": "^3.4.0", + "loose-envify": "^1.4.0", + "prop-types": "^15.6.2", + "react-lifecycles-compat": "^3.0.4" + } + }, + "reactstrap": { + "version": "8.10.1", + "resolved": "https://registry.npmjs.org/reactstrap/-/reactstrap-8.10.1.tgz", + "integrity": "sha512-StjLADa/12yMNjafrSs+UD7sZAGtKpLO9fZp++2Dj0IzJinqY7eQhXlM3nFf0q40YsIcLvQdFc9pKF8PF4f0Qg==", + "requires": { + "@babel/runtime": "^7.12.5", + "classnames": "^2.2.3", + "prop-types": "^15.5.8", + "react-popper": "^1.3.6", + "react-transition-group": "^3.0.0" + } + }, + "read-pkg": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz", + "integrity": "sha512-7BGwRHqt4s/uVbuyoeejRn4YmFnYZiFl4AuaeXHlgZf3sONF0SOGlxs2Pw8g6hCKupo08RafIO5YXFNOKTfwsQ==", + "requires": { + "load-json-file": "^1.0.0", + "normalize-package-data": "^2.3.2", + "path-type": "^1.0.0" + } + }, + "read-pkg-up": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz", + "integrity": "sha512-WD9MTlNtI55IwYUS27iHh9tK3YoIVhxis8yKhLpTqWtml739uXc9NWTpxoHkfZf3+DkCCsXox94/VWZniuZm6A==", + "requires": { + "find-up": "^1.0.0", + "read-pkg": "^1.0.0" + }, + "dependencies": { + "find-up": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", + "integrity": "sha512-jvElSjyuo4EMQGoTwo1uJU5pQMwTW5lS1x05zzfJuTIyLR3zwO27LYrxNg+dlvKpGOuGy/MzBdXh80g0ve5+HA==", + "requires": { + "path-exists": "^2.0.0", + "pinkie-promise": "^2.0.0" + } + }, + "path-exists": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", + "integrity": "sha512-yTltuKuhtNeFJKa1PiRzfLAU5182q1y4Eb4XCJ3PBqyzEDkAZRzBrKKBct682ls9reBVHf9udYLN5Nd+K1B9BQ==", + "requires": { + "pinkie-promise": "^2.0.0" + } + } + } + }, + "readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + } + }, + "readdirp": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.5.0.tgz", + "integrity": "sha512-cMhu7c/8rdhkHXWsY+osBhfSy0JikwpHK/5+imo+LpeasTF8ouErHrlYkwT0++njiyuDvc7OFY5T3ukvZ8qmFQ==", + "requires": { + "picomatch": "^2.2.1" + } + }, + "redent": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/redent/-/redent-1.0.0.tgz", + "integrity": "sha512-qtW5hKzGQZqKoh6JNSD+4lfitfPKGz42e6QwiRmPM5mmKtR0N41AbJRYu0xJi7nhOJ4WDgRkKvAk6tw4WIwR4g==", + "requires": { + "indent-string": "^2.1.0", + "strip-indent": "^1.0.1" + } + }, + "redux": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/redux/-/redux-4.2.1.tgz", + "integrity": "sha512-LAUYz4lc+Do8/g7aeRa8JkyDErK6ekstQaqWQrNRW//MY1TvCEpMtpTWvlQ+FPbWCx+Xixu/6SHt5N0HR+SB4w==", + "requires": { + "@babel/runtime": "^7.9.2" + } + }, + "redux-thunk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/redux-thunk/-/redux-thunk-2.4.2.tgz", + "integrity": "sha512-+P3TjtnP0k/FEjcBL5FZpoovtvrTNT/UXd4/sluaSyrURlSlhLSzEdfsTBW7WsKB6yPvgd7q/iZPICFjW4o57Q==", + "requires": {} + }, + "regenerator-runtime": { + "version": "0.13.11", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", + "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==" + }, + "regexp.prototype.flags": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.1.tgz", + "integrity": "sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "set-function-name": "^2.0.0" + } + }, + "repeating": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/repeating/-/repeating-2.0.1.tgz", + "integrity": "sha512-ZqtSMuVybkISo2OWvqvm7iHSWngvdaW3IpsT9/uP8v4gMi591LY6h35wdOfvQdWCKFWZWm2Y1Opp4kV7vQKT6A==", + "requires": { + "is-finite": "^1.0.0" + } + }, + "request": { + "version": "2.88.2", + "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz", + "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==", + "requires": { + "aws-sign2": "~0.7.0", + "aws4": "^1.8.0", + "caseless": "~0.12.0", + "combined-stream": "~1.0.6", + "extend": "~3.0.2", + "forever-agent": "~0.6.1", + "form-data": "~2.3.2", + "har-validator": "~5.1.3", + "http-signature": "~1.2.0", + "is-typedarray": "~1.0.0", + "isstream": "~0.1.2", + "json-stringify-safe": "~5.0.1", + "mime-types": "~2.1.19", + "oauth-sign": "~0.9.0", + "performance-now": "^2.1.0", + "qs": "~6.5.2", + "safe-buffer": "^5.1.2", + "tough-cookie": "~2.5.0", + "tunnel-agent": "^0.6.0", + "uuid": "^3.3.2" + } + }, + "require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==" + }, + "require-main-filename": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", + "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==" + }, + "resolve": { + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "requires": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + } + }, + "rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "requires": { + "glob": "^7.1.3" + } + }, + "ripemd160": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz", + "integrity": "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==", + "requires": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1" + } + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" + }, + "safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" + }, + "sass": { + "version": "1.69.5", + "resolved": "https://registry.npmjs.org/sass/-/sass-1.69.5.tgz", + "integrity": "sha512-qg2+UCJibLr2LCVOt3OlPhr/dqVHWOa9XtZf2OjbLs/T4VPSJ00udtgJxH3neXZm+QqX8B+3cU7RaLqp1iVfcQ==", + "devOptional": true, + "requires": { + "chokidar": ">=3.0.0 <4.0.0", + "immutable": "^4.0.0", + "source-map-js": ">=0.6.2 <2.0.0" + } + }, + "sass-graph": { + "version": "2.2.5", + "resolved": "https://registry.npmjs.org/sass-graph/-/sass-graph-2.2.5.tgz", + "integrity": "sha512-VFWDAHOe6mRuT4mZRd4eKE+d8Uedrk6Xnh7Sh9b4NGufQLQjOrvf/MQoOdx+0s92L89FeyUUNfU597j/3uNpag==", + "requires": { + "glob": "^7.0.0", + "lodash": "^4.0.0", + "scss-tokenizer": "^0.2.3", + "yargs": "^13.3.2" + } + }, + "scheduler": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.20.2.tgz", + "integrity": "sha512-2eWfGgAqqWFGqtdMmcL5zCMK1U8KlXv8SQFGglL3CEtd0aDVDWgeF/YoCmvln55m5zSk3J/20hTaSBeSObsQDQ==", + "requires": { + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1" + } + }, + "scss-tokenizer": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/scss-tokenizer/-/scss-tokenizer-0.2.3.tgz", + "integrity": "sha512-dYE8LhncfBUar6POCxMTm0Ln+erjeczqEvCJib5/7XNkdw1FkUGgwMPY360FY0FgPWQxHWCx29Jl3oejyGLM9Q==", + "requires": { + "js-base64": "^2.1.8", + "source-map": "^0.4.2" + }, + "dependencies": { + "source-map": { + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.4.4.tgz", + "integrity": "sha512-Y8nIfcb1s/7DcobUz1yOO1GSp7gyL+D9zLHDehT7iRESqGSxjJ448Sg7rvfgsRJCnKLdSl11uGf0s9X80cH0/A==", + "requires": { + "amdefine": ">=0.0.4" + } + } + } + }, + "semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==" + }, + "set-blocking": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", + "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==" + }, + "set-function-length": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.1.1.tgz", + "integrity": "sha512-VoaqjbBJKiWtg4yRcKBQ7g7wnGnLV3M8oLvVWwOk2PdYY6PEFegR1vezXR0tw6fZGF9csVakIRjrJiy2veSBFQ==", + "requires": { + "define-data-property": "^1.1.1", + "get-intrinsic": "^1.2.1", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.0" + } + }, + "set-function-name": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.1.tgz", + "integrity": "sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==", + "requires": { + "define-data-property": "^1.0.1", + "functions-have-names": "^1.2.3", + "has-property-descriptors": "^1.0.0" + } + }, + "setimmediate": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", + "integrity": "sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==" + }, + "setprototypeof": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz", + "integrity": "sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==" + }, + "sha.js": { + "version": "2.4.11", + "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz", + "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==", + "requires": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "requires": { + "shebang-regex": "^3.0.0" + } + }, + "shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==" + }, + "shell-quote": { + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.7.2.tgz", + "integrity": "sha512-mRz/m/JVscCrkMyPqHc/bczi3OQHkLTqXHEFu0zDhK/qfv3UcOA4SVmRCLmos4bhjr9ekVQubj/R7waKapmiQg==" + }, + "side-channel": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", + "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "requires": { + "call-bind": "^1.0.0", + "get-intrinsic": "^1.0.2", + "object-inspect": "^1.9.0" + } + }, + "signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" + }, + "source-map": { + "version": "0.8.0-beta.0", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.8.0-beta.0.tgz", + "integrity": "sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA==", + "requires": { + "whatwg-url": "^7.0.0" + } + }, + "source-map-js": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", + "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", + "devOptional": true + }, + "spdx-correct": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz", + "integrity": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==", + "requires": { + "spdx-expression-parse": "^3.0.0", + "spdx-license-ids": "^3.0.0" + } + }, + "spdx-exceptions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", + "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==" + }, + "spdx-expression-parse": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", + "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", + "requires": { + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" + } + }, + "spdx-license-ids": { + "version": "3.0.16", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.16.tgz", + "integrity": "sha512-eWN+LnM3GR6gPu35WxNgbGl8rmY1AEmoMDvL/QD6zYmPWgywxWqJWNdLGT+ke8dKNWrcYgYjPpG5gbTfghP8rw==" + }, + "sshpk": { + "version": "1.18.0", + "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.18.0.tgz", + "integrity": "sha512-2p2KJZTSqQ/I3+HX42EpYOa2l3f8Erv8MWKsy2I9uf4wA7yFIkXRffYdsx86y6z4vHtV8u7g+pPlr8/4ouAxsQ==", + "requires": { + "asn1": "~0.2.3", + "assert-plus": "^1.0.0", + "bcrypt-pbkdf": "^1.0.0", + "dashdash": "^1.12.0", + "ecc-jsbn": "~0.1.1", + "getpass": "^0.1.1", + "jsbn": "~0.1.0", + "safer-buffer": "^2.0.2", + "tweetnacl": "~0.14.0" + } + }, + "stacktrace-parser": { + "version": "0.1.10", + "resolved": "https://registry.npmjs.org/stacktrace-parser/-/stacktrace-parser-0.1.10.tgz", + "integrity": "sha512-KJP1OCML99+8fhOHxwwzyWrlUuVX5GQ0ZpJTd1DFXhdkrvg1szxfHhawXUZ3g9TkXORQd4/WG68jMlQZ2p8wlg==", + "requires": { + "type-fest": "^0.7.1" + } + }, + "statuses": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", + "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==" + }, + "stdout-stream": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/stdout-stream/-/stdout-stream-1.4.1.tgz", + "integrity": "sha512-j4emi03KXqJWcIeF8eIXkjMFN1Cmb8gUlDYGeBALLPo5qdyTfA9bOtl8m33lRoC+vFMkP3gl0WsDr6+gzxbbTA==", + "requires": { + "readable-stream": "^2.0.1" + }, + "dependencies": { + "readable-stream": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "requires": { + "safe-buffer": "~5.1.0" + } + } + } + }, + "stream-browserify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/stream-browserify/-/stream-browserify-3.0.0.tgz", + "integrity": "sha512-H73RAHsVBapbim0tU2JwwOiXUj+fikfiaoYAKHF3VJfA0pe2BCzkhAHBlLG6REzE+2WNZcxOXjK7lkso+9euLA==", + "requires": { + "inherits": "~2.0.4", + "readable-stream": "^3.5.0" + } + }, + "stream-http": { + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/stream-http/-/stream-http-2.8.3.tgz", + "integrity": "sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==", + "requires": { + "builtin-status-codes": "^3.0.0", + "inherits": "^2.0.1", + "readable-stream": "^2.3.6", + "to-arraybuffer": "^1.0.0", + "xtend": "^4.0.0" + }, + "dependencies": { + "readable-stream": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "requires": { + "safe-buffer": "~5.1.0" + } + } + } + }, + "stream-parser": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/stream-parser/-/stream-parser-0.3.1.tgz", + "integrity": "sha512-bJ/HgKq41nlKvlhccD5kaCr/P+Hu0wPNKPJOH7en+YrJu/9EgqUF+88w5Jb6KNcjOFMhfX4B2asfeAtIGuHObQ==", + "requires": { + "debug": "2" + } + }, + "string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "requires": { + "safe-buffer": "~5.2.0" + } + }, + "string-hash": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/string-hash/-/string-hash-1.1.3.tgz", + "integrity": "sha512-kJUvRUFK49aub+a7T1nNE66EJbZBMnBgoC1UbCZ5n6bsZKBRga4KgBRTMn/pFkeCZSYtNeSyMxPDM0AXWELk2A==" + }, + "string-width": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", + "integrity": "sha512-0XsVpQLnVCXHJfyEs8tC0zpTVIr5PKKsQtkT29IwupnPTjtPmQ3xT/4yCREF9hYkV/3M3kzcUTSAZT6a6h81tw==", + "requires": { + "code-point-at": "^1.0.0", + "is-fullwidth-code-point": "^1.0.0", + "strip-ansi": "^3.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==" + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==", + "requires": { + "ansi-regex": "^2.0.0" + } + } + } + }, + "strip-ansi": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz", + "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==", + "requires": { + "ansi-regex": "^5.0.0" + } + }, + "strip-bom": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz", + "integrity": "sha512-kwrX1y7czp1E69n2ajbG65mIo9dqvJ+8aBQXOGVxqwvNbsXdFM6Lq37dLAY3mknUwru8CfcCbfOLL/gMo+fi3g==", + "requires": { + "is-utf8": "^0.2.0" + } + }, + "strip-indent": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-1.0.1.tgz", + "integrity": "sha512-I5iQq6aFMM62fBEAIB/hXzwJD6EEZ0xEGCX2t7oXqaKPIRgt4WruAQ285BISgdkP+HLGWyeGmNJcpIwFeRYRUA==", + "requires": { + "get-stdin": "^4.0.1" + } + }, + "styled-jsx": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/styled-jsx/-/styled-jsx-3.3.2.tgz", + "integrity": "sha512-daAkGd5mqhbBhLd6jYAjYBa9LpxYCzsgo/f6qzPdFxVB8yoGbhxvzQgkC0pfmCVvW3JuAEBn0UzFLBfkHVZG1g==", + "requires": { + "@babel/types": "7.8.3", + "babel-plugin-syntax-jsx": "6.18.0", + "convert-source-map": "1.7.0", + "loader-utils": "1.2.3", + "source-map": "0.7.3", + "string-hash": "1.1.3", + "stylis": "3.5.4", + "stylis-rule-sheet": "0.0.10" + }, + "dependencies": { + "source-map": { + "version": "0.7.3", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", + "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==" + } + } + }, + "stylis": { + "version": "3.5.4", + "resolved": "https://registry.npmjs.org/stylis/-/stylis-3.5.4.tgz", + "integrity": "sha512-8/3pSmthWM7lsPBKv7NXkzn2Uc9W7NotcwGNpJaa3k7WMM1XDCA4MgT5k/8BIexd5ydZdboXtU90XH9Ec4Bv/Q==" + }, + "stylis-rule-sheet": { + "version": "0.0.10", + "resolved": "https://registry.npmjs.org/stylis-rule-sheet/-/stylis-rule-sheet-0.0.10.tgz", + "integrity": "sha512-nTbZoaqoBnmK+ptANthb10ZRZOGC+EmTLLUxeYIuHNkEKcmKgXX1XWKkUBT2Ac4es3NybooPe0SmvKdhKJZAuw==", + "requires": {} + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "requires": { + "has-flag": "^3.0.0" + } + }, + "supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==" + }, + "tar": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/tar/-/tar-6.2.0.tgz", + "integrity": "sha512-/Wo7DcT0u5HUV486xg675HtjNd3BXZ6xDbzsCUZPt5iw8bTQ63bP0Raut3mvro9u+CUyq7YQd8Cx55fsZXxqLQ==", + "requires": { + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "minipass": "^5.0.0", + "minizlib": "^2.1.1", + "mkdirp": "^1.0.3", + "yallist": "^4.0.0" + }, + "dependencies": { + "mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==" + } + } + }, + "timers-browserify": { + "version": "2.0.12", + "resolved": "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.12.tgz", + "integrity": "sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ==", + "requires": { + "setimmediate": "^1.0.4" + } + }, + "tiny-warning": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/tiny-warning/-/tiny-warning-1.0.3.tgz", + "integrity": "sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==" + }, + "to-arraybuffer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz", + "integrity": "sha512-okFlQcoGTi4LQBG/PgSYblw9VOyptsz2KJZqc6qtgGdes8VktzUQkj4BI2blit072iS8VODNcMA+tvnS9dnuMA==" + }, + "to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==" + }, + "to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "requires": { + "is-number": "^7.0.0" + } + }, + "toidentifier": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz", + "integrity": "sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==" + }, + "toposort": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/toposort/-/toposort-2.0.2.tgz", + "integrity": "sha512-0a5EOkAUp8D4moMi2W8ZF8jcga7BgZd91O/yabJCFY8az+XSzeGyTKs0Aoo897iV1Nj6guFq8orWDS96z91oGg==" + }, + "tough-cookie": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", + "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", + "requires": { + "psl": "^1.1.28", + "punycode": "^2.1.1" + }, + "dependencies": { + "punycode": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==" + } + } + }, + "tr46": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-1.0.1.tgz", + "integrity": "sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==", + "requires": { + "punycode": "^2.1.0" + }, + "dependencies": { + "punycode": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==" + } + } + }, + "trim-newlines": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-1.0.0.tgz", + "integrity": "sha512-Nm4cF79FhSTzrLKGDMi3I4utBtFv8qKy4sq1enftf2gMdpqI8oVQTAfySkTz5r49giVzDj88SVZXP4CeYQwjaw==" + }, + "true-case-path": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/true-case-path/-/true-case-path-1.0.3.tgz", + "integrity": "sha512-m6s2OdQe5wgpFMC+pAJ+q9djG82O2jcHPOI6RNg1yy9rCYR+WD6Nbpl32fDpfC56nirdRy+opFa/Vk7HYhqaew==", + "requires": { + "glob": "^7.1.2" + } + }, + "ts-pnp": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/ts-pnp/-/ts-pnp-1.2.0.tgz", + "integrity": "sha512-csd+vJOb/gkzvcCHgTGSChYpy5f1/XKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q/ccdhQw==" + }, + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + }, + "tty-browserify": { + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.0.tgz", + "integrity": "sha512-JVa5ijo+j/sOoHGjw0sxw734b1LhBkQ3bvUGNdxnVXDCX81Yx7TFgnZygxrIIWn23hbfTaMYLwRmAxFyDuFmIw==" + }, + "tunnel-agent": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", + "integrity": "sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==", + "requires": { + "safe-buffer": "^5.0.1" + } + }, + "tweetnacl": { + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", + "integrity": "sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==" + }, + "type-fest": { + "version": "0.7.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.7.1.tgz", + "integrity": "sha512-Ne2YiiGN8bmrmJJEuTWTLJR32nh/JdL1+PSicowtNb0WFpn59GK8/lfD61bVtzguz7b3PBt74nxpv/Pw5po5Rg==" + }, + "typed-styles": { + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/typed-styles/-/typed-styles-0.0.7.tgz", + "integrity": "sha512-pzP0PWoZUhsECYjABgCGQlRGL1n7tOHsgwYv3oIiEpJwGhFTuty/YNeduxQYzXXa3Ge5BdT6sHYIQYpl4uJ+5Q==" + }, + "uncontrollable": { + "version": "7.2.1", + "resolved": "https://registry.npmjs.org/uncontrollable/-/uncontrollable-7.2.1.tgz", + "integrity": "sha512-svtcfoTADIB0nT9nltgjujTi7BzVmwjZClOmskKu/E8FW9BXzg9os8OLr4f8Dlnk0rYWJIWr4wv9eKUXiQvQwQ==", + "requires": { + "@babel/runtime": "^7.6.3", + "@types/react": ">=16.9.11", + "invariant": "^2.2.4", + "react-lifecycles-compat": "^3.0.4" + } + }, + "unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==" + }, + "uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "requires": { + "punycode": "^2.1.0" + }, + "dependencies": { + "punycode": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==" + } + } + }, + "url": { + "version": "0.11.3", + "resolved": "https://registry.npmjs.org/url/-/url-0.11.3.tgz", + "integrity": "sha512-6hxOLGfZASQK/cijlZnZJTq8OXAkt/3YGfQX45vvMYXpZoo8NdWZcY73K108Jf759lS1Bv/8wXnHDTSz17dSRw==", + "requires": { + "punycode": "^1.4.1", + "qs": "^6.11.2" + }, + "dependencies": { + "qs": { + "version": "6.11.2", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.2.tgz", + "integrity": "sha512-tDNIz22aBzCDxLtVH++VnTfzxlfeK5CbqohpSqpJgj1Wg/cQbStNAz3NuqCs5vV+pjBsK4x4pN9HlVh7rcYRiA==", + "requires": { + "side-channel": "^1.0.4" + } + } + } + }, + "use-subscription": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/use-subscription/-/use-subscription-1.5.1.tgz", + "integrity": "sha512-Xv2a1P/yReAjAbhylMfFplFKj9GssgTwN7RlcTxBujFQcloStWNDQdc4g4NRWH9xS4i/FDk04vQBptAXoF3VcA==", + "requires": { + "object-assign": "^4.1.1" + } + }, + "util": { + "version": "0.11.1", + "resolved": "https://registry.npmjs.org/util/-/util-0.11.1.tgz", + "integrity": "sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ==", + "requires": { + "inherits": "2.0.3" + }, + "dependencies": { + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==" + } + } + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" + }, + "uuid": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", + "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==" + }, + "validate-npm-package-license": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", + "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", + "requires": { + "spdx-correct": "^3.0.0", + "spdx-expression-parse": "^3.0.0" + } + }, + "verror": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", + "integrity": "sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==", + "requires": { + "assert-plus": "^1.0.0", + "core-util-is": "1.0.2", + "extsprintf": "^1.2.0" + } + }, + "vm-browserify": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vm-browserify/-/vm-browserify-1.1.2.tgz", + "integrity": "sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==" + }, + "warning": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/warning/-/warning-4.0.3.tgz", + "integrity": "sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==", + "requires": { + "loose-envify": "^1.0.0" + } + }, + "watchpack": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.1.1.tgz", + "integrity": "sha512-Oo7LXCmc1eE1AjyuSBmtC3+Wy4HcV8PxWh2kP6fOl8yTlNS7r0K9l1ao2lrrUza7V39Y3D/BbJgY8VeSlc5JKw==", + "requires": { + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.1.2" + } + }, + "webidl-conversions": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.2.tgz", + "integrity": "sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==" + }, + "whatwg-url": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-7.1.0.tgz", + "integrity": "sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==", + "requires": { + "lodash.sortby": "^4.7.0", + "tr46": "^1.0.1", + "webidl-conversions": "^4.0.2" + } + }, + "which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "requires": { + "isexe": "^2.0.0" + } + }, + "which-module": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.1.tgz", + "integrity": "sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==" + }, + "wide-align": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz", + "integrity": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==", + "requires": { + "string-width": "^1.0.2 || 2 || 3 || 4" + } + }, + "wrap-ansi": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz", + "integrity": "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==", + "requires": { + "ansi-styles": "^3.2.0", + "string-width": "^3.0.0", + "strip-ansi": "^5.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", + "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==" + }, + "is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==" + }, + "string-width": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "requires": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + } + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "requires": { + "ansi-regex": "^4.1.0" + } + } + } + }, + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" + }, + "xtend": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", + "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==" + }, + "y18n": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz", + "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==" + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + }, + "yargs": { + "version": "13.3.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-13.3.2.tgz", + "integrity": "sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==", + "requires": { + "cliui": "^5.0.0", + "find-up": "^3.0.0", + "get-caller-file": "^2.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^3.0.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^13.1.2" + }, + "dependencies": { + "ansi-regex": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", + "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==" + }, + "find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "requires": { + "locate-path": "^3.0.0" + } + }, + "is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==" + }, + "locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "requires": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + } + }, + "p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "requires": { + "p-limit": "^2.0.0" + } + }, + "path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==" + }, + "string-width": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "requires": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + } + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "requires": { + "ansi-regex": "^4.1.0" + } + } + } + }, + "yargs-parser": { + "version": "13.1.2", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.2.tgz", + "integrity": "sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==", + "requires": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + }, + "dependencies": { + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==" + } + } + }, + "yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==" + }, + "yup": { + "version": "0.32.11", + "resolved": "https://registry.npmjs.org/yup/-/yup-0.32.11.tgz", + "integrity": "sha512-Z2Fe1bn+eLstG8DRR6FTavGD+MeAwyfmouhHsIUgaADz8jvFKbO/fXc2trJKZg+5EBjh4gGm3iU/t3onKlXHIg==", + "requires": { + "@babel/runtime": "^7.15.4", + "@types/lodash": "^4.14.175", + "lodash": "^4.17.21", + "lodash-es": "^4.17.21", + "nanoclone": "^0.2.1", + "property-expr": "^2.0.4", + "toposort": "^2.0.2" + }, + "dependencies": { + "@babel/runtime": { + "version": "7.23.2", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.2.tgz", + "integrity": "sha512-mM8eg4yl5D6i3lu2QKPuPH4FArvJ8KhTofbE7jwMUv9KX5mBvwPAqnV3MlyBNqdp9RyRKP6Yck8TrfYrPvX3bg==", + "requires": { + "regenerator-runtime": "^0.14.0" + } + }, + "regenerator-runtime": { + "version": "0.14.0", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.0.tgz", + "integrity": "sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==" + } + } + } + } +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..9f4b18e --- /dev/null +++ b/package.json @@ -0,0 +1,32 @@ +{ + "name": "Intez", + "version": "0.1.0", + "private": true, + "scripts": { + "dev": "next dev -p 5000", + "build": "next build", + "start": "next start", + "sass": "node-sass --watch public/scss/style.scss public/css/style.css --source-map public/css/style.css.map" + }, + "dependencies": { + "@fortawesome/fontawesome-svg-core": "^6.4.2", + "bootstrap": "^5.3.2", + "chart.js": "^2.9.4", + "formik": "^2.2.6", + "next": "10.0.9", + "node-sass": "^5.0.0", + "react": "17.0.2", + "react-bootstrap": "^2.9.1", + "react-chartjs-2": "^2.11.1", + "react-dom": "17.0.2", + "react-perfect-scrollbar": "^1.5.8", + "react-redux": "^7.2.3", + "reactstrap": "^8.9.0", + "redux": "^4.0.5", + "redux-thunk": "^2.3.0", + "yup": "^0.32.9" + }, + "devDependencies": { + "sass": "^1.69.5" + } +} diff --git a/pages/_app.js b/pages/_app.js new file mode 100644 index 0000000..24e0e6a --- /dev/null +++ b/pages/_app.js @@ -0,0 +1,23 @@ +import { Provider } from 'react-redux'; +import '../public/css/style.css'; +import store from '../redux/store'; +import 'react-perfect-scrollbar/dist/css/styles.css'; +import Head from 'next/head'; + + +function MyApp({ Component, pageProps }) { + return ( + + + + + + + + ) + } + +export default MyApp diff --git a/pages/api/hello.js b/pages/api/hello.js new file mode 100644 index 0000000..9987aff --- /dev/null +++ b/pages/api/hello.js @@ -0,0 +1,5 @@ +// Next.js API route support: https://nextjs.org/docs/api-routes/introduction + +export default (req, res) => { + res.status(200).json({ name: 'John Doe' }) +} diff --git a/pages/balance.js b/pages/balance.js new file mode 100644 index 0000000..16a7a09 --- /dev/null +++ b/pages/balance.js @@ -0,0 +1,178 @@ +import { useState } from "react"; +import { connect } from "react-redux"; +import Bills from '../components/elements/Bills'; +import Layout from "../components/layout/Layout"; +import LineInvestment from "./../components/chart/LineInvestment"; +import BalanceDetails from './../components/elements/BalanceDetails'; + +function Balance({ investmentData }) { + const [open, setOpen] = useState("a1"); + return ( + <> + +
    +
    +
    +
    +

    Balance Details

    +
    +
    + +
    +
    +
    +
    +
    +
    +

    Bills

    + See More +
    +
    + +
    +
    +
    +
    +
    +
    +

    Investment

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

    Debit Card

    + +
    +
    +
    1234
    +
    5678
    +
    7890
    +
    9875
    +
    +
    +
    Saiful Islam
    +
    + EXP: + 12/21 +
    +
    + +
    +
    +
    +
    +

    Status

    +

    + Active +

    +
    +
    +

    Currency

    +

    + USD +

    +
    +
    +
    +
    +
    +

    Credit Limit

    +

    + + 2000 USD + +

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

    Debit Card

    + +
    +
    +
    1234
    +
    5678
    +
    7890
    +
    9875
    +
    +
    +
    Saiful Islam
    +
    + EXP: + 12/21 +
    +
    +
    +
    +
    +
    +

    Status

    +

    + Active +

    +
    +
    +

    Currency

    +

    + USD +

    +
    +
    +
    +
    +
    +

    Credit Limit

    +

    + + 1500/2000 USD + +

    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + ); +} +const mapStateToProps = (state) => ({ + investmentData: state.LineInvestment.investment, +}); +export default connect(mapStateToProps, {})(Balance); diff --git a/pages/bill.js b/pages/bill.js new file mode 100644 index 0000000..32e03d3 --- /dev/null +++ b/pages/bill.js @@ -0,0 +1,98 @@ +import Layout from "../components/layout/Layout"; +import InvoiceKPI from "../components/widget/InvoiceKPI"; +import PaymentAddKPI from "../components/widget/PaymentAddKPI"; +import StackedBarChart from "./../components/chart/StackedBarChart"; + +function Bill() { + return ( + <> + +
    +
    + + + +
    +
    + + +
    + + + +
    +
    +
    +
    +
    +

    Expenses

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

    Unpaid Bills

    +
    +
    +
    +
      +
    • +

      Service

      +
      Payoneer
      +
    • +
    • +

      Issued

      +
      + March 17, 2021 +
      +
    • +
    • +

      Payment Due

      +
      17 Days
      +
    • +
    • +

      Paid

      +
      0.00
      +
    • +
    • +

      + Amount to pay +

      +
      $ 532.69
      +
    • +
    • +

      + Payment Method +

      +
      Paypal
      +
    • +
    +
    +
    +
    +
    + +
    +
    + + ); +} +export default Bill; diff --git a/pages/create-invoice.js b/pages/create-invoice.js new file mode 100644 index 0000000..ee4bff6 --- /dev/null +++ b/pages/create-invoice.js @@ -0,0 +1,101 @@ +import Layout from "../components/layout/Layout"; + +function CreateInvoice() { + return ( + <> + +
    +
    +
    +
    +

    Create Invoice

    +
    + Save + Send +
    +
    +
    +
    + +
    +
    +
    + + +
    +
    + + +
    +
    +
    +
    + + +
    +
    + + +
    +
    +
    +
    + +
    +
    + + +
    +
    + + +
    +
    + + +
    +
    + +
    +
    +
    +
    + +
    +
    + +
    +
    + +
    +
    + +
    +
    + +
    + + +
    +
    + +
    +
    +
    +
    + +
    + + ); +} +export default CreateInvoice; diff --git a/pages/demo.js b/pages/demo.js new file mode 100644 index 0000000..841af8a --- /dev/null +++ b/pages/demo.js @@ -0,0 +1,359 @@ +import Link from "next/link"; +import HeaderLanding from "../components/layout/HeaderLanding"; +function Demo() { + return ( + <> + +
    +
    +
    +
    +
    +

    + Intez - Dashboard React App +

    +

    + Intez is the complete UX & UI dashboard for + online payment. Here included wallet, payment, + invoice, and all user setting pages + including profile, application, activity, + payment method, api, sign in & sign up etc. +

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

    Pages

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

    Dashboard

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

    Wallet

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

    Payment

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

    Invoice

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

    Create Invoice

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

    Notification

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

    Profile Settings

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

    User Profile

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

    Application

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

    Security

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

    Activity

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

    Payment Method

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

    Api

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

    Sign in Page

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

    Sign up page

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

    Locked Page

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

    1 of 2-Step-Verification

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

    2 of 2-Step-Verification

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

    Email Verification

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

    Reset Page

    +
    +
    + +
    +
    +
    + + ); +} +export default Demo; diff --git a/pages/index.js b/pages/index.js new file mode 100644 index 0000000..f9e0b03 --- /dev/null +++ b/pages/index.js @@ -0,0 +1,355 @@ +import { connect } from "react-redux"; +import DoughnutChart from "../components/chart/DoughnutChart"; +import BarChart from "../components/chart/LineChart"; +import Layout from "../components/layout/Layout"; +import BalanceDetails from "./../components/elements/BalanceDetails"; +import GoalsBudget from "./../components/elements/GoalsBudget"; +import TransactionHistory from "./../components/elements/TransactionHistory"; +import NewConnection from "../components/widget/NewConnection"; +import Link from "next/link"; +import PaymentAddKPI from "../components/widget/PaymentAddKPI"; +import PaymentKPI from "../components/widget/PaymentKPI"; +import SupportKPI from "../components/widget/SupportKPI"; +import InvoiceKPI from "../components/widget/InvoiceKPI"; + +function Home({ lineData, doughnutData }) { + return ( + <> + +
    + + +
    +
    + + +
    +
    +
    +
    +
    +

    Water Consumption Levels

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

    Stats

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

    432568

    +

    Last Balance

    +
    + + {/*

    + +168.001%{" "} + + + +

    */} +
    +
    + +
    +
    +
    + + + +
    +
    +

    245860

    +

    Hold Balance

    + {/*

    + +168.001%{" "} + + + +

    */} +
    +
    +
    + +
    +
    +
    + + + +
    +
    +

    25.35

    +

    Current Rate

    + {/*

    + -15.034%{" "} + + + +

    */} +
    +
    +
    +
    +
    +
    + + + +
    +
    +

    22.56

    +

    Bounce Rate

    + {/*

    + -15.034%{" "} + + + +

    */} +
    +
    +
    +
    +
    +
    +
    + +
    +
    +
    +
    +

    Unpaid Bills

    +
    +
    +
    +
      +
    • +

      Service

      +
      Youtube Chanel
      +
    • +
    • +

      Issued

      +
      March 17, 2021
      +
    • +
    • +

      Payment Due

      +
      17 Days
      +
    • +
    • +

      Paid

      +
      0.00
      +
    • +
    • +

      Amount to pay

      +
      $ 532.69
      +
    • +
    • +

      Payment Method

      +
      Paypal
      +
    • +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +

    Debit Card

    + +
    +
    +
    1234
    +
    5678
    +
    7890
    +
    9875
    +
    +
    +
    Saiful Islam
    +
    + EXP: + 12/21 +
    +
    + + {/*
    +
    +
    +
    +

    Status

    +

    + Active +

    +
    +
    +

    Currency

    +

    + USD +

    +
    +
    +
    +
    +
    +

    Credit Limit

    +

    + + 2000 USD + +

    +
    +
    +
    +
    +
    +
    */} +
    +
    +
    +
    +
    +

    Debit Card

    + +
    +
    +
    1234
    +
    5678
    +
    7890
    +
    9875
    +
    +
    +
    Saiful Islam
    +
    + EXP: + 12/21 +
    +
    + {/*
    +
    +
    +
    +

    Status

    +

    + Active +

    +
    +
    +

    Currency

    +

    + USD +

    +
    +
    +
    +
    +
    +

    Credit Limit

    +

    + + 1500/2000 USD + +

    +
    +
    +
    +
    +
    +
    */} +
    +
    +
    +
    + +
    +
    +
    +

    Balance Details

    +
    +
    + +
    +
    +
    + +
    +
    +
    +

    Statistics

    +
    +
    + +
    +
    +
    +
    +
    +
    +

    Transaction History

    + See more +
    +
    + +
    +
    +
    +
    +
    +
    +

    Goals Budget

    +
    +
    + +
    +
    +
    +
    +
    +
    + + ); +} + +const mapStateToProps = (state) => ({ + lineData: state.LineChart.expenses, + doughnutData: state.DoughnutChart.statistics, +}); +export default connect(mapStateToProps, {})(Home); diff --git a/pages/invoice.js b/pages/invoice.js new file mode 100644 index 0000000..2475bd2 --- /dev/null +++ b/pages/invoice.js @@ -0,0 +1,257 @@ +import Link from "next/link"; +import Layout from "../components/layout/Layout"; +function Invoice() { + return ( + <> + +
    +
    +
    +
    + + + +
    +
    +

    483

    +

    Total Invoices

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

    273

    +

    Paid Invoices

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

    121

    +

    Unpaid Invoices

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

    89

    +

    Canceled Invoices

    +
    +
    +
    +
    +
    +
    +

    Invoice

    + + + + + + Create Invoice + + +
    +
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + +
    +
    ClientAmountStatusDue
    +
    + +
    +
    + + Weston P. Thomas + $254 + + Paid + + February 16, 2021
    +
    + +
    +
    + + William D. Gibson + $254 + + Paid + + December 21, 2021
    +
    + +
    +
    + + John C. Adams + $254 + + Paid + + March 21, 2021
    +
    + +
    +
    + + John L. Foster + $254 + + Due + + April 29, 2021
    +
    + +
    +
    + + Terry P. Camacho + $254 + + Cancel + + November 26, 2021
    +
    +
    +
    +
    +
    +
    +
    + + ); +} +export default Invoice; diff --git a/pages/lock.js b/pages/lock.js new file mode 100644 index 0000000..0d3bbf2 --- /dev/null +++ b/pages/lock.js @@ -0,0 +1,50 @@ +import Link from "next/link"; +function Lock() { + return ( + <> + +
    +
    +
    +
    +
    + + + + + +

    Locked

    +
    +
    +
    +
    +
    + + + +
    +
    + +
    +
    +
    +
    +
    +
    +
    +
    + + ); +} +export default Lock; diff --git a/pages/notification.js b/pages/notification.js new file mode 100644 index 0000000..ffdd618 --- /dev/null +++ b/pages/notification.js @@ -0,0 +1,83 @@ +import Layout from "../components/layout/Layout"; + +function Notification() { + return ( + <> + + + + + ); +} +export default Notification; diff --git a/pages/otp1.js b/pages/otp1.js new file mode 100644 index 0000000..7cd968a --- /dev/null +++ b/pages/otp1.js @@ -0,0 +1,837 @@ +import Link from "next/link"; +function Otp1() { + return ( + <> +
    +
    +
    +
    +
    + + + + + +

    + 2-Step Verification +

    +
    +
    +
    +

    + Enter the verification code generated by + your phone ending in +xxx xxxxxxxx60. +

    +
    +
    + + +
    +
    + +
    +
    + + +880 + +
    + +
    +
    +
    + + Security is critical in Xtrader. + to help keep your account safe, + we'll text you a verification + code when you sign in on a new + device + +
    +
    + +
    +
    +
    +

    + Don't get code? + + + Resend + + +

    +
    +
    +
    +
    +
    +
    +
    + + ); +} +export default Otp1; diff --git a/pages/otp2.js b/pages/otp2.js new file mode 100644 index 0000000..d085100 --- /dev/null +++ b/pages/otp2.js @@ -0,0 +1,104 @@ +import Link from "next/link"; +function Otp2() { + return ( + <> +
    +
    +
    +
    +
    + + Please enter verification token from your + device + + + + +
    +
    + + + + + +

    + 2-Step Verification +

    +
    +
    +
    +

    + Enter the verification code generated by + your phone ending in +xxx xxxxxxxx60. +

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

    + Don't get code? + + + Resend + + +

    +
    +
    +
    +
    +
    +
    +
    + + ); +} +export default Otp2; diff --git a/pages/profile.js b/pages/profile.js new file mode 100644 index 0000000..10f4479 --- /dev/null +++ b/pages/profile.js @@ -0,0 +1,188 @@ +import Link from "next/link"; +import Layout from "../components/layout/Layout"; +function Profile() { + return ( + <> + +
    +
    +
    +
    +
    + +
    +

    Welcome, Jannatul Maowa!

    +

    + Looks like you are not verified yet. Verify + yourself. +

    +
    +
    + +
    +
    +
    +
    +
    +
    +

    Billing Information

    +
    +
    +

    Bill

    #12344

    +

    Date:

    August 1, 2023

    +

    Amount:

    $72.50

    +

    Due Date:

    September 30, 2023

    +
    +
    +

    Amount Due:

    $75.00

    +

    Paperless Billing:

    Enabled

    +

    Billing Frequency:

    Monthly

    +
    +
    +
    +
    +
    +
    +
    +
    +

    Download App

    +
    +
    +
    +
    Get Verified On Our Mobile App
    +

    + Verifying your identity on our mobile + app more secure, faster, and reliable. +

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

    VERIFY & UPGRADE

    +
    +
    +
    + Account Status : + + Pending + +
    +

    + Your account is unverified. Get verified to + enable funding, trading, and withdrawal. +

    + + Get Verified + +
    +
    +
    + + +
    +
    +
    +

    Earn 30% Commission

    +
    +
    +

    + Refer your friends and earn 30% of their + trading fees. +

    + + Referral Program + +
    +
    +
    + +
    +
    +
    +

    Information

    + + Edit + +
    +
    +
    +
    +
    + USER ID +

    818778

    +
    +
    +
    +
    + EMAIL ADDRESS +

    email@example.com

    +
    +
    +
    +
    + COUNTRY OF RESIDENCE +

    India

    +
    +
    +
    +
    + JOINED SINCE +

    20/10/2020

    +
    +
    +
    +
    + TYPE +

    Personal

    +
    +
    +
    +
    +
    +
    + + +
    +
    + + ); +} +export default Profile; diff --git a/pages/reset.js b/pages/reset.js new file mode 100644 index 0000000..30166b7 --- /dev/null +++ b/pages/reset.js @@ -0,0 +1,63 @@ +import Link from "next/link"; +function Reset() { + return ( + <> +
    +
    +
    +
    +
    + + + + + +

    Reset Password

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

    + Don't get code? + + + Resend + + +

    +
    +
    +
    +
    +
    +
    +
    + + ); +} +export default Reset; diff --git a/pages/services.js b/pages/services.js new file mode 100644 index 0000000..e447539 --- /dev/null +++ b/pages/services.js @@ -0,0 +1,431 @@ +import React from "react"; +import Layout from "../components/layout/Layout"; +import Button from "react-bootstrap/Button"; +import Modal from "react-bootstrap/Modal"; +import { useState } from "react"; +import { Form } from "reactstrap"; +function services() { + const [show, setShow] = useState(false); + + const handleClose = () => setShow(false); + const handleShow = () => setShow(true); + return ( + +
    +
    +
    +
    + + + +
    +
    +

    483

    +

    Total Requests

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

    273

    +

    Completed Requests

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

    121

    +

    Pending Requests

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

    89

    +

    Canceled Requests

    +
    +
    +
    +
    + +
    +

    Service Request

    +
    +
    +
    +
    + +
    +
    + ABCD4556464QWE +
    +
    + Completed +
    +
    +
    +
    + Water Leakage +
    +
    + DT:23/5/23 +
    +
    +
    {" "} +
    +
    +
    + ABCD4556464QWE +
    +
    + Pending +
    +
    +
    +
    + Water Leakage +
    +
    + DT:25/5/23 +
    +
    +
    {" "} +
    +
    +
    +

    Services Request

    + +
    + + + New Service Request + + +
    +
    + + +
    Looks good!
    +
    +
    + + +
    Looks good!
    +
    +
    + + +
    + Please select a valid state. +
    +
    +
    + + +
    + Please provide Building no / Street. +
    +
    +
    + + +
    + Please provide a valid city. +
    +
    + +
    + + +
    + Please provide a valid zip. +
    +
    +
    +
    + + Upload +
    +
    +
    +
    + + +
    + You must agree before submitting. +
    +
    +
    +
    +
    + + + +
    +
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + +
    +
    Application NoServiceNameDocumentsMobileStatus
    +
    + +
    +
    ABCD4556464QWENew Water ConnectionJhonFile_090-15678909876 + + {" "} + Completed + +
    +
    + +
    +
    ABMK846493CFENew Sewerage ConnectionJhonFile_08982_-15678907865 + + Cancel + +
    +
    + +
    +
    ABGU745632CFEWater LeakRajeshFile_08_88-15678903491 + + Completed + +
    +
    + +
    +
    ABJK879125HNEWater ShortageKaranFile_070-15678905672 + + Pending + +
    +
    + +
    +
    ABTY876545JIENew Water ConnectionRathod5678901232 + + Completed + +
    +
    + +
    +
    ABQW345678RTENew Sewerage ConnectionSmith5678903456 + + Pending + +
    +
    +
    +
    +
    +
    +
    +
    + ); +} + +export default services; diff --git a/pages/settings-activity.js b/pages/settings-activity.js new file mode 100644 index 0000000..d369b16 --- /dev/null +++ b/pages/settings-activity.js @@ -0,0 +1,409 @@ + +import Layout from "../components/layout/Layout"; +import SettingsMenu from "./../components/layout/SettingsMenu"; + +function SettingsActivity() { + return ( + <> + + +
    +
    +
    +
    +

    Third-Party Applications

    +
    +
    +
    + + + +
    +
    You haven't authorized any applications yet. +
    +

    After connecting an application with your account, you can + manage or revoke its access here.

    + Authorize now +
    +
    +
    +
    + +
    +
    +

    Web Sessions

    + + These sessions are currently signed in to your account. Sign out + all other sessions +
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Signed InBrowserIP AddressNearCurrent
    1 day agoChrome (Windows)250.364.239.254Bangladesh, Dhaka + + +
    1 day agoChrome (Windows)250.364.239.254Bangladesh, Dhaka + + +
    1 day agoChrome (Windows)250.364.239.254Bangladesh, Dhaka + + +
    +
    +
    +
    + + +
    +
    +

    Confirmed Devices

    + + These devices are currently allowed to access your account. + Remove all other devices +
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    ConfirmedBrowserIP AddressNearCurrent
    1 day agoChrome (Windows) 250.364.239.254Bangladesh, Dhaka + + +
    8 days agoChrome (Windows) 250.364.239.254Bangladesh, Dhaka + + +
    15 days agoChrome (Windows) 250.364.239.254Bangladesh, Dhaka + + +
    +
    +
    +
    + + +
    +
    +

    Account Activity

    + + Recent activity on your account. +
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    ActionSourceIP AddressLocationWhen
    verified second factorapi157.119.239.254Bangladesh + about 1 hour ago +
    verified second factorapi157.119.239.254Bangladesh + about 2 hours + ago +
    second factor failureapi157.119.239.254Bangladesh + about 2 hours + ago +
    device confirmation completedweb157.119.239.254Bangladesh + 1 day ago +
    signinweb157.119.239.254Bangladesh + 1 day ago +
    verified second factorweb157.119.239.254Bangladesh + 1 day ago +
    signoutweb157.119.239.214Bangladesh + 8 days ago +
    signinweb157.119.239.214Bangladesh + 8 days ago +
    verified second factorweb157.119.239.214Bangladesh + 8 days ago +
    signoutapi157.119.239.214Bangladesh + 8 days ago +
    signoutapi157.119.239.214Bangladesh + 8 days ago +
    device confirmation completedweb157.119.239.214Bangladesh + 8 days ago +
    signinweb157.119.239.214Bangladesh + 8 days ago +
    verified second factorweb157.119.239.214Bangladesh + 8 days ago +
    signoutapi157.119.239.214Bangladesh + 15 days ago +
    verified second factorweb157.119.239.214Bangladesh + 15 days ago +
    signinweb157.119.239.214Bangladesh + 15 days ago +
    signoutapi157.119.239.214Bangladesh + 15 days ago +
    verified second factorweb23.106.249.39Singapore + 15 days ago +
    verified second factorapi157.119.239.214Bangladesh + 15 days ago +
    phone verifiedapi157.119.239.214Bangladesh + 15 days ago +
    phone addedapi157.119.239.214Bangladesh + 15 days ago +
    signinapi157.119.239.214Bangladesh + 15 days ago +
    +
    +
    +
    + + +
    +
    +

    Close Account

    +
    +
    +

    Withdraw funds and close your Xtrader account - this + cannot be undone

    + Close Account +
    +
    + +
    +
    +
    + + ); +} +export default SettingsActivity; diff --git a/pages/settings-api.js b/pages/settings-api.js new file mode 100644 index 0000000..aa44745 --- /dev/null +++ b/pages/settings-api.js @@ -0,0 +1,121 @@ + +import Layout from "../components/layout/Layout"; +import CreateApi from './../components/form/CreateApi'; +import SettingsMenu from "./../components/layout/SettingsMenu"; +function SettingsApi() { + return ( + <> + + + +
    +
    +
    +
    +

    Create API Key

    +
    +
    + +
    +
    +
    +
    +
    +
    +

    Your API Keys

    +
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    KeyStatusAction
    69e387f1-31c3-45ad-9c68-5a51e5e78b43 +
    + +
    +
    + + + +
    69e387f1-31c3-45ad-9c68-5a51e5e78b43 +
    + +
    +
    + + + +
    69e387f1-31c3-45ad-9c68-5a51e5e78b43 +
    + +
    +
    + + + +
    69e387f1-31c3-45ad-9c68-5a51e5e78b43 +
    + +
    +
    + + + +
    69e387f1-31c3-45ad-9c68-5a51e5e78b43 +
    + +
    +
    + + + +
    +
    +
    +
    +
    +
    +
    + + ); +} +export default SettingsApi; diff --git a/pages/settings-application.js b/pages/settings-application.js new file mode 100644 index 0000000..027286e --- /dev/null +++ b/pages/settings-application.js @@ -0,0 +1,33 @@ +import Preferences from "../components/form/Preferences"; +import Layout from "../components/layout/Layout"; +import SettingsMenu from "./../components/layout/SettingsMenu"; +function SettingsPreferences() { + return ( + <> + + + +
    +
    +
    +
    +

    Preperences

    +
    +
    + +
    +
    +
    +
    +
    + + ); +} +export default SettingsPreferences; diff --git a/pages/settings-payment-method.js b/pages/settings-payment-method.js new file mode 100644 index 0000000..a4f07df --- /dev/null +++ b/pages/settings-payment-method.js @@ -0,0 +1,69 @@ + +import Layout from "../components/layout/Layout"; +import SettingsMenu from "./../components/layout/SettingsMenu"; +function SettingsPayment() { + return ( + <> + + + +
    +
    +
    +
    +

    Add a payment method

    +
    +
    +
    +
    + + + +
    +
    Bank of America
    + Bank **************5421 +
    + Verified +
    +
    + +
    +
    +
    +
    + + + +
    +
    Master Card
    + Credit Card *********5478 +
    + Verified +
    +
    + +
    + +
    + + +
    + +
    +
    +
    +
    +
    + + ); +} +export default SettingsPayment; diff --git a/pages/settings-profile.js b/pages/settings-profile.js new file mode 100644 index 0000000..626c46b --- /dev/null +++ b/pages/settings-profile.js @@ -0,0 +1,55 @@ +import UpdateInfo from "../components/form/UpdateInfo"; +import Layout from "../components/layout/Layout"; +import PersonalInfo from "./../components/form/PersonalInfo"; +import UpdateAvatar from "./../components/form/UpdateAvatar"; +import SettingsMenu from "./../components/layout/SettingsMenu"; + +function SettingsProfile() { + return ( + <> + + +
    +
    +
    +
    +

    User Profile

    +
    +
    + +
    +
    +
    +
    +
    +
    +

    Update Profile

    +
    +
    + +
    +
    +
    +
    +
    +
    +

    Personal Information

    +
    +
    + +
    +
    +
    +
    +
    + + ); +} +export default SettingsProfile; diff --git a/pages/settings-security.js b/pages/settings-security.js new file mode 100644 index 0000000..e6d8f06 --- /dev/null +++ b/pages/settings-security.js @@ -0,0 +1,97 @@ + +import Layout from "../components/layout/Layout"; +import SettingsMenu from "./../components/layout/SettingsMenu"; +function SettingsSecurity() { + return ( + <> + + + +
    +
    +
    +
    +

    2-step verification

    +
    +
    +
    +
    + + + +
    +

    +xxx xxxxxxxx60

    + Keep your primary phone number up-to-date +
    + Required +
    +
    + +
    +
    +
    +
    + +
    +

    hello@example.com

    + Keep your primary email up-to-date +
    + Required +
    +
    + +
    +
    +
    +
    + +
    +

    *************

    + You can change your password +
    + Required +
    +
    + +
    + +
    +
    +
    +
    +
    +
    +

    Identity verification

    +
    +
    +
    +
    + + + +
    +

    xxx xxxxx xxx40

    + Social Security Number +
    + Verified +
    +
    + +
    +
    +
    +
    +
    +
    + + ); +} +export default SettingsSecurity; diff --git a/pages/signin.js b/pages/signin.js new file mode 100644 index 0000000..fa7f199 --- /dev/null +++ b/pages/signin.js @@ -0,0 +1,55 @@ +import Link from "next/link"; +import SigninForm from "../components/form/SigninForm"; +import { COMPANY_NAME } from "../helpers/helpers"; +import Layoutform from "../components/form/authselection/layoutform"; + +function Signin() { + return ( + <> +
    +
    +
    +
    + +
    + +
    + {COMPANY_NAME} +
    + + + {/*

    +
    Sign in as
    +
    + +
    +

    */} +
    +
    +
    + + + +

    + Don't have an account? + + Sign up + +

    + +
    +
    + +
    +
    +
    +
    + + ); +} +export default Signin; diff --git a/pages/signup.js b/pages/signup.js new file mode 100644 index 0000000..cc3c2f1 --- /dev/null +++ b/pages/signup.js @@ -0,0 +1,54 @@ +import Link from "next/link"; +import SignupForm from "./../components/form/SignupForm"; +import { COMPANY_NAME } from "../helpers/helpers"; + +function Signin() { + return ( + <> +
    +
    +
    +
    + +
    + +
    + {COMPANY_NAME} +
    + + + {/*

    +
    Sign in as
    +
    + +
    +

    */} +
    +
    +
    + + + +

    + Don't have an account? + + Sign up + +

    + +
    +
    + +
    +
    +
    +
    + + ); +} +export default Signin; diff --git a/pages/test.js b/pages/test.js new file mode 100644 index 0000000..b257037 --- /dev/null +++ b/pages/test.js @@ -0,0 +1,21 @@ + +import Layout from "../components/layout/Layout"; + +function Test() { + return ( + <> + + + + + + ); +} +export default Test; diff --git a/pages/verify-email.js b/pages/verify-email.js new file mode 100644 index 0000000..2e15372 --- /dev/null +++ b/pages/verify-email.js @@ -0,0 +1,51 @@ +import Link from "next/link"; + +function Test() { + return ( + <> +
    +
    +
    +
    +
    + + + + + +

    + Verify your Email +

    +
    +
    +
    +
    +
    + + + +

    + We sent verification email to   + + example@email.com + + . Click the link inside to get + started! +

    +
    +
    +
    + +
    +
    +
    +
    +
    + + ); +} +export default Test; diff --git a/pages/water.js b/pages/water.js new file mode 100644 index 0000000..fa5ec61 --- /dev/null +++ b/pages/water.js @@ -0,0 +1,258 @@ +import React from 'react' +import Layout from '../components/layout/Layout' + +function water() { + return ( + +
    +
    +
    +
    +

    Create Connection

    +
    +
    +
    + +
    +
    +
    + + +
    +
    + + +
    +
    + + +
    +
    +
    +
    + + +
    +
    + + +
    +
    + + +
    +
    +
    +
    +
    +
    + + +
    +
    + + +
    +
    + + +
    +
    + +
    +
    +
    +
    + +
    +
    + +
    +
    + +
    +
    + +
    +
    +
    + + +
    +
    +
    + +
    + Save + {/* Send */} +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + +
    +
    Application NoFile NoNameMobileStatus
    +
    + +
    +
    ABCD4556464QWEFile_2023_01Jhon5678909876 + Paid +
    +
    + +
    +
    ABMK846493CFEFile_2023_02Jhon5678907865 + + Cancel + +
    +
    + +
    +
    ABGU745632CFEFile_2023_03Rajesh5678903491 + + Paid + +
    +
    + +
    +
    ABJK879125HNEFile_2023_04Karan5678905672 + + Due + +
    +
    + +
    +
    ABTY876545JIEFile_2023_05Rathod5678901232 + + Paid + +
    +
    + +
    +
    ABQW345678RTEFile_2023_06Smith5678903456 + + Due + +
    +
    +
    +
    +
    +
    +
    + ) +} + +export default water \ No newline at end of file diff --git a/public/css/style.css b/public/css/style.css new file mode 100644 index 0000000..4b7f692 --- /dev/null +++ b/public/css/style.css @@ -0,0 +1,9234 @@ +/* + Name: Intez + Author: Quixlab + Author Portfolio : https://themeforest.net/user/quixlab/portfolio + Email: quixlab.com@gmail.com + + + Table of Content: + + 1. Abstract + 2. Bootstrap CSS + 3. Base + 4. Layout + 5. Component + 6. Pages + +*/ +/*! + * Bootstrap v5.0.0-beta3 (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) + */ +@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600&display=swap"); +@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap"); +@import url("../icons/bootstrap-icons/bootstrap-icons.css"); +@import url("../icons/remix-icon/remixicon.css"); +:root { + --bs-blue: #0d6efd; + --bs-indigo: #6610f2; + --bs-purple: #5848BB; + --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: #1652F0; + --bs-secondary: #f73164; + --bs-success: #51BB25; + --bs-info: #A927F9; + --bs-warning: #F8D62B; + --bs-danger: #DC3545; + --bs-light: #F7F6FF; + --bs-dark: #070707; + --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)); } + +*, +*::before, +*::after { + box-sizing: border-box; } + +@media (prefers-reduced-motion: no-preference) { + :root { + scroll-behavior: smooth; } } + +body { + margin: 0; + font-family:-apple-system, "Roboto", sans-serif; + font-size: 0.875rem; + font-weight: 400; + line-height: 1.5; + color: #a2a5b9; + background-color: #f0f0f0; + -webkit-text-size-adjust: 100%; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); } + +hr { + margin: 1rem 0; + color: inherit; + background-color: currentColor; + border: 0; + opacity: 0.25; } + +hr:not([size]) { + height: 1px; } + +h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 { + margin-top: 0; + margin-bottom: 0.5rem; + font-weight: 600; + line-height: 1.6; + color: #212529; } + +h1, .h1 { + font-size: calc(1.35rem + 1.2vw); } + @media (min-width: 1200px) { + h1, .h1 { + font-size: 2.25rem; } } + +h2, .h2 { + font-size: calc(1.3125rem + 0.75vw); } + @media (min-width: 1200px) { + h2, .h2 { + font-size: 1.875rem; } } + +h3, .h3 { + font-size: calc(1.275rem + 0.3vw); } + @media (min-width: 1200px) { + h3, .h3 { + font-size: 1.5rem; } } + +h4, .h4 { + font-size: 1.125rem; } + +h5, .h5 { + font-size: 1rem; } + +h6, .h6 { + font-size: 1rem; } + +p { + margin-top: 0; + margin-bottom: 1rem; } + +abbr[title], +abbr[data-bs-original-title] { + text-decoration: underline dotted; + cursor: help; + text-decoration-skip-ink: none; } + +address { + margin-bottom: 1rem; + font-style: normal; + line-height: inherit; } + +ol, +ul { + padding-left: 2rem; } + +ol, +ul, +dl { + margin-top: 0; + margin-bottom: 1rem; } + +ol ol, +ul ul, +ol ul, +ul ol { + 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: 0.875em; } + +mark, .mark { + padding: 0.2em; + background-color: #fcf8e3; } + +sub, +sup { + position: relative; + font-size: 0.75em; + line-height: 0; + vertical-align: baseline; } + +sub { + bottom: -.25em; } + +sup { + top: -.5em; } + +a { + color: #1652F0; + text-decoration: underline; } + a:hover { + color: #1242c0; } + +a:not([href]):not([class]), a:not([href]):not([class]):hover { + color: inherit; + text-decoration: none; } + +pre, +code, +kbd, +samp { + font-family: var(--bs-font-monospace); + font-size: 1em; + direction: ltr /* rtl:ignore */; + unicode-bidi: bidi-override; } + +pre { + display: block; + margin-top: 0; + margin-bottom: 1rem; + overflow: auto; + font-size: 0.875em; } + pre code { + font-size: inherit; + color: inherit; + word-break: normal; } + +code { + font-size: 0.875em; + color: #d63384; + word-wrap: break-word; } + a > code { + color: inherit; } + +kbd { + padding: 0.2rem 0.4rem; + font-size: 0.875em; + color: #fff; + background-color: #212529; + border-radius: 0.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: 0.5rem; + padding-bottom: 0.5rem; + color: #7184ad; + text-align: left; } + +th { + text-align: inherit; + text-align: -webkit-match-parent; } + +thead, +tbody, +tfoot, +tr, +td, +th { + border-color: inherit; + border-style: solid; + border-width: 0; } + +label { + display: inline-block; } + +button { + border-radius: 0; } + +button:focus:not(:focus-visible) { + outline: 0; } + +input, +button, +select, +optgroup, +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; } + +button, +[type="button"], +[type="reset"], +[type="submit"] { + -webkit-appearance: button; } + button:not(:disabled), + [type="button"]:not(:disabled), + [type="reset"]:not(:disabled), + [type="submit"]: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: 0.5rem; + font-size: calc(1.275rem + 0.3vw); + line-height: inherit; } + @media (min-width: 1200px) { + legend { + font-size: 1.5rem; } } + legend + * { + clear: left; } + +::-webkit-datetime-edit-fields-wrapper, +::-webkit-datetime-edit-text, +::-webkit-datetime-edit-minute, +::-webkit-datetime-edit-hour-field, +::-webkit-datetime-edit-day-field, +::-webkit-datetime-edit-month-field, +::-webkit-datetime-edit-year-field { + padding: 0; } + +::-webkit-inner-spin-button { + height: auto; } + +[type="search"] { + outline-offset: -2px; + -webkit-appearance: textfield; } + +/* rtl:raw: +[type="tel"], +[type="url"], +[type="email"], +[type="number"] { + 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.09375rem; + font-weight: 300; } + +.display-1 { + font-size: calc(1.625rem + 4.5vw); + font-weight: 300; + line-height: 1.6; } + @media (min-width: 1200px) { + .display-1 { + font-size: 5rem; } } + +.display-2 { + font-size: calc(1.575rem + 3.9vw); + font-weight: 300; + line-height: 1.6; } + @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.6; } + @media (min-width: 1200px) { + .display-3 { + font-size: 4rem; } } + +.display-4 { + font-size: calc(1.475rem + 2.7vw); + font-weight: 300; + line-height: 1.6; } + @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.6; } + @media (min-width: 1200px) { + .display-5 { + font-size: 3rem; } } + +.display-6 { + font-size: calc(1.375rem + 1.5vw); + font-weight: 300; + line-height: 1.6; } + @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: 0.5rem; } + +.initialism { + font-size: 0.875em; + text-transform: uppercase; } + +.blockquote { + margin-bottom: 1rem; + font-size: 1.09375rem; } + .blockquote > :last-child { + margin-bottom: 0; } + +.blockquote-footer { + margin-top: -1rem; + margin-bottom: 1rem; + font-size: 0.875em; + color: #6c757d; } + .blockquote-footer::before { + content: "\2014\00A0"; } + +.img-fluid { + max-width: 100%; + height: auto; } + +.img-thumbnail { + padding: 0.25rem; + background-color: #f0f0f0; + border: 1px solid #dee2e6; + border-radius: 6px; + max-width: 100%; + height: auto; } + +.figure { + display: inline-block; } + +.figure-img { + margin-bottom: 0.5rem; + line-height: 1; } + +.figure-caption { + font-size: 0.875em; + color: #6c757d; } + +.container, +.container-fluid, +.container-sm, +.container-md, +.container-lg, +.container-xl, +.container-xxl { + width: 100%; + padding-right: var(--bs-gutter-x, 15px); + padding-left: var(--bs-gutter-x, 15px); + margin-right: auto; + margin-left: auto; } + +@media (min-width: 576px) { + .container, .container-sm { + max-width: 540px; } } + +@media (min-width: 768px) { + .container, .container-sm, .container-md { + max-width: 720px; } } + +@media (min-width: 992px) { + .container, .container-sm, .container-md, .container-lg { + max-width: 960px; } } + +@media (min-width: 1200px) { + .container, .container-sm, .container-md, .container-lg, .container-xl { + max-width: 1140px; } } + +@media (min-width: 1400px) { + .container, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl { + max-width: 1320px; } } + +.row { + --bs-gutter-x: 30px; + --bs-gutter-y: 0; + display: flex; + flex-wrap: wrap; + margin-top: calc(var(--bs-gutter-y) * -1); + margin-right: calc(var(--bs-gutter-x) / -2); + margin-left: calc(var(--bs-gutter-x) / -2); } + .row > * { + flex-shrink: 0; + width: 100%; + max-width: 100%; + padding-right: calc(var(--bs-gutter-x) / 2); + padding-left: calc(var(--bs-gutter-x) / 2); + 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.33333%; } + +.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.66667%; } + +.col-auto { + flex: 0 0 auto; + width: auto; } + +.col-1 { + flex: 0 0 auto; + width: 8.33333%; } + +.col-2 { + flex: 0 0 auto; + width: 16.66667%; } + +.col-3 { + flex: 0 0 auto; + width: 25%; } + +.col-4 { + flex: 0 0 auto; + width: 33.33333%; } + +.col-5 { + flex: 0 0 auto; + width: 41.66667%; } + +.col-6 { + flex: 0 0 auto; + width: 50%; } + +.col-7 { + flex: 0 0 auto; + width: 58.33333%; } + +.col-8 { + flex: 0 0 auto; + width: 66.66667%; } + +.col-9 { + flex: 0 0 auto; + width: 75%; } + +.col-10 { + flex: 0 0 auto; + width: 83.33333%; } + +.col-11 { + flex: 0 0 auto; + width: 91.66667%; } + +.col-12 { + flex: 0 0 auto; + width: 100%; } + +.offset-1 { + margin-left: 8.33333%; } + +.offset-2 { + margin-left: 16.66667%; } + +.offset-3 { + margin-left: 25%; } + +.offset-4 { + margin-left: 33.33333%; } + +.offset-5 { + margin-left: 41.66667%; } + +.offset-6 { + margin-left: 50%; } + +.offset-7 { + margin-left: 58.33333%; } + +.offset-8 { + margin-left: 66.66667%; } + +.offset-9 { + margin-left: 75%; } + +.offset-10 { + margin-left: 83.33333%; } + +.offset-11 { + margin-left: 91.66667%; } + +.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 { + 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.33333%; } + .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.66667%; } + .col-sm-auto { + flex: 0 0 auto; + width: auto; } + .col-sm-1 { + flex: 0 0 auto; + width: 8.33333%; } + .col-sm-2 { + flex: 0 0 auto; + width: 16.66667%; } + .col-sm-3 { + flex: 0 0 auto; + width: 25%; } + .col-sm-4 { + flex: 0 0 auto; + width: 33.33333%; } + .col-sm-5 { + flex: 0 0 auto; + width: 41.66667%; } + .col-sm-6 { + flex: 0 0 auto; + width: 50%; } + .col-sm-7 { + flex: 0 0 auto; + width: 58.33333%; } + .col-sm-8 { + flex: 0 0 auto; + width: 66.66667%; } + .col-sm-9 { + flex: 0 0 auto; + width: 75%; } + .col-sm-10 { + flex: 0 0 auto; + width: 83.33333%; } + .col-sm-11 { + flex: 0 0 auto; + width: 91.66667%; } + .col-sm-12 { + flex: 0 0 auto; + width: 100%; } + .offset-sm-0 { + margin-left: 0; } + .offset-sm-1 { + margin-left: 8.33333%; } + .offset-sm-2 { + margin-left: 16.66667%; } + .offset-sm-3 { + margin-left: 25%; } + .offset-sm-4 { + margin-left: 33.33333%; } + .offset-sm-5 { + margin-left: 41.66667%; } + .offset-sm-6 { + margin-left: 50%; } + .offset-sm-7 { + margin-left: 58.33333%; } + .offset-sm-8 { + margin-left: 66.66667%; } + .offset-sm-9 { + margin-left: 75%; } + .offset-sm-10 { + margin-left: 83.33333%; } + .offset-sm-11 { + margin-left: 91.66667%; } + .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 { + 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.33333%; } + .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.66667%; } + .col-md-auto { + flex: 0 0 auto; + width: auto; } + .col-md-1 { + flex: 0 0 auto; + width: 8.33333%; } + .col-md-2 { + flex: 0 0 auto; + width: 16.66667%; } + .col-md-3 { + flex: 0 0 auto; + width: 25%; } + .col-md-4 { + flex: 0 0 auto; + width: 33.33333%; } + .col-md-5 { + flex: 0 0 auto; + width: 41.66667%; } + .col-md-6 { + flex: 0 0 auto; + width: 50%; } + .col-md-7 { + flex: 0 0 auto; + width: 58.33333%; } + .col-md-8 { + flex: 0 0 auto; + width: 66.66667%; } + .col-md-9 { + flex: 0 0 auto; + width: 75%; } + .col-md-10 { + flex: 0 0 auto; + width: 83.33333%; } + .col-md-11 { + flex: 0 0 auto; + width: 91.66667%; } + .col-md-12 { + flex: 0 0 auto; + width: 100%; } + .offset-md-0 { + margin-left: 0; } + .offset-md-1 { + margin-left: 8.33333%; } + .offset-md-2 { + margin-left: 16.66667%; } + .offset-md-3 { + margin-left: 25%; } + .offset-md-4 { + margin-left: 33.33333%; } + .offset-md-5 { + margin-left: 41.66667%; } + .offset-md-6 { + margin-left: 50%; } + .offset-md-7 { + margin-left: 58.33333%; } + .offset-md-8 { + margin-left: 66.66667%; } + .offset-md-9 { + margin-left: 75%; } + .offset-md-10 { + margin-left: 83.33333%; } + .offset-md-11 { + margin-left: 91.66667%; } + .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 { + 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.33333%; } + .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.66667%; } + .col-lg-auto { + flex: 0 0 auto; + width: auto; } + .col-lg-1 { + flex: 0 0 auto; + width: 8.33333%; } + .col-lg-2 { + flex: 0 0 auto; + width: 16.66667%; } + .col-lg-3 { + flex: 0 0 auto; + width: 25%; } + .col-lg-4 { + flex: 0 0 auto; + width: 33.33333%; } + .col-lg-5 { + flex: 0 0 auto; + width: 41.66667%; } + .col-lg-6 { + flex: 0 0 auto; + width: 50%; } + .col-lg-7 { + flex: 0 0 auto; + width: 58.33333%; } + .col-lg-8 { + flex: 0 0 auto; + width: 66.66667%; } + .col-lg-9 { + flex: 0 0 auto; + width: 75%; } + .col-lg-10 { + flex: 0 0 auto; + width: 83.33333%; } + .col-lg-11 { + flex: 0 0 auto; + width: 91.66667%; } + .col-lg-12 { + flex: 0 0 auto; + width: 100%; } + .offset-lg-0 { + margin-left: 0; } + .offset-lg-1 { + margin-left: 8.33333%; } + .offset-lg-2 { + margin-left: 16.66667%; } + .offset-lg-3 { + margin-left: 25%; } + .offset-lg-4 { + margin-left: 33.33333%; } + .offset-lg-5 { + margin-left: 41.66667%; } + .offset-lg-6 { + margin-left: 50%; } + .offset-lg-7 { + margin-left: 58.33333%; } + .offset-lg-8 { + margin-left: 66.66667%; } + .offset-lg-9 { + margin-left: 75%; } + .offset-lg-10 { + margin-left: 83.33333%; } + .offset-lg-11 { + margin-left: 91.66667%; } + .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 { + 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.33333%; } + .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.66667%; } + .col-xl-auto { + flex: 0 0 auto; + width: auto; } + .col-xl-1 { + flex: 0 0 auto; + width: 8.33333%; } + .col-xl-2 { + flex: 0 0 auto; + width: 16.66667%; } + .col-xl-3 { + flex: 0 0 auto; + width: 25%; } + .col-xl-4 { + flex: 0 0 auto; + width: 33.33333%; } + .col-xl-5 { + flex: 0 0 auto; + width: 41.66667%; } + .col-xl-6 { + flex: 0 0 auto; + width: 50%; } + .col-xl-7 { + flex: 0 0 auto; + width: 58.33333%; } + .col-xl-8 { + flex: 0 0 auto; + width: 66.66667%; } + .col-xl-9 { + flex: 0 0 auto; + width: 75%; } + .col-xl-10 { + flex: 0 0 auto; + width: 83.33333%; } + .col-xl-11 { + flex: 0 0 auto; + width: 91.66667%; } + .col-xl-12 { + flex: 0 0 auto; + width: 100%; } + .offset-xl-0 { + margin-left: 0; } + .offset-xl-1 { + margin-left: 8.33333%; } + .offset-xl-2 { + margin-left: 16.66667%; } + .offset-xl-3 { + margin-left: 25%; } + .offset-xl-4 { + margin-left: 33.33333%; } + .offset-xl-5 { + margin-left: 41.66667%; } + .offset-xl-6 { + margin-left: 50%; } + .offset-xl-7 { + margin-left: 58.33333%; } + .offset-xl-8 { + margin-left: 66.66667%; } + .offset-xl-9 { + margin-left: 75%; } + .offset-xl-10 { + margin-left: 83.33333%; } + .offset-xl-11 { + margin-left: 91.66667%; } + .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 { + 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.33333%; } + .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.66667%; } + .col-xxl-auto { + flex: 0 0 auto; + width: auto; } + .col-xxl-1 { + flex: 0 0 auto; + width: 8.33333%; } + .col-xxl-2 { + flex: 0 0 auto; + width: 16.66667%; } + .col-xxl-3 { + flex: 0 0 auto; + width: 25%; } + .col-xxl-4 { + flex: 0 0 auto; + width: 33.33333%; } + .col-xxl-5 { + flex: 0 0 auto; + width: 41.66667%; } + .col-xxl-6 { + flex: 0 0 auto; + width: 50%; } + .col-xxl-7 { + flex: 0 0 auto; + width: 58.33333%; } + .col-xxl-8 { + flex: 0 0 auto; + width: 66.66667%; } + .col-xxl-9 { + flex: 0 0 auto; + width: 75%; } + .col-xxl-10 { + flex: 0 0 auto; + width: 83.33333%; } + .col-xxl-11 { + flex: 0 0 auto; + width: 91.66667%; } + .col-xxl-12 { + flex: 0 0 auto; + width: 100%; } + .offset-xxl-0 { + margin-left: 0; } + .offset-xxl-1 { + margin-left: 8.33333%; } + .offset-xxl-2 { + margin-left: 16.66667%; } + .offset-xxl-3 { + margin-left: 25%; } + .offset-xxl-4 { + margin-left: 33.33333%; } + .offset-xxl-5 { + margin-left: 41.66667%; } + .offset-xxl-6 { + margin-left: 50%; } + .offset-xxl-7 { + margin-left: 58.33333%; } + .offset-xxl-8 { + margin-left: 66.66667%; } + .offset-xxl-9 { + margin-left: 75%; } + .offset-xxl-10 { + margin-left: 83.33333%; } + .offset-xxl-11 { + margin-left: 91.66667%; } + .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-striped-color: #a2a5b9; + --bs-table-striped-bg: #f0f0f0; + --bs-table-active-color: #a2a5b9; + --bs-table-active-bg: rgba(0, 0, 0, 0.1); + --bs-table-hover-color: #a2a5b9; + --bs-table-hover-bg: rgba(0, 0, 0, 0.075); + width: 100%; + margin-bottom: 1rem; + color: #a2a5b9; + vertical-align: top; + border-color: #e5e5e5; } + .table > :not(caption) > * > * { + padding: 0.5rem 0.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: 0.25rem 0.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: #d0dcfc; + --bs-table-striped-bg: #c6d1ef; + --bs-table-striped-color: #000; + --bs-table-active-bg: #bbc6e3; + --bs-table-active-color: #000; + --bs-table-hover-bg: #c0cce9; + --bs-table-hover-color: #000; + color: #000; + border-color: #bbc6e3; } + +.table-secondary { + --bs-table-bg: #fdd6e0; + --bs-table-striped-bg: #f0cbd5; + --bs-table-striped-color: #000; + --bs-table-active-bg: #e4c1ca; + --bs-table-active-color: #000; + --bs-table-hover-bg: #eac6cf; + --bs-table-hover-color: #000; + color: #000; + border-color: #e4c1ca; } + +.table-success { + --bs-table-bg: #dcf1d3; + --bs-table-striped-bg: #d1e5c8; + --bs-table-striped-color: #000; + --bs-table-active-bg: #c6d9be; + --bs-table-active-color: #000; + --bs-table-hover-bg: #ccdfc3; + --bs-table-hover-color: #000; + color: #000; + border-color: #c6d9be; } + +.table-info { + --bs-table-bg: #eed4fe; + --bs-table-striped-bg: #e2c9f1; + --bs-table-striped-color: #000; + --bs-table-active-bg: #d6bfe5; + --bs-table-active-color: #000; + --bs-table-hover-bg: #dcc4eb; + --bs-table-hover-color: #000; + color: #000; + border-color: #d6bfe5; } + +.table-warning { + --bs-table-bg: #fef7d5; + --bs-table-striped-bg: #f1ebca; + --bs-table-striped-color: #000; + --bs-table-active-bg: #e5dec0; + --bs-table-active-color: #000; + --bs-table-hover-bg: #ebe4c5; + --bs-table-hover-color: #000; + color: #000; + border-color: #e5dec0; } + +.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: #F7F6FF; + --bs-table-striped-bg: #ebeaf2; + --bs-table-striped-color: #000; + --bs-table-active-bg: #dedde6; + --bs-table-active-color: #000; + --bs-table-hover-bg: #e4e4ec; + --bs-table-hover-color: #000; + color: #000; + border-color: #dedde6; } + +.table-dark { + --bs-table-bg: #070707; + --bs-table-striped-bg: #131313; + --bs-table-striped-color: #fff; + --bs-table-active-bg: #202020; + --bs-table-active-color: #fff; + --bs-table-hover-bg: #1a1a1a; + --bs-table-hover-color: #fff; + color: #fff; + border-color: #202020; } + +.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: 0.5rem; } + +.col-form-label { + padding-top: calc(0.375rem + 1px); + padding-bottom: calc(0.375rem + 1px); + margin-bottom: 0; + font-size: inherit; + line-height: 1.5; } + +.col-form-label-lg { + padding-top: calc(0.5rem + 1px); + padding-bottom: calc(0.5rem + 1px); + font-size: 1.09375rem; } + +.col-form-label-sm { + padding-top: calc(0.25rem + 1px); + padding-bottom: calc(0.25rem + 1px); + font-size: 0.76563rem; } + +.form-text { + margin-top: 0.25rem; + font-size: 0.875em; + color: #7184ad; } + +.form-control { + display: block; + width: 100%; + padding: 0.375rem 0.75rem; + font-size: 0.875rem; + font-weight: 400; + line-height: 1.5; + color: #a2a5b9; + background-color: #fff; + background-clip: padding-box; + border: 1px solid #ced4da; + appearance: none; + border-radius: 6px; + transition: border-color 0.15s ease-in-out, box-shadow 0.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: #a2a5b9; + background-color: #fff; + border-color: #8ba9f8; + outline: 0; + box-shadow: 0 0 0 0rem rgba(22, 82, 240, 0.25); } + .form-control::-webkit-date-and-time-value { + height: 1.5em; } + .form-control::placeholder { + color: #6c757d; + opacity: 1; } + .form-control:disabled, .form-control[readonly] { + background-color: #e9ecef; + opacity: 1; } + .form-control::file-selector-button { + padding: 0.375rem 0.75rem; + margin: -0.375rem -0.75rem; + margin-inline-end: 0.75rem; + color: #a2a5b9; + 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 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.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: 0.375rem 0.75rem; + margin: -0.375rem -0.75rem; + margin-inline-end: 0.75rem; + color: #a2a5b9; + 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 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; } + @media (prefers-reduced-motion: reduce) { + .form-control::-webkit-file-upload-button { + transition: none; } } + .form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button { + background-color: #dde0e3; } + +.form-control-plaintext { + display: block; + width: 100%; + padding: 0.375rem 0; + margin-bottom: 0; + line-height: 1.5; + color: #a2a5b9; + background-color: transparent; + border: solid transparent; + border-width: 1px 0; } + .form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg { + padding-right: 0; + padding-left: 0; } + +.form-control-sm { + min-height: calc(1.5em + 0.5rem + 2px); + padding: 0.25rem 0.5rem; + font-size: 0.76563rem; + border-radius: 0.2rem; } + .form-control-sm::file-selector-button { + padding: 0.25rem 0.5rem; + margin: -0.25rem -0.5rem; + margin-inline-end: 0.5rem; } + .form-control-sm::-webkit-file-upload-button { + padding: 0.25rem 0.5rem; + margin: -0.25rem -0.5rem; + margin-inline-end: 0.5rem; } + +.form-control-lg { + min-height: calc(1.5em + 1rem + 2px); + padding: 0.5rem 1rem; + font-size: 1.09375rem; + border-radius: 0.3rem; } + .form-control-lg::file-selector-button { + padding: 0.5rem 1rem; + margin: -0.5rem -1rem; + margin-inline-end: 1rem; } + .form-control-lg::-webkit-file-upload-button { + padding: 0.5rem 1rem; + margin: -0.5rem -1rem; + margin-inline-end: 1rem; } + +textarea.form-control { + min-height: calc(1.5em + 0.75rem + 2px); } + +textarea.form-control-sm { + min-height: calc(1.5em + 0.5rem + 2px); } + +textarea.form-control-lg { + min-height: calc(1.5em + 1rem + 2px); } + +.form-control-color { + max-width: 3rem; + height: auto; + padding: 0.375rem; } + .form-control-color:not(:disabled):not([readonly]) { + cursor: pointer; } + .form-control-color::-moz-color-swatch { + height: 1.5em; + border-radius: 6px; } + .form-control-color::-webkit-color-swatch { + height: 1.5em; + border-radius: 6px; } + +.form-select { + display: block; + width: 100%; + padding: 0.375rem 2.25rem 0.375rem 0.75rem; + font-size: 0.875rem; + font-weight: 400; + line-height: 1.5; + color: #a2a5b9; + 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 0.75rem center; + background-size: 16px 12px; + border: 1px solid #ced4da; + border-radius: 6px; + appearance: none; } + .form-select:focus { + border-color: #8ba9f8; + outline: 0; + box-shadow: 0 0 0 0rem rgba(22, 82, 240, 0.25); } + .form-select[multiple], .form-select[size]:not([size="1"]) { + padding-right: 0.75rem; + background-image: none; } + .form-select:disabled { + background-color: #e9ecef; } + .form-select:-moz-focusring { + color: transparent; + text-shadow: 0 0 0 #a2a5b9; } + +.form-select-sm { + padding-top: 0.25rem; + padding-bottom: 0.25rem; + padding-left: 0.5rem; + font-size: 0.76563rem; } + +.form-select-lg { + padding-top: 0.5rem; + padding-bottom: 0.5rem; + padding-left: 1rem; + font-size: 1.09375rem; } + +.form-check { + display: block; + min-height: 1.3125rem; + padding-left: 1.5em; + margin-bottom: 0.125rem; } + .form-check .form-check-input { + float: left; + margin-left: -1.5em; } + +.form-check-input { + width: 1em; + height: 1em; + margin-top: 0.25em; + vertical-align: top; + background-color: #fff; + background-repeat: no-repeat; + background-position: center; + background-size: contain; + border: 1px solid rgba(0, 0, 0, 0.25); + appearance: none; + color-adjust: exact; } + .form-check-input[type="checkbox"] { + border-radius: 0.25em; } + .form-check-input[type="radio"] { + border-radius: 50%; } + .form-check-input:active { + filter: brightness(90%); } + .form-check-input:focus { + border-color: #8ba9f8; + outline: 0; + box-shadow: 0 0 0 0rem rgba(22, 82, 240, 0.25); } + .form-check-input:checked { + background-color: #1652F0; + border-color: #1652F0; } + .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: #1652F0; + border-color: #1652F0; + 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: 0.5; } + .form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label { + opacity: 0.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 0.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='%238ba9f8'/%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: 0.65; } + +.form-range { + width: 100%; + height: 1rem; + padding: 0; + background-color: transparent; + appearance: none; } + .form-range:focus { + outline: 0; } + .form-range:focus::-webkit-slider-thumb { + box-shadow: 0 0 0 1px #f0f0f0, 0 0 0 0rem rgba(22, 82, 240, 0.25); } + .form-range:focus::-moz-range-thumb { + box-shadow: 0 0 0 1px #f0f0f0, 0 0 0 0rem rgba(22, 82, 240, 0.25); } + .form-range::-moz-focus-outer { + border: 0; } + .form-range::-webkit-slider-thumb { + width: 1rem; + height: 1rem; + margin-top: -0.25rem; + background-color: #1652F0; + border: 0; + border-radius: 1rem; + transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + appearance: none; } + @media (prefers-reduced-motion: reduce) { + .form-range::-webkit-slider-thumb { + transition: none; } } + .form-range::-webkit-slider-thumb:active { + background-color: #b9cbfb; } + .form-range::-webkit-slider-runnable-track { + width: 100%; + height: 0.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: #1652F0; + border: 0; + border-radius: 1rem; + transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + appearance: none; } + @media (prefers-reduced-motion: reduce) { + .form-range::-moz-range-thumb { + transition: none; } } + .form-range::-moz-range-thumb:active { + background-color: #b9cbfb; } + .form-range::-moz-range-track { + width: 100%; + height: 0.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); + padding: 1rem 0.75rem; } + .form-floating > label { + position: absolute; + top: 0; + left: 0; + height: 100%; + padding: 1rem 0.75rem; + pointer-events: none; + border: 1px solid transparent; + transform-origin: 0 0; + transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out; } + @media (prefers-reduced-motion: reduce) { + .form-floating > label { + transition: none; } } + .form-floating > .form-control::placeholder { + color: transparent; } + .form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown) { + padding-top: 1.625rem; + padding-bottom: 0.625rem; } + .form-floating > .form-control:-webkit-autofill { + padding-top: 1.625rem; + padding-bottom: 0.625rem; } + .form-floating > .form-select { + padding-top: 1.625rem; + padding-bottom: 0.625rem; } + .form-floating > .form-control:focus ~ label, + .form-floating > .form-control:not(:placeholder-shown) ~ label, + .form-floating > .form-select ~ label { + opacity: 0.65; + transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem); } + .form-floating > .form-control:-webkit-autofill ~ label { + opacity: 0.65; + transform: scale(0.85) translateY(-0.5rem) translateX(0.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: 0.375rem 0.75rem; + font-size: 0.875rem; + font-weight: 400; + line-height: 1.5; + color: #a2a5b9; + text-align: center; + white-space: nowrap; + background-color: #e9ecef; + border: 1px solid #ced4da; + border-radius: 6px; } + +.input-group-lg > .form-control, +.input-group-lg > .form-select, +.input-group-lg > .input-group-text, +.input-group-lg > .btn { + padding: 0.5rem 1rem; + font-size: 1.09375rem; + border-radius: 0.3rem; } + +.input-group-sm > .form-control, +.input-group-sm > .form-select, +.input-group-sm > .input-group-text, +.input-group-sm > .btn { + padding: 0.25rem 0.5rem; + font-size: 0.76563rem; + border-radius: 0.2rem; } + +.input-group-lg > .form-select, +.input-group-sm > .form-select { + padding-right: 3rem; } + +.input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu), +.input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n + 3) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; } + +.input-group.has-validation > :nth-last-child(n + 3):not(.dropdown-toggle):not(.dropdown-menu), +.input-group.has-validation > .dropdown-toggle:nth-last-child(n + 4) { + 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: 0.25rem; + font-size: 0.875em; + color: #51BB25; } + +.valid-tooltip { + position: absolute; + top: 100%; + z-index: 5; + display: none; + max-width: 100%; + padding: 0.25rem 0.5rem; + margin-top: .1rem; + font-size: 0.76563rem; + color: #000; + background-color: rgba(81, 187, 37, 0.9); + border-radius: 6px; } + +.was-validated :valid ~ .valid-feedback, +.was-validated :valid ~ .valid-tooltip, +.is-valid ~ .valid-feedback, +.is-valid ~ .valid-tooltip { + display: block; } + +.was-validated .form-control:valid, .form-control.is-valid { + border-color: #51BB25; + padding-right: calc(1.5em + 0.75rem); + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2351BB25' 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(0.375em + 0.1875rem) center; + background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); } + .was-validated .form-control:valid:focus, .form-control.is-valid:focus { + border-color: #51BB25; + box-shadow: 0 0 0 0rem rgba(81, 187, 37, 0.25); } + +.was-validated textarea.form-control:valid, textarea.form-control.is-valid { + padding-right: calc(1.5em + 0.75rem); + background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem); } + +.was-validated .form-select:valid, .form-select.is-valid { + border-color: #51BB25; + 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='%2351BB25' 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 0.75rem center, center right 2.25rem; + background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); } + .was-validated .form-select:valid:focus, .form-select.is-valid:focus { + border-color: #51BB25; + box-shadow: 0 0 0 0rem rgba(81, 187, 37, 0.25); } + +.was-validated .form-check-input:valid, .form-check-input.is-valid { + border-color: #51BB25; } + .was-validated .form-check-input:valid:checked, .form-check-input.is-valid:checked { + background-color: #51BB25; } + .was-validated .form-check-input:valid:focus, .form-check-input.is-valid:focus { + box-shadow: 0 0 0 0rem rgba(81, 187, 37, 0.25); } + .was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label { + color: #51BB25; } + +.form-check-inline .form-check-input ~ .valid-feedback { + margin-left: .5em; } + +.was-validated .input-group .form-control:valid, .input-group .form-control.is-valid, .was-validated +.input-group .form-select:valid, +.input-group .form-select.is-valid { + z-index: 3; } + +.invalid-feedback { + display: none; + width: 100%; + margin-top: 0.25rem; + font-size: 0.875em; + color: #DC3545; } + +.invalid-tooltip { + position: absolute; + top: 100%; + z-index: 5; + display: none; + max-width: 100%; + padding: 0.25rem 0.5rem; + margin-top: .1rem; + font-size: 0.76563rem; + color: #fff; + background-color: rgba(220, 53, 69, 0.9); + border-radius: 6px; } + +.was-validated :invalid ~ .invalid-feedback, +.was-validated :invalid ~ .invalid-tooltip, +.is-invalid ~ .invalid-feedback, +.is-invalid ~ .invalid-tooltip { + display: block; } + +.was-validated .form-control:invalid, .form-control.is-invalid { + border-color: #DC3545; + padding-right: calc(1.5em + 0.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(0.375em + 0.1875rem) center; + background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); } + .was-validated .form-control:invalid:focus, .form-control.is-invalid:focus { + border-color: #DC3545; + box-shadow: 0 0 0 0rem rgba(220, 53, 69, 0.25); } + +.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid { + padding-right: calc(1.5em + 0.75rem); + background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem); } + +.was-validated .form-select:invalid, .form-select.is-invalid { + border-color: #DC3545; + 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 0.75rem center, center right 2.25rem; + background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); } + .was-validated .form-select:invalid:focus, .form-select.is-invalid:focus { + border-color: #DC3545; + box-shadow: 0 0 0 0rem rgba(220, 53, 69, 0.25); } + +.was-validated .form-check-input:invalid, .form-check-input.is-invalid { + border-color: #DC3545; } + .was-validated .form-check-input:invalid:checked, .form-check-input.is-invalid:checked { + background-color: #DC3545; } + .was-validated .form-check-input:invalid:focus, .form-check-input.is-invalid:focus { + box-shadow: 0 0 0 0rem rgba(220, 53, 69, 0.25); } + .was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label { + color: #DC3545; } + +.form-check-inline .form-check-input ~ .invalid-feedback { + margin-left: .5em; } + +.was-validated .input-group .form-control:invalid, .input-group .form-control.is-invalid, .was-validated +.input-group .form-select:invalid, +.input-group .form-select.is-invalid { + z-index: 3; } + +.btn { + display: inline-block; + font-weight: 400; + line-height: 1.5; + color: #a2a5b9; + text-align: center; + text-decoration: none; + vertical-align: middle; + cursor: pointer; + user-select: none; + background-color: transparent; + border: 1px solid transparent; + padding: 0.375rem 0.75rem; + font-size: 0.875rem; + border-radius: 6px; + transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; } + @media (prefers-reduced-motion: reduce) { + .btn { + transition: none; } } + .btn:hover { + color: #a2a5b9; } + .btn-check:focus + .btn, .btn:focus { + outline: 0; + box-shadow: 0 0 0 0rem rgba(22, 82, 240, 0.25); } + .btn:disabled, .btn.disabled, + fieldset:disabled .btn { + pointer-events: none; + opacity: 0.65; } + +.btn-primary { + color: #fff; + background-color: #1652F0; + border-color: #1652F0; } + .btn-primary:hover { + color: #fff; + background-color: #1346cc; + border-color: #1242c0; } + .btn-check:focus + .btn-primary, .btn-primary:focus { + color: #fff; + background-color: #1346cc; + border-color: #1242c0; + box-shadow: 0 0 0 0rem rgba(57, 108, 242, 0.5); } + .btn-check:checked + .btn-primary, + .btn-check:active + .btn-primary, .btn-primary:active, .btn-primary.active, + .show > .btn-primary.dropdown-toggle { + color: #fff; + background-color: #1242c0; + border-color: #113eb4; } + .btn-check:checked + .btn-primary:focus, + .btn-check:active + .btn-primary:focus, .btn-primary:active:focus, .btn-primary.active:focus, + .show > .btn-primary.dropdown-toggle:focus { + box-shadow: 0 0 0 0rem rgba(57, 108, 242, 0.5); } + .btn-primary:disabled, .btn-primary.disabled { + color: #fff; + background-color: #1652F0; + border-color: #1652F0; } + +.btn-secondary { + color: #000; + background-color: #f73164; + border-color: #f73164; } + .btn-secondary:hover { + color: #000; + background-color: #f8507b; + border-color: #f84674; } + .btn-check:focus + .btn-secondary, .btn-secondary:focus { + color: #000; + background-color: #f8507b; + border-color: #f84674; + box-shadow: 0 0 0 0rem rgba(210, 42, 85, 0.5); } + .btn-check:checked + .btn-secondary, + .btn-check:active + .btn-secondary, .btn-secondary:active, .btn-secondary.active, + .show > .btn-secondary.dropdown-toggle { + color: #000; + background-color: #f95a83; + border-color: #f84674; } + .btn-check:checked + .btn-secondary:focus, + .btn-check:active + .btn-secondary:focus, .btn-secondary:active:focus, .btn-secondary.active:focus, + .show > .btn-secondary.dropdown-toggle:focus { + box-shadow: 0 0 0 0rem rgba(210, 42, 85, 0.5); } + .btn-secondary:disabled, .btn-secondary.disabled { + color: #000; + background-color: #f73164; + border-color: #f73164; } + +.btn-success { + color: #000; + background-color: #51BB25; + border-color: #51BB25; } + .btn-success:hover { + color: #000; + background-color: #6bc546; + border-color: #62c23b; } + .btn-check:focus + .btn-success, .btn-success:focus { + color: #000; + background-color: #6bc546; + border-color: #62c23b; + box-shadow: 0 0 0 0rem rgba(69, 159, 31, 0.5); } + .btn-check:checked + .btn-success, + .btn-check:active + .btn-success, .btn-success:active, .btn-success.active, + .show > .btn-success.dropdown-toggle { + color: #000; + background-color: #74c951; + border-color: #62c23b; } + .btn-check:checked + .btn-success:focus, + .btn-check:active + .btn-success:focus, .btn-success:active:focus, .btn-success.active:focus, + .show > .btn-success.dropdown-toggle:focus { + box-shadow: 0 0 0 0rem rgba(69, 159, 31, 0.5); } + .btn-success:disabled, .btn-success.disabled { + color: #000; + background-color: #51BB25; + border-color: #51BB25; } + +.btn-info { + color: #fff; + background-color: #A927F9; + border-color: #A927F9; } + .btn-info:hover { + color: #fff; + background-color: #9021d4; + border-color: #871fc7; } + .btn-check:focus + .btn-info, .btn-info:focus { + color: #fff; + background-color: #9021d4; + border-color: #871fc7; + box-shadow: 0 0 0 0rem rgba(182, 71, 250, 0.5); } + .btn-check:checked + .btn-info, + .btn-check:active + .btn-info, .btn-info:active, .btn-info.active, + .show > .btn-info.dropdown-toggle { + color: #fff; + background-color: #871fc7; + border-color: #7f1dbb; } + .btn-check:checked + .btn-info:focus, + .btn-check:active + .btn-info:focus, .btn-info:active:focus, .btn-info.active:focus, + .show > .btn-info.dropdown-toggle:focus { + box-shadow: 0 0 0 0rem rgba(182, 71, 250, 0.5); } + .btn-info:disabled, .btn-info.disabled { + color: #fff; + background-color: #A927F9; + border-color: #A927F9; } + +.btn-warning { + color: #000; + background-color: #F8D62B; + border-color: #F8D62B; } + .btn-warning:hover { + color: #000; + background-color: #f9dc4b; + border-color: #f9da40; } + .btn-check:focus + .btn-warning, .btn-warning:focus { + color: #000; + background-color: #f9dc4b; + border-color: #f9da40; + box-shadow: 0 0 0 0rem rgba(211, 182, 37, 0.5); } + .btn-check:checked + .btn-warning, + .btn-check:active + .btn-warning, .btn-warning:active, .btn-warning.active, + .show > .btn-warning.dropdown-toggle { + color: #000; + background-color: #f9de55; + border-color: #f9da40; } + .btn-check:checked + .btn-warning:focus, + .btn-check:active + .btn-warning:focus, .btn-warning:active:focus, .btn-warning.active:focus, + .show > .btn-warning.dropdown-toggle:focus { + box-shadow: 0 0 0 0rem rgba(211, 182, 37, 0.5); } + .btn-warning:disabled, .btn-warning.disabled { + color: #000; + background-color: #F8D62B; + border-color: #F8D62B; } + +.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 0rem rgba(225, 83, 97, 0.5); } + .btn-check:checked + .btn-danger, + .btn-check:active + .btn-danger, .btn-danger:active, .btn-danger.active, + .show > .btn-danger.dropdown-toggle { + color: #fff; + background-color: #b02a37; + border-color: #a52834; } + .btn-check:checked + .btn-danger:focus, + .btn-check:active + .btn-danger:focus, .btn-danger:active:focus, .btn-danger.active:focus, + .show > .btn-danger.dropdown-toggle:focus { + box-shadow: 0 0 0 0rem rgba(225, 83, 97, 0.5); } + .btn-danger:disabled, .btn-danger.disabled { + color: #fff; + background-color: #DC3545; + border-color: #DC3545; } + +.btn-light { + color: #000; + background-color: #F7F6FF; + border-color: #F7F6FF; } + .btn-light:hover { + color: #000; + background-color: #f8f7ff; + border-color: #f8f7ff; } + .btn-check:focus + .btn-light, .btn-light:focus { + color: #000; + background-color: #f8f7ff; + border-color: #f8f7ff; + box-shadow: 0 0 0 0rem rgba(210, 209, 217, 0.5); } + .btn-check:checked + .btn-light, + .btn-check:active + .btn-light, .btn-light:active, .btn-light.active, + .show > .btn-light.dropdown-toggle { + color: #000; + background-color: #f9f8ff; + border-color: #f8f7ff; } + .btn-check:checked + .btn-light:focus, + .btn-check:active + .btn-light:focus, .btn-light:active:focus, .btn-light.active:focus, + .show > .btn-light.dropdown-toggle:focus { + box-shadow: 0 0 0 0rem rgba(210, 209, 217, 0.5); } + .btn-light:disabled, .btn-light.disabled { + color: #000; + background-color: #F7F6FF; + border-color: #F7F6FF; } + +.btn-dark { + color: #fff; + background-color: #070707; + border-color: #070707; } + .btn-dark:hover { + color: #fff; + background-color: #060606; + border-color: #060606; } + .btn-check:focus + .btn-dark, .btn-dark:focus { + color: #fff; + background-color: #060606; + border-color: #060606; + box-shadow: 0 0 0 0rem rgba(44, 44, 44, 0.5); } + .btn-check:checked + .btn-dark, + .btn-check:active + .btn-dark, .btn-dark:active, .btn-dark.active, + .show > .btn-dark.dropdown-toggle { + color: #fff; + background-color: #060606; + border-color: #050505; } + .btn-check:checked + .btn-dark:focus, + .btn-check:active + .btn-dark:focus, .btn-dark:active:focus, .btn-dark.active:focus, + .show > .btn-dark.dropdown-toggle:focus { + box-shadow: 0 0 0 0rem rgba(44, 44, 44, 0.5); } + .btn-dark:disabled, .btn-dark.disabled { + color: #fff; + background-color: #070707; + border-color: #070707; } + +.btn-outline-primary { + color: #1652F0; + border-color: #1652F0; } + .btn-outline-primary:hover { + color: #fff; + background-color: #1652F0; + border-color: #1652F0; } + .btn-check:focus + .btn-outline-primary, .btn-outline-primary:focus { + box-shadow: 0 0 0 0rem rgba(22, 82, 240, 0.5); } + .btn-check:checked + .btn-outline-primary, + .btn-check:active + .btn-outline-primary, .btn-outline-primary:active, .btn-outline-primary.active, .btn-outline-primary.dropdown-toggle.show { + color: #fff; + background-color: #1652F0; + border-color: #1652F0; } + .btn-check:checked + .btn-outline-primary:focus, + .btn-check:active + .btn-outline-primary:focus, .btn-outline-primary:active:focus, .btn-outline-primary.active:focus, .btn-outline-primary.dropdown-toggle.show:focus { + box-shadow: 0 0 0 0rem rgba(22, 82, 240, 0.5); } + .btn-outline-primary:disabled, .btn-outline-primary.disabled { + color: #1652F0; + background-color: transparent; } + +.btn-outline-secondary { + color: #f73164; + border-color: #f73164; } + .btn-outline-secondary:hover { + color: #000; + background-color: #f73164; + border-color: #f73164; } + .btn-check:focus + .btn-outline-secondary, .btn-outline-secondary:focus { + box-shadow: 0 0 0 0rem rgba(247, 49, 100, 0.5); } + .btn-check:checked + .btn-outline-secondary, + .btn-check:active + .btn-outline-secondary, .btn-outline-secondary:active, .btn-outline-secondary.active, .btn-outline-secondary.dropdown-toggle.show { + color: #000; + background-color: #f73164; + border-color: #f73164; } + .btn-check:checked + .btn-outline-secondary:focus, + .btn-check:active + .btn-outline-secondary:focus, .btn-outline-secondary:active:focus, .btn-outline-secondary.active:focus, .btn-outline-secondary.dropdown-toggle.show:focus { + box-shadow: 0 0 0 0rem rgba(247, 49, 100, 0.5); } + .btn-outline-secondary:disabled, .btn-outline-secondary.disabled { + color: #f73164; + background-color: transparent; } + +.btn-outline-success { + color: #51BB25; + border-color: #51BB25; } + .btn-outline-success:hover { + color: #000; + background-color: #51BB25; + border-color: #51BB25; } + .btn-check:focus + .btn-outline-success, .btn-outline-success:focus { + box-shadow: 0 0 0 0rem rgba(81, 187, 37, 0.5); } + .btn-check:checked + .btn-outline-success, + .btn-check:active + .btn-outline-success, .btn-outline-success:active, .btn-outline-success.active, .btn-outline-success.dropdown-toggle.show { + color: #000; + background-color: #51BB25; + border-color: #51BB25; } + .btn-check:checked + .btn-outline-success:focus, + .btn-check:active + .btn-outline-success:focus, .btn-outline-success:active:focus, .btn-outline-success.active:focus, .btn-outline-success.dropdown-toggle.show:focus { + box-shadow: 0 0 0 0rem rgba(81, 187, 37, 0.5); } + .btn-outline-success:disabled, .btn-outline-success.disabled { + color: #51BB25; + background-color: transparent; } + +.btn-outline-info { + color: #A927F9; + border-color: #A927F9; } + .btn-outline-info:hover { + color: #fff; + background-color: #A927F9; + border-color: #A927F9; } + .btn-check:focus + .btn-outline-info, .btn-outline-info:focus { + box-shadow: 0 0 0 0rem rgba(169, 39, 249, 0.5); } + .btn-check:checked + .btn-outline-info, + .btn-check:active + .btn-outline-info, .btn-outline-info:active, .btn-outline-info.active, .btn-outline-info.dropdown-toggle.show { + color: #fff; + background-color: #A927F9; + border-color: #A927F9; } + .btn-check:checked + .btn-outline-info:focus, + .btn-check:active + .btn-outline-info:focus, .btn-outline-info:active:focus, .btn-outline-info.active:focus, .btn-outline-info.dropdown-toggle.show:focus { + box-shadow: 0 0 0 0rem rgba(169, 39, 249, 0.5); } + .btn-outline-info:disabled, .btn-outline-info.disabled { + color: #A927F9; + background-color: transparent; } + +.btn-outline-warning { + color: #F8D62B; + border-color: #F8D62B; } + .btn-outline-warning:hover { + color: #000; + background-color: #F8D62B; + border-color: #F8D62B; } + .btn-check:focus + .btn-outline-warning, .btn-outline-warning:focus { + box-shadow: 0 0 0 0rem rgba(248, 214, 43, 0.5); } + .btn-check:checked + .btn-outline-warning, + .btn-check:active + .btn-outline-warning, .btn-outline-warning:active, .btn-outline-warning.active, .btn-outline-warning.dropdown-toggle.show { + color: #000; + background-color: #F8D62B; + border-color: #F8D62B; } + .btn-check:checked + .btn-outline-warning:focus, + .btn-check:active + .btn-outline-warning:focus, .btn-outline-warning:active:focus, .btn-outline-warning.active:focus, .btn-outline-warning.dropdown-toggle.show:focus { + box-shadow: 0 0 0 0rem rgba(248, 214, 43, 0.5); } + .btn-outline-warning:disabled, .btn-outline-warning.disabled { + color: #F8D62B; + 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 0rem rgba(220, 53, 69, 0.5); } + .btn-check:checked + .btn-outline-danger, + .btn-check:active + .btn-outline-danger, .btn-outline-danger:active, .btn-outline-danger.active, .btn-outline-danger.dropdown-toggle.show { + color: #fff; + background-color: #DC3545; + border-color: #DC3545; } + .btn-check:checked + .btn-outline-danger:focus, + .btn-check:active + .btn-outline-danger:focus, .btn-outline-danger:active:focus, .btn-outline-danger.active:focus, .btn-outline-danger.dropdown-toggle.show:focus { + box-shadow: 0 0 0 0rem rgba(220, 53, 69, 0.5); } + .btn-outline-danger:disabled, .btn-outline-danger.disabled { + color: #DC3545; + background-color: transparent; } + +.btn-outline-light { + color: #F7F6FF; + border-color: #F7F6FF; } + .btn-outline-light:hover { + color: #000; + background-color: #F7F6FF; + border-color: #F7F6FF; } + .btn-check:focus + .btn-outline-light, .btn-outline-light:focus { + box-shadow: 0 0 0 0rem rgba(247, 246, 255, 0.5); } + .btn-check:checked + .btn-outline-light, + .btn-check:active + .btn-outline-light, .btn-outline-light:active, .btn-outline-light.active, .btn-outline-light.dropdown-toggle.show { + color: #000; + background-color: #F7F6FF; + border-color: #F7F6FF; } + .btn-check:checked + .btn-outline-light:focus, + .btn-check:active + .btn-outline-light:focus, .btn-outline-light:active:focus, .btn-outline-light.active:focus, .btn-outline-light.dropdown-toggle.show:focus { + box-shadow: 0 0 0 0rem rgba(247, 246, 255, 0.5); } + .btn-outline-light:disabled, .btn-outline-light.disabled { + color: #F7F6FF; + background-color: transparent; } + +.btn-outline-dark { + color: #070707; + border-color: #070707; } + .btn-outline-dark:hover { + color: #fff; + background-color: #070707; + border-color: #070707; } + .btn-check:focus + .btn-outline-dark, .btn-outline-dark:focus { + box-shadow: 0 0 0 0rem rgba(7, 7, 7, 0.5); } + .btn-check:checked + .btn-outline-dark, + .btn-check:active + .btn-outline-dark, .btn-outline-dark:active, .btn-outline-dark.active, .btn-outline-dark.dropdown-toggle.show { + color: #fff; + background-color: #070707; + border-color: #070707; } + .btn-check:checked + .btn-outline-dark:focus, + .btn-check:active + .btn-outline-dark:focus, .btn-outline-dark:active:focus, .btn-outline-dark.active:focus, .btn-outline-dark.dropdown-toggle.show:focus { + box-shadow: 0 0 0 0rem rgba(7, 7, 7, 0.5); } + .btn-outline-dark:disabled, .btn-outline-dark.disabled { + color: #070707; + background-color: transparent; } + +.btn-link { + font-weight: 400; + color: #1652F0; + text-decoration: underline; } + .btn-link:hover { + color: #1242c0; } + .btn-link:disabled, .btn-link.disabled { + color: #6c757d; } + +.btn-lg, .btn-group-lg > .btn { + padding: 0.5rem 1rem; + font-size: 1.09375rem; + border-radius: 0.3rem; } + +.btn-sm, .btn-group-sm > .btn { + padding: 0.25rem 0.5rem; + font-size: 0.76563rem; + border-radius: 0.2rem; } + +.fade { + transition: opacity 0.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 0.35s ease; } + @media (prefers-reduced-motion: reduce) { + .collapsing { + transition: none; } } + +.dropup, +.dropend, +.dropdown, +.dropstart { + position: relative; } + +.dropdown-toggle { + white-space: nowrap; } + .dropdown-toggle::after { + display: inline-block; + margin-left: 0.255em; + vertical-align: 0.255em; + content: ""; + border-top: 0.3em solid; + border-right: 0.3em solid transparent; + border-bottom: 0; + border-left: 0.3em solid transparent; } + .dropdown-toggle:empty::after { + margin-left: 0; } + +.dropdown-menu { + position: absolute; + top: 100%; + z-index: 1000; + display: none; + min-width: 10rem; + padding: 0.5rem 0; + margin: 0; + font-size: 0.875rem; + color: #a2a5b9; + text-align: left; + list-style: none; + background-color: #fff; + background-clip: padding-box; + border: 1px solid rgba(0, 0, 0, 0.15); + border-radius: 6px; } + .dropdown-menu[data-bs-popper] { + left: 0; + margin-top: 0.125rem; } + +.dropdown-menu-start { + --bs-position: start; } + .dropdown-menu-start[data-bs-popper] { + right: auto /* rtl:ignore */; + left: 0 /* rtl:ignore */; } + +.dropdown-menu-end { + --bs-position: end; } + .dropdown-menu-end[data-bs-popper] { + right: 0 /* rtl:ignore */; + left: auto /* rtl:ignore */; } + +@media (min-width: 576px) { + .dropdown-menu-sm-start { + --bs-position: start; } + .dropdown-menu-sm-start[data-bs-popper] { + right: auto /* rtl:ignore */; + left: 0 /* rtl:ignore */; } + .dropdown-menu-sm-end { + --bs-position: end; } + .dropdown-menu-sm-end[data-bs-popper] { + right: 0 /* rtl:ignore */; + left: auto /* rtl:ignore */; } } + +@media (min-width: 768px) { + .dropdown-menu-md-start { + --bs-position: start; } + .dropdown-menu-md-start[data-bs-popper] { + right: auto /* rtl:ignore */; + left: 0 /* rtl:ignore */; } + .dropdown-menu-md-end { + --bs-position: end; } + .dropdown-menu-md-end[data-bs-popper] { + right: 0 /* rtl:ignore */; + left: auto /* rtl:ignore */; } } + +@media (min-width: 992px) { + .dropdown-menu-lg-start { + --bs-position: start; } + .dropdown-menu-lg-start[data-bs-popper] { + right: auto /* rtl:ignore */; + left: 0 /* rtl:ignore */; } + .dropdown-menu-lg-end { + --bs-position: end; } + .dropdown-menu-lg-end[data-bs-popper] { + right: 0 /* rtl:ignore */; + left: auto /* rtl:ignore */; } } + +@media (min-width: 1200px) { + .dropdown-menu-xl-start { + --bs-position: start; } + .dropdown-menu-xl-start[data-bs-popper] { + right: auto /* rtl:ignore */; + left: 0 /* rtl:ignore */; } + .dropdown-menu-xl-end { + --bs-position: end; } + .dropdown-menu-xl-end[data-bs-popper] { + right: 0 /* rtl:ignore */; + left: auto /* rtl:ignore */; } } + +@media (min-width: 1400px) { + .dropdown-menu-xxl-start { + --bs-position: start; } + .dropdown-menu-xxl-start[data-bs-popper] { + right: auto /* rtl:ignore */; + left: 0 /* rtl:ignore */; } + .dropdown-menu-xxl-end { + --bs-position: end; } + .dropdown-menu-xxl-end[data-bs-popper] { + right: 0 /* rtl:ignore */; + left: auto /* rtl:ignore */; } } + +.dropup .dropdown-menu[data-bs-popper] { + top: auto; + bottom: 100%; + margin-top: 0; + margin-bottom: 0.125rem; } + +.dropup .dropdown-toggle::after { + display: inline-block; + margin-left: 0.255em; + vertical-align: 0.255em; + content: ""; + border-top: 0; + border-right: 0.3em solid transparent; + border-bottom: 0.3em solid; + border-left: 0.3em solid transparent; } + +.dropup .dropdown-toggle:empty::after { + margin-left: 0; } + +.dropend .dropdown-menu { + top: 0; + right: auto; + left: 100%; } + .dropend .dropdown-menu[data-bs-popper] { + margin-top: 0; + margin-left: 0.125rem; } + +.dropend .dropdown-toggle::after { + display: inline-block; + margin-left: 0.255em; + vertical-align: 0.255em; + content: ""; + border-top: 0.3em solid transparent; + border-right: 0; + border-bottom: 0.3em solid transparent; + border-left: 0.3em solid; } + +.dropend .dropdown-toggle:empty::after { + margin-left: 0; } + +.dropend .dropdown-toggle::after { + vertical-align: 0; } + +.dropstart .dropdown-menu { + top: 0; + right: 100%; + left: auto; } + .dropstart .dropdown-menu[data-bs-popper] { + margin-top: 0; + margin-right: 0.125rem; } + +.dropstart .dropdown-toggle::after { + display: inline-block; + margin-left: 0.255em; + vertical-align: 0.255em; + content: ""; } + +.dropstart .dropdown-toggle::after { + display: none; } + +.dropstart .dropdown-toggle::before { + display: inline-block; + margin-right: 0.255em; + vertical-align: 0.255em; + content: ""; + border-top: 0.3em solid transparent; + border-right: 0.3em solid; + border-bottom: 0.3em solid transparent; } + +.dropstart .dropdown-toggle:empty::after { + margin-left: 0; } + +.dropstart .dropdown-toggle::before { + vertical-align: 0; } + +.dropdown-divider { + height: 0; + margin: 0.5rem 0; + overflow: hidden; + border-top: 1px solid rgba(0, 0, 0, 0.15); } + +.dropdown-item { + display: block; + width: 100%; + padding: 0.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:hover, .dropdown-item:focus { + color: #1e2125; + background-color: #e9ecef; } + .dropdown-item.active, .dropdown-item:active { + color: #fff; + text-decoration: none; + background-color: #1652F0; } + .dropdown-item.disabled, .dropdown-item:disabled { + color: #adb5bd; + pointer-events: none; + background-color: transparent; } + +.dropdown-menu.show { + display: block; } + +.dropdown-header { + display: block; + padding: 0.5rem 1rem; + margin-bottom: 0; + font-size: 0.76563rem; + color: #6c757d; + white-space: nowrap; } + +.dropdown-item-text { + display: block; + padding: 0.25rem 1rem; + color: #212529; } + +.dropdown-menu-dark { + color: #dee2e6; + background-color: #343a40; + border-color: rgba(0, 0, 0, 0.15); } + .dropdown-menu-dark .dropdown-item { + color: #dee2e6; } + .dropdown-menu-dark .dropdown-item:hover, .dropdown-menu-dark .dropdown-item:focus { + color: #fff; + background-color: rgba(255, 255, 255, 0.15); } + .dropdown-menu-dark .dropdown-item.active, .dropdown-menu-dark .dropdown-item:active { + color: #fff; + background-color: #1652F0; } + .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, 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 > .btn, + .btn-group-vertical > .btn { + position: relative; + flex: 1 1 auto; } + .btn-group > .btn-check:checked + .btn, + .btn-group > .btn-check:focus + .btn, + .btn-group > .btn:hover, + .btn-group > .btn:focus, + .btn-group > .btn:active, + .btn-group > .btn.active, + .btn-group-vertical > .btn-check:checked + .btn, + .btn-group-vertical > .btn-check:focus + .btn, + .btn-group-vertical > .btn:hover, + .btn-group-vertical > .btn:focus, + .btn-group-vertical > .btn:active, + .btn-group-vertical > .btn.active { + z-index: 1; } + +.btn-toolbar { + display: flex; + flex-wrap: wrap; + justify-content: flex-start; } + .btn-toolbar .input-group { + width: auto; } + +.btn-group > .btn:not(:first-child), +.btn-group > .btn-group:not(:first-child) { + margin-left: -1px; } + +.btn-group > .btn:not(:last-child):not(.dropdown-toggle), +.btn-group > .btn-group:not(:last-child) > .btn { + border-top-right-radius: 0; + border-bottom-right-radius: 0; } + +.btn-group > .btn:nth-child(n + 3), +.btn-group > :not(.btn-check) + .btn, +.btn-group > .btn-group:not(:first-child) > .btn { + border-top-left-radius: 0; + border-bottom-left-radius: 0; } + +.dropdown-toggle-split { + padding-right: 0.5625rem; + padding-left: 0.5625rem; } + .dropdown-toggle-split::after, + .dropup .dropdown-toggle-split::after, + .dropend .dropdown-toggle-split::after { + margin-left: 0; } + .dropstart .dropdown-toggle-split::before { + margin-right: 0; } + +.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split { + padding-right: 0.375rem; + padding-left: 0.375rem; } + +.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split { + padding-right: 0.75rem; + padding-left: 0.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:not(:first-child), + .btn-group-vertical > .btn-group:not(:first-child) { + margin-top: -1px; } + .btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle), + .btn-group-vertical > .btn-group:not(:last-child) > .btn { + border-bottom-right-radius: 0; + border-bottom-left-radius: 0; } + .btn-group-vertical > .btn ~ .btn, + .btn-group-vertical > .btn-group:not(:first-child) > .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: 0.5rem 1rem; + text-decoration: none; + transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out; } + @media (prefers-reduced-motion: reduce) { + .nav-link { + transition: none; } } + .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: none; + border: 1px solid transparent; + border-top-left-radius: 6px; + border-top-right-radius: 6px; } + .nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus { + border-color: #e9ecef #e9ecef #dee2e6; + isolation: isolate; } + .nav-tabs .nav-link.disabled { + color: #6c757d; + background-color: transparent; + border-color: transparent; } + .nav-tabs .nav-link.active, + .nav-tabs .nav-item.show .nav-link { + color: #495057; + background-color: #f0f0f0; + border-color: #dee2e6 #dee2e6 #f0f0f0; } + .nav-tabs .dropdown-menu { + margin-top: -1px; + border-top-left-radius: 0; + border-top-right-radius: 0; } + +.nav-pills .nav-link { + background: none; + border: 0; + border-radius: 6px; } + +.nav-pills .nav-link.active, +.nav-pills .show > .nav-link { + color: #fff; + background-color: #1652F0; } + +.nav-fill > .nav-link, +.nav-fill .nav-item { + flex: 1 1 auto; + text-align: center; } + +.nav-justified > .nav-link, +.nav-justified .nav-item { + 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: 0.5rem; + padding-bottom: 0.5rem; } + .navbar > .container, + .navbar > .container-fluid, .navbar > .container-sm, .navbar > .container-md, .navbar > .container-lg, .navbar > .container-xl, .navbar > .container-xxl { + display: flex; + flex-wrap: inherit; + align-items: center; + justify-content: space-between; } + +.navbar-brand { + padding-top: 0.33594rem; + padding-bottom: 0.33594rem; + margin-right: 1rem; + font-size: 1.09375rem; + 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: 0.5rem; + padding-bottom: 0.5rem; } + +.navbar-collapse { + flex-basis: 100%; + flex-grow: 1; + align-items: center; } + +.navbar-toggler { + padding: 0.25rem 0.75rem; + font-size: 1.09375rem; + line-height: 1; + background-color: transparent; + border: 1px solid transparent; + border-radius: 6px; + transition: box-shadow 0.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 0rem; } + +.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: 0.5rem; + padding-left: 0.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: 0.5rem; + padding-left: 0.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: 0.5rem; + padding-left: 0.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: 0.5rem; + padding-left: 0.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: 0.5rem; + padding-left: 0.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: 0.5rem; + padding-left: 0.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, 0.9); } + .navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus { + color: rgba(0, 0, 0, 0.9); } + +.navbar-light .navbar-nav .nav-link { + color: rgba(0, 0, 0, 0.55); } + .navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus { + color: rgba(0, 0, 0, 0.7); } + .navbar-light .navbar-nav .nav-link.disabled { + color: rgba(0, 0, 0, 0.3); } + +.navbar-light .navbar-nav .show > .nav-link, +.navbar-light .navbar-nav .nav-link.active { + color: rgba(0, 0, 0, 0.9); } + +.navbar-light .navbar-toggler { + color: rgba(0, 0, 0, 0.55); + border-color: rgba(0, 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, 0.55); } + .navbar-light .navbar-text a, + .navbar-light .navbar-text a:hover, + .navbar-light .navbar-text a:focus { + color: rgba(0, 0, 0, 0.9); } + +.navbar-dark .navbar-brand { + color: #fff; } + .navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus { + color: #fff; } + +.navbar-dark .navbar-nav .nav-link { + color: rgba(255, 255, 255, 0.55); } + .navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus { + color: rgba(255, 255, 255, 0.75); } + .navbar-dark .navbar-nav .nav-link.disabled { + color: rgba(255, 255, 255, 0.25); } + +.navbar-dark .navbar-nav .show > .nav-link, +.navbar-dark .navbar-nav .nav-link.active { + color: #fff; } + +.navbar-dark .navbar-toggler { + color: rgba(255, 255, 255, 0.55); + border-color: rgba(255, 255, 255, 0.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, 0.55); } + .navbar-dark .navbar-text a, + .navbar-dark .navbar-text a:hover, + .navbar-dark .navbar-text a:focus { + 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, 0.125); + border-radius: 6px; } + .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: 5px; + border-top-right-radius: 5px; } + .card > .list-group:last-child { + border-bottom-width: 0; + border-bottom-right-radius: 5px; + border-bottom-left-radius: 5px; } + .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: 0.5rem; } + +.card-subtitle { + margin-top: -0.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: 0.5rem 1rem; + margin-bottom: 0; + background-color: rgba(0, 0, 0, 0.03); + border-bottom: 1px solid rgba(0, 0, 0, 0.125); } + .card-header:first-child { + border-radius: 5px 5px 0 0; } + +.card-footer { + padding: 0.5rem 1rem; + background-color: rgba(0, 0, 0, 0.03); + border-top: 1px solid rgba(0, 0, 0, 0.125); } + .card-footer:last-child { + border-radius: 0 0 5px 5px; } + +.card-header-tabs { + margin-right: -0.5rem; + margin-bottom: -0.5rem; + margin-left: -0.5rem; + border-bottom: 0; } + .card-header-tabs .nav-link.active { + background-color: #fff; + border-bottom-color: #fff; } + +.card-header-pills { + margin-right: -0.5rem; + margin-left: -0.5rem; } + +.card-img-overlay { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + padding: 1rem; + border-radius: 5px; } + +.card-img, +.card-img-top, +.card-img-bottom { + width: 100%; } + +.card-img, +.card-img-top { + border-top-left-radius: 5px; + border-top-right-radius: 5px; } + +.card-img, +.card-img-bottom { + border-bottom-right-radius: 5px; + border-bottom-left-radius: 5px; } + +.card-group > .card { + margin-bottom: 15px; } + +@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-img-top, + .card-group > .card:not(:last-child) .card-header { + border-top-right-radius: 0; } + .card-group > .card:not(:last-child) .card-img-bottom, + .card-group > .card:not(:last-child) .card-footer { + 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-img-top, + .card-group > .card:not(:first-child) .card-header { + border-top-left-radius: 0; } + .card-group > .card:not(:first-child) .card-img-bottom, + .card-group > .card:not(:first-child) .card-footer { + border-bottom-left-radius: 0; } } + +.accordion-button { + position: relative; + display: flex; + align-items: center; + width: 100%; + padding: 1rem 1.25rem; + font-size: 0.875rem; + color: #a2a5b9; + text-align: left; + background-color: #f0f0f0; + border: 0; + border-radius: 0; + overflow-anchor: none; + transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease; } + @media (prefers-reduced-motion: reduce) { + .accordion-button { + transition: none; } } + .accordion-button:not(.collapsed) { + color: #144ad8; + background-color: #e8eefe; + box-shadow: inset 0 -1px 0 rgba(0, 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='%23144ad8'%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='%23a2a5b9'%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 0.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: #8ba9f8; + outline: 0; + box-shadow: 0 0 0 0rem rgba(22, 82, 240, 0.25); } + +.accordion-header { + margin-bottom: 0; } + +.accordion-item { + margin-bottom: -1px; + background-color: #f0f0f0; + border: 1px solid rgba(0, 0, 0, 0.125); } + .accordion-item:first-of-type { + border-top-left-radius: 6px; + border-top-right-radius: 6px; } + .accordion-item:first-of-type .accordion-button { + border-top-left-radius: 5px; + border-top-right-radius: 5px; } + .accordion-item:last-of-type { + margin-bottom: 0; + border-bottom-right-radius: 6px; + border-bottom-left-radius: 6px; } + .accordion-item:last-of-type .accordion-button.collapsed { + border-bottom-right-radius: 5px; + border-bottom-left-radius: 5px; } + .accordion-item:last-of-type .accordion-collapse { + border-bottom-right-radius: 6px; + border-bottom-left-radius: 6px; } + +.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: 0.5rem; } + .breadcrumb-item + .breadcrumb-item::before { + float: left; + padding-right: 0.5rem; + color: #6c757d; + content: var(--bs-breadcrumb-divider, "/") /* rtl: 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: #1652F0; + text-decoration: none; + background-color: #fff; + border: 1px solid #dee2e6; + transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; } + @media (prefers-reduced-motion: reduce) { + .page-link { + transition: none; } } + .page-link:hover { + z-index: 2; + color: #1242c0; + background-color: #e9ecef; + border-color: #dee2e6; } + .page-link:focus { + z-index: 3; + color: #1242c0; + background-color: #e9ecef; + outline: 0; + box-shadow: 0 0 0 0rem rgba(22, 82, 240, 0.25); } + +.page-item:not(:first-child) .page-link { + margin-left: -1px; } + +.page-item.active .page-link { + z-index: 3; + color: #fff; + background-color: #1652F0; + border-color: #1652F0; } + +.page-item.disabled .page-link { + color: #6c757d; + pointer-events: none; + background-color: #fff; + border-color: #dee2e6; } + +.page-link { + padding: 0.375rem 0.75rem; } + +.page-item:first-child .page-link { + border-top-left-radius: 6px; + border-bottom-left-radius: 6px; } + +.page-item:last-child .page-link { + border-top-right-radius: 6px; + border-bottom-right-radius: 6px; } + +.pagination-lg .page-link { + padding: 0.75rem 1.5rem; + font-size: 1.09375rem; } + +.pagination-lg .page-item:first-child .page-link { + border-top-left-radius: 0.3rem; + border-bottom-left-radius: 0.3rem; } + +.pagination-lg .page-item:last-child .page-link { + border-top-right-radius: 0.3rem; + border-bottom-right-radius: 0.3rem; } + +.pagination-sm .page-link { + padding: 0.25rem 0.5rem; + font-size: 0.76563rem; } + +.pagination-sm .page-item:first-child .page-link { + border-top-left-radius: 0.2rem; + border-bottom-left-radius: 0.2rem; } + +.pagination-sm .page-item:last-child .page-link { + border-top-right-radius: 0.2rem; + border-bottom-right-radius: 0.2rem; } + +.badge { + display: inline-block; + padding: 0.35em 0.65em; + font-size: 0.75em; + font-weight: 700; + line-height: 1; + color: #fff; + text-align: center; + white-space: nowrap; + vertical-align: baseline; + border-radius: 6px; } + .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: 6px; } + +.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: #0d3190; + background-color: #d0dcfc; + border-color: #b9cbfb; } + .alert-primary .alert-link { + color: #0a2773; } + +.alert-secondary { + color: #941d3c; + background-color: #fdd6e0; + border-color: #fdc1d1; } + .alert-secondary .alert-link { + color: #761730; } + +.alert-success { + color: #317016; + background-color: #dcf1d3; + border-color: #cbebbe; } + .alert-success .alert-link { + color: #275a12; } + +.alert-info { + color: #651795; + background-color: #eed4fe; + border-color: #e5befd; } + .alert-info .alert-link { + color: #511277; } + +.alert-warning { + color: #635611; + background-color: #fef7d5; + border-color: #fdf3bf; } + .alert-warning .alert-link { + color: #4f450e; } + +.alert-danger { + color: #842029; + background-color: #f8d7da; + border-color: #f5c2c7; } + .alert-danger .alert-link { + color: #6a1a21; } + +.alert-light { + color: #636266; + background-color: #fdfdff; + border-color: #fdfcff; } + .alert-light .alert-link { + color: #4f4e52; } + +.alert-dark { + color: #040404; + background-color: #cdcdcd; + border-color: #b5b5b5; } + .alert-dark .alert-link { + color: #030303; } + +@keyframes progress-bar-stripes { + 0% { + background-position-x: 1rem; } } + +.progress { + display: flex; + height: 1rem; + overflow: hidden; + font-size: 0.65625rem; + background-color: #e9ecef; + border-radius: 6px; } + +.progress-bar { + display: flex; + flex-direction: column; + justify-content: center; + overflow: hidden; + color: #fff; + text-align: center; + white-space: nowrap; + background-color: #1652F0; + transition: width 0.6s ease; } + @media (prefers-reduced-motion: reduce) { + .progress-bar { + transition: none; } } + +.progress-bar-striped { + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-size: 1rem 1rem; } + +.progress-bar-animated { + animation: 1s linear infinite progress-bar-stripes; } + @media (prefers-reduced-motion: reduce) { + .progress-bar-animated { + animation: none; } } + +.list-group { + display: flex; + flex-direction: column; + padding-left: 0; + margin-bottom: 0; + border-radius: 6px; } + +.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:hover, .list-group-item-action:focus { + z-index: 1; + color: #495057; + text-decoration: none; + background-color: #f8f9fa; } + .list-group-item-action:active { + color: #a2a5b9; + background-color: #e9ecef; } + +.list-group-item { + position: relative; + display: block; + padding: 0.5rem 1rem; + color: #212529; + text-decoration: none; + background-color: #fff; + border: 1px solid rgba(0, 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: #1652F0; + border-color: #1652F0; } + .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: 6px; + border-top-right-radius: 0; } + .list-group-horizontal > .list-group-item:last-child { + border-top-right-radius: 6px; + 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: 6px; + border-top-right-radius: 0; } + .list-group-horizontal-sm > .list-group-item:last-child { + border-top-right-radius: 6px; + 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: 6px; + border-top-right-radius: 0; } + .list-group-horizontal-md > .list-group-item:last-child { + border-top-right-radius: 6px; + 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: 6px; + border-top-right-radius: 0; } + .list-group-horizontal-lg > .list-group-item:last-child { + border-top-right-radius: 6px; + 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: 6px; + border-top-right-radius: 0; } + .list-group-horizontal-xl > .list-group-item:last-child { + border-top-right-radius: 6px; + 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: 6px; + border-top-right-radius: 0; } + .list-group-horizontal-xxl > .list-group-item:last-child { + border-top-right-radius: 6px; + 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: #0d3190; + background-color: #d0dcfc; } + .list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus { + color: #0d3190; + background-color: #bbc6e3; } + .list-group-item-primary.list-group-item-action.active { + color: #fff; + background-color: #0d3190; + border-color: #0d3190; } + +.list-group-item-secondary { + color: #941d3c; + background-color: #fdd6e0; } + .list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus { + color: #941d3c; + background-color: #e4c1ca; } + .list-group-item-secondary.list-group-item-action.active { + color: #fff; + background-color: #941d3c; + border-color: #941d3c; } + +.list-group-item-success { + color: #317016; + background-color: #dcf1d3; } + .list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus { + color: #317016; + background-color: #c6d9be; } + .list-group-item-success.list-group-item-action.active { + color: #fff; + background-color: #317016; + border-color: #317016; } + +.list-group-item-info { + color: #651795; + background-color: #eed4fe; } + .list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus { + color: #651795; + background-color: #d6bfe5; } + .list-group-item-info.list-group-item-action.active { + color: #fff; + background-color: #651795; + border-color: #651795; } + +.list-group-item-warning { + color: #635611; + background-color: #fef7d5; } + .list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus { + color: #635611; + background-color: #e5dec0; } + .list-group-item-warning.list-group-item-action.active { + color: #fff; + background-color: #635611; + border-color: #635611; } + +.list-group-item-danger { + color: #842029; + background-color: #f8d7da; } + .list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus { + 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: #636266; + background-color: #fdfdff; } + .list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus { + color: #636266; + background-color: #e4e4e6; } + .list-group-item-light.list-group-item-action.active { + color: #fff; + background-color: #636266; + border-color: #636266; } + +.list-group-item-dark { + color: #040404; + background-color: #cdcdcd; } + .list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus { + color: #040404; + background-color: #b9b9b9; } + .list-group-item-dark.list-group-item-action.active { + color: #fff; + background-color: #040404; + border-color: #040404; } + +.btn-close { + box-sizing: content-box; + width: 1em; + height: 1em; + padding: 0.25em 0.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: 6px; + opacity: 0.5; } + .btn-close:hover { + color: #000; + text-decoration: none; + opacity: 0.75; } + .btn-close:focus { + outline: 0; + box-shadow: 0 0 0 0rem rgba(22, 82, 240, 0.25); + opacity: 1; } + .btn-close:disabled, .btn-close.disabled { + pointer-events: none; + user-select: none; + opacity: 0.25; } + +.btn-close-white { + filter: invert(1) grayscale(100%) brightness(200%); } + +.toast { + width: 350px; + max-width: 100%; + font-size: 0.875rem; + pointer-events: auto; + background-color: rgba(255, 255, 255, 0.85); + background-clip: padding-box; + border: 1px solid rgba(0, 0, 0, 0.1); + box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15); + border-radius: 6px; } + .toast:not(.showing):not(.show) { + opacity: 0; } + .toast.hide { + display: none; } + +.toast-container { + width: max-content; + max-width: 100%; + pointer-events: none; } + .toast-container > :not(:last-child) { + margin-bottom: 15px; } + +.toast-header { + display: flex; + align-items: center; + padding: 0.5rem 0.75rem; + color: #6c757d; + background-color: rgba(255, 255, 255, 0.85); + background-clip: padding-box; + border-bottom: 1px solid rgba(0, 0, 0, 0.05); + border-top-left-radius: 5px; + border-top-right-radius: 5px; } + .toast-header .btn-close { + margin-right: -0.375rem; + margin-left: 0.75rem; } + +.toast-body { + padding: 0.75rem; + word-wrap: break-word; } + +.modal-open { + overflow: hidden; } + .modal-open .modal { + overflow-x: hidden; + overflow-y: auto; } + +.modal { + position: fixed; + top: 0; + left: 0; + z-index: 1060; + display: none; + width: 100%; + height: 100%; + overflow: hidden; + outline: 0; } + +.modal-dialog { + position: relative; + width: auto; + margin: 0.5rem; + pointer-events: none; } + .modal.fade .modal-dialog { + transition: transform 0.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, 0.2); + border-radius: 0.3rem; + outline: 0; } + +.modal-backdrop { + position: fixed; + top: 0; + left: 0; + z-index: 1050; + width: 100vw; + height: 100vh; + background-color: #000; } + .modal-backdrop.fade { + opacity: 0; } + .modal-backdrop.show { + opacity: 0.5; } + +.modal-header { + display: flex; + flex-shrink: 0; + align-items: center; + justify-content: space-between; + padding: 1rem 1rem; + border-bottom: 1px solid #e5e5e5; + border-top-left-radius: calc(0.3rem - 1px); + border-top-right-radius: calc(0.3rem - 1px); } + .modal-header .btn-close { + padding: 0.5rem 0.5rem; + margin: -0.5rem -0.5rem -0.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: 0.75rem; + border-top: 1px solid #e5e5e5; + border-bottom-right-radius: calc(0.3rem - 1px); + border-bottom-left-radius: calc(0.3rem - 1px); } + .modal-footer > * { + margin: 0.25rem; } + +.modal-scrollbar-measure { + position: absolute; + top: -9999px; + width: 50px; + height: 50px; + overflow: scroll; } + +@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: "Roboto", 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: 0.76563rem; + word-wrap: break-word; + opacity: 0; } + .tooltip.show { + opacity: 0.9; } + .tooltip .tooltip-arrow { + position: absolute; + display: block; + width: 0.8rem; + height: 0.4rem; } + .tooltip .tooltip-arrow::before { + position: absolute; + content: ""; + border-color: transparent; + border-style: solid; } + +.bs-tooltip-top, .bs-tooltip-auto[data-popper-placement^="top"] { + padding: 0.4rem 0; } + .bs-tooltip-top .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^="top"] .tooltip-arrow { + bottom: 0; } + .bs-tooltip-top .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^="top"] .tooltip-arrow::before { + top: -1px; + border-width: 0.4rem 0.4rem 0; + border-top-color: #000; } + +.bs-tooltip-end, .bs-tooltip-auto[data-popper-placement^="right"] { + padding: 0 0.4rem; } + .bs-tooltip-end .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^="right"] .tooltip-arrow { + left: 0; + width: 0.4rem; + height: 0.8rem; } + .bs-tooltip-end .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^="right"] .tooltip-arrow::before { + right: -1px; + border-width: 0.4rem 0.4rem 0.4rem 0; + border-right-color: #000; } + +.bs-tooltip-bottom, .bs-tooltip-auto[data-popper-placement^="bottom"] { + padding: 0.4rem 0; } + .bs-tooltip-bottom .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^="bottom"] .tooltip-arrow { + top: 0; } + .bs-tooltip-bottom .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^="bottom"] .tooltip-arrow::before { + bottom: -1px; + border-width: 0 0.4rem 0.4rem; + border-bottom-color: #000; } + +.bs-tooltip-start, .bs-tooltip-auto[data-popper-placement^="left"] { + padding: 0 0.4rem; } + .bs-tooltip-start .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^="left"] .tooltip-arrow { + right: 0; + width: 0.4rem; + height: 0.8rem; } + .bs-tooltip-start .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^="left"] .tooltip-arrow::before { + left: -1px; + border-width: 0.4rem 0 0.4rem 0.4rem; + border-left-color: #000; } + +.tooltip-inner { + max-width: 200px; + padding: 0.25rem 0.5rem; + color: #fff; + text-align: center; + background-color: #000; + border-radius: 6px; } + +.popover { + position: absolute; + top: 0; + left: 0 /* rtl:ignore */; + z-index: 1070; + display: block; + max-width: 276px; + font-family: "Roboto", 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: 0.76563rem; + word-wrap: break-word; + background-color: #fff; + background-clip: padding-box; + border: 1px solid rgba(0, 0, 0, 0.2); + border-radius: 0.3rem; } + .popover .popover-arrow { + position: absolute; + display: block; + width: 1rem; + height: 0.5rem; } + .popover .popover-arrow::before, .popover .popover-arrow::after { + position: absolute; + display: block; + content: ""; + border-color: transparent; + border-style: solid; } + +.bs-popover-top > .popover-arrow, .bs-popover-auto[data-popper-placement^="top"] > .popover-arrow { + bottom: calc(-0.5rem - 1px); } + .bs-popover-top > .popover-arrow::before, .bs-popover-auto[data-popper-placement^="top"] > .popover-arrow::before { + bottom: 0; + border-width: 0.5rem 0.5rem 0; + border-top-color: rgba(0, 0, 0, 0.25); } + .bs-popover-top > .popover-arrow::after, .bs-popover-auto[data-popper-placement^="top"] > .popover-arrow::after { + bottom: 1px; + border-width: 0.5rem 0.5rem 0; + border-top-color: #fff; } + +.bs-popover-end > .popover-arrow, .bs-popover-auto[data-popper-placement^="right"] > .popover-arrow { + left: calc(-0.5rem - 1px); + width: 0.5rem; + height: 1rem; } + .bs-popover-end > .popover-arrow::before, .bs-popover-auto[data-popper-placement^="right"] > .popover-arrow::before { + left: 0; + border-width: 0.5rem 0.5rem 0.5rem 0; + border-right-color: rgba(0, 0, 0, 0.25); } + .bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^="right"] > .popover-arrow::after { + left: 1px; + border-width: 0.5rem 0.5rem 0.5rem 0; + border-right-color: #fff; } + +.bs-popover-bottom > .popover-arrow, .bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow { + top: calc(-0.5rem - 1px); } + .bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow::before { + top: 0; + border-width: 0 0.5rem 0.5rem 0.5rem; + border-bottom-color: rgba(0, 0, 0, 0.25); } + .bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow::after { + top: 1px; + border-width: 0 0.5rem 0.5rem 0.5rem; + border-bottom-color: #fff; } + +.bs-popover-bottom .popover-header::before, .bs-popover-auto[data-popper-placement^="bottom"] .popover-header::before { + position: absolute; + top: 0; + left: 50%; + display: block; + width: 1rem; + margin-left: -0.5rem; + content: ""; + border-bottom: 1px solid #f0f0f0; } + +.bs-popover-start > .popover-arrow, .bs-popover-auto[data-popper-placement^="left"] > .popover-arrow { + right: calc(-0.5rem - 1px); + width: 0.5rem; + height: 1rem; } + .bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^="left"] > .popover-arrow::before { + right: 0; + border-width: 0.5rem 0 0.5rem 0.5rem; + border-left-color: rgba(0, 0, 0, 0.25); } + .bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^="left"] > .popover-arrow::after { + right: 1px; + border-width: 0.5rem 0 0.5rem 0.5rem; + border-left-color: #fff; } + +.popover-header { + padding: 0.5rem 1rem; + margin-bottom: 0; + font-size: 0.875rem; + color: #212529; + background-color: #f0f0f0; + border-bottom: 1px solid #d8d8d8; + border-top-left-radius: calc(0.3rem - 1px); + border-top-right-radius: calc(0.3rem - 1px); } + .popover-header:empty { + display: none; } + +.popover-body { + padding: 1rem 1rem; + color: #a2a5b9; } + +.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%; + backface-visibility: hidden; + transition: transform 0.6s ease-in-out; } + @media (prefers-reduced-motion: reduce) { + .carousel-item { + transition: none; } } + +.carousel-item.active, +.carousel-item-next, +.carousel-item-prev { + display: block; } + +/* rtl:begin:ignore */ +.carousel-item-next:not(.carousel-item-start), +.active.carousel-item-end { + transform: translateX(100%); } + +.carousel-item-prev:not(.carousel-item-end), +.active.carousel-item-start { + transform: translateX(-100%); } + +/* rtl:end:ignore */ +.carousel-fade .carousel-item { + opacity: 0; + transition-property: opacity; + transform: none; } + +.carousel-fade .carousel-item.active, +.carousel-fade .carousel-item-next.carousel-item-start, +.carousel-fade .carousel-item-prev.carousel-item-end { + z-index: 1; + opacity: 1; } + +.carousel-fade .active.carousel-item-start, +.carousel-fade .active.carousel-item-end { + z-index: 0; + opacity: 0; + transition: opacity 0s 0.6s; } + @media (prefers-reduced-motion: reduce) { + .carousel-fade .active.carousel-item-start, + .carousel-fade .active.carousel-item-end { + transition: none; } } + +.carousel-control-prev, +.carousel-control-next { + 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: none; + border: 0; + opacity: 0.5; + transition: opacity 0.15s ease; } + @media (prefers-reduced-motion: reduce) { + .carousel-control-prev, + .carousel-control-next { + transition: none; } } + .carousel-control-prev:hover, .carousel-control-prev:focus, + .carousel-control-next:hover, + .carousel-control-next:focus { + color: #fff; + text-decoration: none; + outline: 0; + opacity: 0.9; } + +.carousel-control-prev { + left: 0; } + +.carousel-control-next { + right: 0; } + +.carousel-control-prev-icon, +.carousel-control-next-icon { + display: inline-block; + width: 2rem; + height: 2rem; + background-repeat: no-repeat; + background-position: 50%; + background-size: 100% 100%; } + +/* rtl:options: { + "autoRename": true, + "stringMap":[ { + "name" : "prev-next", + "search" : "prev", + "replace" : "next" + } ] +} */ +.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: 0.5; + transition: opacity 0.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-prev-icon, +.carousel-dark .carousel-control-next-icon { + filter: invert(1) grayscale(100); } + +.carousel-dark .carousel-indicators [data-bs-target] { + background-color: #000; } + +.carousel-dark .carousel-caption { + color: #000; } + +@keyframes spinner-border { + to { + transform: rotate(360deg) /* rtl:ignore */; } } + +.spinner-border { + display: inline-block; + width: 2rem; + height: 2rem; + vertical-align: text-bottom; + border: 0.25em solid currentColor; + border-right-color: transparent; + border-radius: 50%; + animation: 0.75s linear infinite spinner-border; } + +.spinner-border-sm { + width: 1rem; + height: 1rem; + border-width: 0.2em; } + +@keyframes spinner-grow { + 0% { + transform: scale(0); } + 50% { + opacity: 1; + transform: none; } } + +.spinner-grow { + display: inline-block; + width: 2rem; + height: 2rem; + vertical-align: text-bottom; + background-color: currentColor; + border-radius: 50%; + opacity: 0; + animation: 0.75s linear infinite spinner-grow; } + +.spinner-grow-sm { + width: 1rem; + height: 1rem; } + +@media (prefers-reduced-motion: reduce) { + .spinner-border, + .spinner-grow { + animation-duration: 1.5s; } } + +.offcanvas { + position: fixed; + bottom: 0; + z-index: 1040; + display: flex; + flex-direction: column; + max-width: 100%; + visibility: hidden; + background-color: #fff; + background-clip: padding-box; + outline: 0; + transition: transform 0.3s ease-in-out; } + @media (prefers-reduced-motion: reduce) { + .offcanvas { + transition: none; } } + +.offcanvas-header { + display: flex; + justify-content: space-between; + padding: 1rem 1rem; } + .offcanvas-header .btn-close { + padding: 0.5rem 0.5rem; + margin: -0.5rem -0.5rem -0.5rem auto; } + +.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, 0.2); + transform: translateX(-100%); } + +.offcanvas-end { + top: 0; + right: 0; + width: 400px; + border-left: 1px solid rgba(0, 0, 0, 0.2); + transform: translateX(100%); } + +.offcanvas-bottom { + right: 0; + left: 0; + height: 30vh; + max-height: 100%; + border-top: 1px solid rgba(0, 0, 0, 0.2); + transform: translateY(100%); } + +.offcanvas.show { + transform: none; } + +.offcanvas-backdrop::before { + position: fixed; + top: 0; + left: 0; + z-index: 1039; + width: 100vw; + height: 100vh; + content: ""; + background-color: rgba(0, 0, 0, 0.5); } + +.clearfix::after { + display: block; + clear: both; + content: ""; } + +.link-primary { + color: #1652F0; } + .link-primary:hover, .link-primary:focus { + color: #1242c0; } + +.link-secondary { + color: #f73164; } + .link-secondary:hover, .link-secondary:focus { + color: #f95a83; } + +.link-success { + color: #51BB25; } + .link-success:hover, .link-success:focus { + color: #74c951; } + +.link-info { + color: #A927F9; } + .link-info:hover, .link-info:focus { + color: #871fc7; } + +.link-warning { + color: #F8D62B; } + .link-warning:hover, .link-warning:focus { + color: #f9de55; } + +.link-danger { + color: #DC3545; } + .link-danger:hover, .link-danger:focus { + color: #b02a37; } + +.link-light { + color: #F7F6FF; } + .link-light:hover, .link-light:focus { + color: #f9f8ff; } + +.link-dark { + color: #070707; } + .link-dark:hover, .link-dark:focus { + color: #060606; } + +.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: sticky; + top: 0; + z-index: 1020; } + +@media (min-width: 576px) { + .sticky-sm-top { + position: sticky; + top: 0; + z-index: 1020; } } + +@media (min-width: 768px) { + .sticky-md-top { + position: sticky; + top: 0; + z-index: 1020; } } + +@media (min-width: 992px) { + .sticky-lg-top { + position: sticky; + top: 0; + z-index: 1020; } } + +@media (min-width: 1200px) { + .sticky-xl-top { + position: sticky; + top: 0; + z-index: 1020; } } + +@media (min-width: 1400px) { + .sticky-xxl-top { + 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 0.5rem 1rem rgba(0, 0, 0, 0.15) !important; } + +.shadow-sm { + box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important; } + +.shadow-lg { + box-shadow: 0 1rem 3rem rgba(0, 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: 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 #e5e5e5 !important; } + +.border-0 { + border: 0 !important; } + +.border-top { + border-top: 1px solid #e5e5e5 !important; } + +.border-top-0 { + border-top: 0 !important; } + +.border-end { + border-right: 1px solid #e5e5e5 !important; } + +.border-end-0 { + border-right: 0 !important; } + +.border-bottom { + border-bottom: 1px solid #e5e5e5 !important; } + +.border-bottom-0 { + border-bottom: 0 !important; } + +.border-start { + border-left: 1px solid #e5e5e5 !important; } + +.border-start-0 { + border-left: 0 !important; } + +.border-primary { + border-color: #1652F0 !important; } + +.border-secondary { + border-color: #f73164 !important; } + +.border-success { + border-color: #51BB25 !important; } + +.border-info { + border-color: #A927F9 !important; } + +.border-warning { + border-color: #F8D62B !important; } + +.border-danger { + border-color: #DC3545 !important; } + +.border-light { + border-color: #F7F6FF !important; } + +.border-dark { + border-color: #070707 !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: 0.25rem !important; } + +.gap-2 { + gap: 0.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: 0.25rem !important; } + +.m-2 { + margin: 0.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: 0.25rem !important; + margin-left: 0.25rem !important; } + +.mx-2 { + margin-right: 0.5rem !important; + margin-left: 0.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: 0.25rem !important; + margin-bottom: 0.25rem !important; } + +.my-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.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: 0.25rem !important; } + +.mt-2 { + margin-top: 0.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: 0.25rem !important; } + +.me-2 { + margin-right: 0.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: 0.25rem !important; } + +.mb-2 { + margin-bottom: 0.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: 0.25rem !important; } + +.ms-2 { + margin-left: 0.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: 0.25rem !important; } + +.p-2 { + padding: 0.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: 0.25rem !important; + padding-left: 0.25rem !important; } + +.px-2 { + padding-right: 0.5rem !important; + padding-left: 0.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: 0.25rem !important; + padding-bottom: 0.25rem !important; } + +.py-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.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: 0.25rem !important; } + +.pt-2 { + padding-top: 0.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: 0.25rem !important; } + +.pe-2 { + padding-right: 0.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: 0.25rem !important; } + +.pb-2 { + padding-bottom: 0.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: 0.25rem !important; } + +.ps-2 { + padding-left: 0.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.35rem + 1.2vw) !important; } + +.fs-2 { + font-size: calc(1.3125rem + 0.75vw) !important; } + +.fs-3 { + font-size: calc(1.275rem + 0.3vw) !important; } + +.fs-4 { + font-size: 1.125rem !important; } + +.fs-5 { + font-size: 1rem !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; } + +/* rtl:begin:remove */ +.text-break { + word-wrap: break-word !important; + word-break: break-word !important; } + +/* rtl:end:remove */ +.text-primary { + color: #1652F0 !important; } + +.text-secondary { + color: #f73164 !important; } + +.text-success { + color: #51BB25 !important; } + +.text-info { + color: #A927F9 !important; } + +.text-warning { + color: #F8D62B !important; } + +.text-danger { + color: #DC3545 !important; } + +.text-light { + color: #F7F6FF !important; } + +.text-dark { + color: #070707 !important; } + +.text-white { + color: #fff !important; } + +.text-body { + color: #a2a5b9 !important; } + +.text-muted { + color: #7184ad !important; } + +.text-black-50 { + color: rgba(0, 0, 0, 0.5) !important; } + +.text-white-50 { + color: rgba(255, 255, 255, 0.5) !important; } + +.text-reset { + color: inherit !important; } + +.bg-primary { + background-color: #1652F0 !important; } + +.bg-secondary { + background-color: #f73164 !important; } + +.bg-success { + background-color: #51BB25 !important; } + +.bg-info { + background-color: #A927F9 !important; } + +.bg-warning { + background-color: #F8D62B !important; } + +.bg-danger { + background-color: #DC3545 !important; } + +.bg-light { + background-color: #F7F6FF !important; } + +.bg-dark { + background-color: #070707 !important; } + +.bg-body { + background-color: #f0f0f0 !important; } + +.bg-white { + background-color: #fff !important; } + +.bg-transparent { + background-color: transparent !important; } + +.bg-gradient { + background-image: var(--bs-gradient) !important; } + +.user-select-all { + user-select: all !important; } + +.user-select-auto { + user-select: auto !important; } + +.user-select-none { + user-select: none !important; } + +.pe-none { + pointer-events: none !important; } + +.pe-auto { + pointer-events: auto !important; } + +.rounded { + border-radius: 6px !important; } + +.rounded-0 { + border-radius: 0 !important; } + +.rounded-1 { + border-radius: 0.2rem !important; } + +.rounded-2 { + border-radius: 6px !important; } + +.rounded-3 { + border-radius: 0.3rem !important; } + +.rounded-circle { + border-radius: 50% !important; } + +.rounded-pill { + border-radius: 50rem !important; } + +.rounded-top { + border-top-left-radius: 6px !important; + border-top-right-radius: 6px !important; } + +.rounded-end { + border-top-right-radius: 6px !important; + border-bottom-right-radius: 6px !important; } + +.rounded-bottom { + border-bottom-right-radius: 6px !important; + border-bottom-left-radius: 6px !important; } + +.rounded-start { + border-bottom-left-radius: 6px !important; + border-top-left-radius: 6px !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: 0.25rem !important; } + .gap-sm-2 { + gap: 0.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: 0.25rem !important; } + .m-sm-2 { + margin: 0.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: 0.25rem !important; + margin-left: 0.25rem !important; } + .mx-sm-2 { + margin-right: 0.5rem !important; + margin-left: 0.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: 0.25rem !important; + margin-bottom: 0.25rem !important; } + .my-sm-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.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: 0.25rem !important; } + .mt-sm-2 { + margin-top: 0.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: 0.25rem !important; } + .me-sm-2 { + margin-right: 0.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: 0.25rem !important; } + .mb-sm-2 { + margin-bottom: 0.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: 0.25rem !important; } + .ms-sm-2 { + margin-left: 0.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: 0.25rem !important; } + .p-sm-2 { + padding: 0.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: 0.25rem !important; + padding-left: 0.25rem !important; } + .px-sm-2 { + padding-right: 0.5rem !important; + padding-left: 0.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: 0.25rem !important; + padding-bottom: 0.25rem !important; } + .py-sm-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.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: 0.25rem !important; } + .pt-sm-2 { + padding-top: 0.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: 0.25rem !important; } + .pe-sm-2 { + padding-right: 0.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: 0.25rem !important; } + .pb-sm-2 { + padding-bottom: 0.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: 0.25rem !important; } + .ps-sm-2 { + padding-left: 0.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: 0.25rem !important; } + .gap-md-2 { + gap: 0.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: 0.25rem !important; } + .m-md-2 { + margin: 0.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: 0.25rem !important; + margin-left: 0.25rem !important; } + .mx-md-2 { + margin-right: 0.5rem !important; + margin-left: 0.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: 0.25rem !important; + margin-bottom: 0.25rem !important; } + .my-md-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.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: 0.25rem !important; } + .mt-md-2 { + margin-top: 0.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: 0.25rem !important; } + .me-md-2 { + margin-right: 0.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: 0.25rem !important; } + .mb-md-2 { + margin-bottom: 0.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: 0.25rem !important; } + .ms-md-2 { + margin-left: 0.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: 0.25rem !important; } + .p-md-2 { + padding: 0.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: 0.25rem !important; + padding-left: 0.25rem !important; } + .px-md-2 { + padding-right: 0.5rem !important; + padding-left: 0.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: 0.25rem !important; + padding-bottom: 0.25rem !important; } + .py-md-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.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: 0.25rem !important; } + .pt-md-2 { + padding-top: 0.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: 0.25rem !important; } + .pe-md-2 { + padding-right: 0.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: 0.25rem !important; } + .pb-md-2 { + padding-bottom: 0.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: 0.25rem !important; } + .ps-md-2 { + padding-left: 0.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: 0.25rem !important; } + .gap-lg-2 { + gap: 0.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: 0.25rem !important; } + .m-lg-2 { + margin: 0.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: 0.25rem !important; + margin-left: 0.25rem !important; } + .mx-lg-2 { + margin-right: 0.5rem !important; + margin-left: 0.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: 0.25rem !important; + margin-bottom: 0.25rem !important; } + .my-lg-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.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: 0.25rem !important; } + .mt-lg-2 { + margin-top: 0.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: 0.25rem !important; } + .me-lg-2 { + margin-right: 0.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: 0.25rem !important; } + .mb-lg-2 { + margin-bottom: 0.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: 0.25rem !important; } + .ms-lg-2 { + margin-left: 0.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: 0.25rem !important; } + .p-lg-2 { + padding: 0.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: 0.25rem !important; + padding-left: 0.25rem !important; } + .px-lg-2 { + padding-right: 0.5rem !important; + padding-left: 0.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: 0.25rem !important; + padding-bottom: 0.25rem !important; } + .py-lg-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.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: 0.25rem !important; } + .pt-lg-2 { + padding-top: 0.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: 0.25rem !important; } + .pe-lg-2 { + padding-right: 0.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: 0.25rem !important; } + .pb-lg-2 { + padding-bottom: 0.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: 0.25rem !important; } + .ps-lg-2 { + padding-left: 0.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: 0.25rem !important; } + .gap-xl-2 { + gap: 0.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: 0.25rem !important; } + .m-xl-2 { + margin: 0.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: 0.25rem !important; + margin-left: 0.25rem !important; } + .mx-xl-2 { + margin-right: 0.5rem !important; + margin-left: 0.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: 0.25rem !important; + margin-bottom: 0.25rem !important; } + .my-xl-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.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: 0.25rem !important; } + .mt-xl-2 { + margin-top: 0.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: 0.25rem !important; } + .me-xl-2 { + margin-right: 0.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: 0.25rem !important; } + .mb-xl-2 { + margin-bottom: 0.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: 0.25rem !important; } + .ms-xl-2 { + margin-left: 0.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: 0.25rem !important; } + .p-xl-2 { + padding: 0.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: 0.25rem !important; + padding-left: 0.25rem !important; } + .px-xl-2 { + padding-right: 0.5rem !important; + padding-left: 0.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: 0.25rem !important; + padding-bottom: 0.25rem !important; } + .py-xl-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.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: 0.25rem !important; } + .pt-xl-2 { + padding-top: 0.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: 0.25rem !important; } + .pe-xl-2 { + padding-right: 0.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: 0.25rem !important; } + .pb-xl-2 { + padding-bottom: 0.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: 0.25rem !important; } + .ps-xl-2 { + padding-left: 0.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: 0.25rem !important; } + .gap-xxl-2 { + gap: 0.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: 0.25rem !important; } + .m-xxl-2 { + margin: 0.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: 0.25rem !important; + margin-left: 0.25rem !important; } + .mx-xxl-2 { + margin-right: 0.5rem !important; + margin-left: 0.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: 0.25rem !important; + margin-bottom: 0.25rem !important; } + .my-xxl-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.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: 0.25rem !important; } + .mt-xxl-2 { + margin-top: 0.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: 0.25rem !important; } + .me-xxl-2 { + margin-right: 0.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: 0.25rem !important; } + .mb-xxl-2 { + margin-bottom: 0.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: 0.25rem !important; } + .ms-xxl-2 { + margin-left: 0.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: 0.25rem !important; } + .p-xxl-2 { + padding: 0.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: 0.25rem !important; + padding-left: 0.25rem !important; } + .px-xxl-2 { + padding-right: 0.5rem !important; + padding-left: 0.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: 0.25rem !important; + padding-bottom: 0.25rem !important; } + .py-xxl-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.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: 0.25rem !important; } + .pt-xxl-2 { + padding-top: 0.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: 0.25rem !important; } + .pe-xxl-2 { + padding-right: 0.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: 0.25rem !important; } + .pb-xxl-2 { + padding-bottom: 0.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: 0.25rem !important; } + .ps-xxl-2 { + padding-left: 0.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.25rem !important; } + .fs-2 { + font-size: 1.875rem !important; } + .fs-3 { + 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; } } + +* { + outline: none; + padding: 0; } + *::after { + margin: 0; + padding: 0; } + *::before { + margin: 0; + padding: 0; } + +#main-wrapper { + transition: all 0.25s ease-in; + position: relative; + z-index: 1; + margin-top: 110px; } + #main-wrapper.show { + opacity: 1; } + +.content-body { + margin-left: 80px; + margin-top: 30px; + margin-bottom: 50px; } + @media (min-width: 576px) { + .content-body { + margin-left: 0px; + margin-bottom: 50px; } } + +.details .content-body { + margin-left: 0px; } + +.dashboard .content-body { + margin-left: 80px; + margin-right: 0px; + margin-top: 0px; } + @media only screen and (max-width: 767px) { + .dashboard .content-body { + margin-left: 0px; } } + +ul { + padding: 0; + margin: 0; } + +li { + list-style: none; } + +a { + color: #1652F0; + text-decoration: none; + outline: none; } + a:hover, a:focus, a.active { + text-decoration: none; + outline: none; + color: #1652F0; } + +b, +strong { + color: #212529; } + +h1, .h1, +.h1, h2, .h2, +.h2, h3, .h3, +.h3, h4, .h4, +.h4, h5, .h5, +.h5, h6, .h6, +.h6 { + font-family: -apple-system,'Montserrat', sans-serif; + font-weight: 600; } + +/* Editable */ +.bg-purple { + background-color: #5848BB !important; } + +.bg-transparent { + background-color: transparent !important; } + +#preloader { + position: fixed; + width: 100%; + height: 100%; + left: 0; + top: 0; + background-color: #fff; + z-index: 999999999; } + #preloader i { + display: block; + width: 16px; + height: 16px; + background: black; + border-radius: 16px; + position: absolute; + top: 50%; + left: 50%; + margin: -8px 0 0 -8px; + opacity: 1; + -webkit-transform: translate3d(60px, 0, 0); + overflow: hidden; + text-indent: -9999px; + border: 1px solid white; } + #preloader i:nth-child(1) { + background: #1652F0; + -webkit-animation: googleDotA 1.75s ease-in-out infinite; } + #preloader i:nth-child(2) { + background: #51BB25; + -webkit-animation: googleDotB 1.75s ease-in-out infinite; } + #preloader i:nth-child(3) { + background: #F8D62B; + -webkit-animation: googleDotC 1.75s ease-in-out infinite; } + +@-webkit-keyframes googleDotA { + 0% { + opacity: 0; + transform: translate3d(60px, 0, 0); + -webkit-transform: translate3d(60px, 0, 0); } + 30% { + opacity: 1; + transform: translate3d(0, 0, 0); + -webkit-transform: translate3d(0, 0, 0); } + 70% { + opacity: 1; + transform: translate3d(0, 0, 0); + -webkit-transform: translate3d(0, 0, 0); } + 100% { + opacity: 0; + transform: translate3d(-300px, 0, 0); + -webkit-transform: translate3d(-300px, 0, 0); } } + +@-webkit-keyframes googleDotB { + 0% { + opacity: 0; + transform: translate3d(180px, 0, 0); + -webkit-transform: translate3d(180px, 0, 0); } + 35% { + opacity: 1; + transform: translate3d(0, 0, 0); + -webkit-transform: translate3d(0, 0, 0); } + 77% { + opacity: 1; + transform: translate3d(0, 0, 0); + -webkit-transform: translate3d(0, 0, 0); } + 100% { + opacity: 0; + transform: translate3d(-180px, 0, 0); + -webkit-transform: translate3d(-180px, 0, 0); } } + +@-webkit-keyframes googleDotC { + 0% { + opacity: 0; + transform: translate3d(300px, 0, 0); + -webkit-transform: translate3d(300px, 0, 0); } + 40% { + opacity: 1; + transform: translate3d(0, 0, 0); + -webkit-transform: translate3d(0, 0, 0); } + 80% { + opacity: 1; + transform: translate3d(0, 0, 0); + -webkit-transform: translate3d(0, 0, 0); } + 100% { + opacity: 0; + transform: translate3d(-60px, 0, 0); + -webkit-transform: translate3d(-60px, 0, 0); } } + +.section-padding { + padding: 100px 0; } + @media only screen and (max-width: 1199px) { + .section-padding { + padding: 80px 0; } } + @media only screen and (max-width: 991px) { + .section-padding { + padding: 75px 0; } } + @media only screen and (max-width: 767px) { + .section-padding { + padding: 60px 0; } } + @media only screen and (max-width: 575px) { + .section-padding { + padding: 50px 0; } } + +.mt-80 { + margin-top: 80px; } + +.mb-80 { + margin-bottom: 80px; } + +.page-title { + margin-bottom: 30px; + background: transparent; + border-radius: 6px; } + .page-title .page-title-content h3, .page-title .page-title-content .h3 { + font-size: 24px; + margin-bottom: 0px; } + +.breadcrumbs a { + color: #7184ad; + display: inline-block; + font-size: 14px; } + +.breadcrumbs.active a { + color: #fff; } + +.breadcrumbs i { + margin: 0px 10px; + font-size: 20px; + line-height: 0; + position: relative; + top: 5px; } + +.flex-grow-2 { + flex-grow: 2; } + +::-webkit-scrollbar { + width: 5px; } + +/* Track */ +::-webkit-scrollbar-track { + box-shadow: inset 0 0 5px grey; + border-radius: 10px; } + +/* Handle */ +::-webkit-scrollbar-thumb { + background: #999; + border-radius: 10px; } + +/* Handle on hover */ +::-webkit-scrollbar-thumb:hover { + background: #777; } + +.c-pointer { + cursor: pointer; } + +.trade-balance { + position: relative; + height: 380px; } + +.position-value { + position: relative; + height: 320px; } + +.shadow-sm { + box-shadow: 0 0.125rem 0.25rem rgba(227, 230, 236, 0.9); } + +.shadow-lg { + box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.275); } + +.section-title { + margin-bottom: 75px; } + .section-title h2, .section-title .h2 { + text-align: center; + font-weight: 600; } + +.header { + padding: 20px 0px; + position: fixed; + top: 0; + left: 80px; + right: 0; + z-index: 02; + background: #f0f0f0; } + .header.bg-primary { + border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important; } + @media only screen and (max-width: 767px) { + .header { + left: 0; + padding: 10px 0px; + background: #fff; } } + .header .brand-logo { + display: none; } + @media only screen and (max-width: 991px) { + .header .brand-logo { + display: none; + margin: 0px 20px 0px 0px; } } + @media only screen and (max-width: 767px) { + .header .brand-logo { + display: block; } + .header .brand-logo img { + filter: none; } + .header .brand-logo span { + display: none; } } + .header.landing { + padding: 20px 0px; + left: 0px; } + .header.landing a { + display: flex; + align-items: center; + justify-content: center; } + .header.landing .brand-logo { + display: block; + margin-top: 0px; + margin-left: 0px; } + .header.landing .brand-logo img { + filter: none; + margin-right: 10px; } + .header.landing .brand-logo span { + display: block; + top: 0; } + +.header-content, +.header-left, +.header-right { + display: flex; + justify-content: space-between; + align-items: center; } + +.notification { + cursor: pointer; } + .notification .notify-bell { + margin-right: 15px; } + @media only screen and (max-width: 767px) { + .notification .notify-bell { + margin-right: 15px; } } + .notification .dropdown-menu { + border: 0px; + padding: 15px 20px 10px; + margin: 0px; + top: 25px !important; + width: 330px; + box-shadow: 0 36px 48px rgba(27, 25, 148, 0.08); + border-radius: 5px; } + .notification .dropdown-menu h4, .notification .dropdown-menu .h4 { + border-bottom: 1px solid #e5e5e5; + padding-bottom: 15px; + font-size: 16px; } + .notification .dropdown-menu a { + display: block; + border-bottom: 1px solid #e5e5e5; + padding: 10px 0px; } + .notification .dropdown-menu a:last-child { + border: 0px; + display: flex; + justify-content: flex-end; + align-items: center; + color: #070707; } + .notification .dropdown-menu a:last-child i { + margin-left: 5px; + font-size: 18px; } + .notification .dropdown-menu a p { + margin-bottom: 0px; + color: #212529; + font-weight: 600; + font-size: 14px; } + .notification .dropdown-menu a span { + font-size: 13px; + color: #a2a5b9; } + .notification .dropdown-menu a span.icon { + height: 40px; + width: 40px; + color: #fff; + display: flex; + align-items: center; + justify-content: center; + border-radius: 50px; } + .notification .dropdown-menu a span.icon i { + font-size: 20px; } + .notification .dropdown-menu a span.success { + background: #51BB25; } + .notification .dropdown-menu a span.fail { + background: #DC3545; } + .notification .dropdown-menu a span.pending { + background: #F8D62B; } + +.dropdown-toggle::after { + border-top: 0px; + margin-left: 10.2px; + display: inline-block; + font-style: normal; + font-variant: normal; + text-rendering: auto; + -webkit-font-smoothing: antialiased; + font-family: "Font Awesome 5 Pro", "Font Awesome 5 Free"; + font-weight: 700; + content: "\f107"; } + +.profile_log { + cursor: pointer; } + .profile_log .user { + display: flex; + align-items: center; } + .profile_log .user .thumb { + height: 35px; + width: 35px; + border-radius: 50px; + color: #fff; + text-align: center; } + .profile_log .user .thumb img { + max-width: 35px; } + .profile_log .dropdown-menu { + border: 0px; + padding: 0px; + margin: 0px; + top: 25px !important; + box-shadow: 0 1.5rem 4rem rgba(22, 28, 45, 0.15); + border-radius: 5px; + background-color: #fff; + min-width: 240px; } + .profile_log .dropdown-menu .user-email { + padding: 10px 20px 10px; } + .profile_log .dropdown-menu .user-email .thumb { + margin-right: 10px; } + .profile_log .dropdown-menu .user-email .user-info { + margin: 0px; } + .profile_log .dropdown-menu .user-email h5, .profile_log .dropdown-menu .user-email .h5 { + margin-bottom: 0px; } + .profile_log .dropdown-menu .user-email span { + font-size: 14px; } + .profile_log .dropdown-menu .user-email span i { + font-size: 22px; + color: #070707; } + .profile_log .dropdown-menu .user-balance { + display: flex; + justify-content: space-around; + margin-bottom: 15px; } + .profile_log .dropdown-menu .user-balance p { + margin-bottom: 0px; + font-weight: 500; + color: #212529; } + .profile_log .dropdown-menu .dropdown-item { + padding: 10px 20px; + border-top: 1px solid #e5e5e5; + font-weight: 400; + display: flex; + align-items: center; } + .profile_log .dropdown-menu .dropdown-item:first-child { + border: 0px; } + .profile_log .dropdown-menu .dropdown-item.logout { + color: #DC3545; } + .profile_log .dropdown-menu .dropdown-item.logout i { + color: #DC3545; } + .profile_log .dropdown-menu .dropdown-item i { + margin-right: 10px; + font-size: 18px; + color: #1652F0; + font-weight: bold; } + .profile_log .dropdown-menu .dropdown-item:hover, .profile_log .dropdown-menu .dropdown-item:focus, .profile_log .dropdown-menu .dropdown-item.active { + background-color: #1652F0; + color: #fff; } + .profile_log .dropdown-menu .dropdown-item:hover i, .profile_log .dropdown-menu .dropdown-item:focus i, .profile_log .dropdown-menu .dropdown-item.active i { + color: #fff; } + +.dark-light-toggle { + margin-right: 20px; + cursor: pointer; + display: none; } + @media only screen and (max-width: 767px) { + .dark-light-toggle { + margin-right: 0px; + margin-left: 15px; } } + .dark-light-toggle i { + font-size: 20px; } + .dark-light-toggle .light { + display: none; } + +.dark-theme .dark { + display: none; } + +.dark-theme .light { + display: block; + color: #F8D62B; } + +.navigation .navbar { + background-color: transparent !important; + padding: 0px; } + .navigation .navbar ul { + align-items: center; + margin-left: auto; } + @media only screen and (max-width: 991px) { + .navigation .navbar ul { + margin-top: 15px; } } + .navigation .navbar ul > li { + display: inline-block; + padding: 0px 7px; + width: 100%; } + @media only screen and (max-width: 991px) { + .navigation .navbar ul > li { + border-bottom: 1px solid #e5e5e5; + margin: 0 15px; + padding: 7px 15px; } } + .navigation .navbar ul > li > a { + font-size: 16px; + font-weight: 600; + color: #070707; } + @media only screen and (max-width: 991px) { + .navigation .navbar ul > li > a::after { + position: absolute; + right: 15px; + top: 25px; } } + @media only screen and (min-width: 991px) { + .navigation .navbar ul .dropdown > a { + position: relative; + transition: all 0.2s ease-in-out; } + .navigation .navbar ul .dropdown-menu { + background: #fff; + padding: 15px 0; + display: block; + opacity: 0; + visibility: hidden; + z-index: 1030; + transition: all 0.2s ease-in-out; + box-shadow: 0 1.5rem 4rem rgba(22, 28, 45, 0.15); + border: 0px; + margin-top: 10px; + z-index: 998; + min-width: 10rem; } + .navigation .navbar ul .dropdown-menu a { + display: inline-block; + color: #a2a5b9; } + .navigation .navbar ul .dropdown-menu a:hover, .navigation .navbar ul .dropdown-menu a:focus, .navigation .navbar ul .dropdown-menu a:active, .navigation .navbar ul .dropdown-menu a.active { + color: #1652F0; + background: transparent; } + .navigation .navbar ul li.dropdown:hover a::before { + opacity: 1; + bottom: -9px; } + .navigation .navbar ul li.dropdown:hover .dropdown-menu { + opacity: 1; + visibility: visible; + margin-top: 0px; } } + @media only screen and (max-width: 991px) { + .navigation .navbar ul .dropdown-menu { + border: 0px; + padding: 0px; } + .navigation .navbar ul .dropdown-menu a { + border-bottom: 1px solid #e5e5e5; + padding: 15px; + color: #a2a5b9; } + .navigation .navbar ul .dropdown-menu a:last-child { + border: 0px; } + .navigation .navbar ul .dropdown-menu a i, + .navigation .navbar ul .dropdown-menu a h6, + .navigation .navbar ul .dropdown-menu a .h6 { + color: #1652F0; } + .navigation .navbar ul .dropdown-menu a p { + color: #a2a5b9; + margin-bottom: 0; } } + +.signin-btn { + min-width: 100px; } + +.logo-white { + display: none; } + +.light .logo-primary { + display: none; } + +.light .logo-white { + display: block; } + +.light .navigation .navbar ul > li > a { + color: rgba(255, 255, 255, 0.85); } + .light .navigation .navbar ul > li > a:hover, .light .navigation .navbar ul > li > a:focus, .light .navigation .navbar ul > li > a.active, .light .navigation .navbar ul > li > a:active { + color: white; } + +.light .signin-btn .btn-primary { + background: #fff; + color: #070707; } + +.search { + min-width: 450px; } + @media only screen and (max-width: 767px) { + .search { + min-width: auto; + margin-right: 15px; } } + .search .form-control { + border-bottom-left-radius: 6px; + border-top-left-radius: 6px; } + .search .input-group-text { + border-top-right-radius: 6px; + border-bottom-right-radius: 6px; + background: #1652F0; } + .search .input-group-text i { + color: #fff; } + +.icon-menu { + height: 40px; + width: 40px; + display: flex; + justify-content: center; + align-items: center; + border-radius: 50%; + background: #fff; } + .icon-menu:hover, .icon-menu:focus, .icon-menu:active, .icon-menu.active { + background: #1652F0; + box-shadow: 0 0 20px rgba(89, 102, 122, 0.05); } + .icon-menu:hover i, .icon-menu:focus i, .icon-menu:active i, .icon-menu.active i { + color: #fff; } + .icon-menu span i { + font-size: 20px; + color: #a2a5b9; } + +.bottom { + background: #070707; } + .bottom .bottom-logo p { + color: #a2a5b9; + line-height: 30px; + font-weight: 400; } + @media only screen and (max-width: 991px) { + .bottom .bottom-widget { + margin-bottom: 30px; } } + .bottom .bottom-widget .widget-title { + font-size: 18px; + font-weight: 600; + color: #fff; + margin-bottom: 20px; } + .bottom .bottom-widget ul li a { + color: #a2a5b9; + font-weight: 400; + margin-bottom: 10px; + display: inline-block; } + +.footer { + background: #f0f0f0; + padding: 20px 0px; + position: fixed; + bottom: 0; + left: 110px; + border-radius: 6px; } + .footer .copyright { + position: relative; + text-align: left; } + .footer .copyright p { + margin: 0; + font-size: 14px; + color: #a2a5b9; } + .footer .copyright p a { + color: #1652F0; + font-weight: 700; } + .footer .footer-social { + text-align: right; } + .footer .footer-social li { + display: inline-block; } + .footer .footer-social li a { + color: #070707; + padding: 0px 10px; } + +.details .footer { + left: 0px; } + +.sidebar { + background: #0d40c6; + position: fixed; + left: 0px; + height: calc(100%-20px); + width: 80px; + top: 0px; + z-index: 3; + bottom: 0px; + border-radius: 0px; + box-shadow: 0 0 20px rgba(89, 102, 122, 0.05); } + @media only screen and (max-width: 767px) { + .sidebar { + top: auto; + bottom: 0; + width: 100%; + height: 50px; + left: 0; + border-radius: 0px; } } + +.brand-logo { + text-align: center; + margin: 20px 20px 20px; } + @media only screen and (max-width: 767px) { + .brand-logo { + display: none; } } + +.menu { + margin-top: 30px; + padding: 20px; + position: relative; } + @media only screen and (max-width: 767px) { + .menu { + margin-top: 0px; + padding: 0px; + background: #1652F0; } } + @media only screen and (max-width: 767px) { + .menu ul { + display: flex; + justify-content: space-around; + align-items: center; } } + .menu ul li { + margin-bottom: 8px; + border-radius: 6px; } + .menu ul li:hover a, .menu ul li:focus a, .menu ul li:active a { + color: #fff; } + .menu ul li:hover a .nav-text, .menu ul li:focus a .nav-text, .menu ul li:active a .nav-text { + display: block; + background: white; + color: #1652F0; } + @media only screen and (max-width: 991px) { + .menu ul li:hover a .nav-text, .menu ul li:focus a .nav-text, .menu ul li:active a .nav-text { + display: none; } } + .menu ul li:hover i, .menu ul li:focus i, .menu ul li:active i { + color: #fff; + opacity: 1; } + .menu ul li.active i { + color: #fff; + opacity: 1; } + .menu ul li.active span { + color: #fff; } + .menu ul li i { + color: #fff; + font-size: 20px; + opacity: 0.6; + margin-right: 15px; + line-height: 0px; } + @media only screen and (max-width: 991px) { + .menu ul li i { + margin-right: 0px; } } + .menu ul li a { + padding: 5px 8px; + display: flex; + align-items: center; + min-height: 3.5rem; + color: #a2a5b9; } + @media only screen and (max-width: 991px) { + .menu ul li a { + justify-content: center; } } + .menu ul li a .nav-text { + display: none; + padding: 3px 8px; + border-radius: 4px; + box-shadow: 0 0 20px rgba(89, 102, 122, 0.05); } + @media only screen and (max-width: 991px) { + .menu ul li a .nav-text { + display: none; } } + .menu ul li.logout { + position: fixed; + bottom: 50px; + left: 0; + right: 0; + width: 80px; } + .menu ul li.logout a { + padding-left: 30px; } + @media only screen and (max-width: 991px) { + .menu ul li.logout { + right: auto; + justify-content: center; + left: 10px; + width: auto; } } + @media only screen and (max-width: 767px) { + .menu ul li.logout { + position: relative; + bottom: 0; + left: auto; + right: auto; + width: auto; } + .menu ul li.logout a { + padding-left: 0px; } } + +.card-limit-progress { + display: none; + background: url("/images/bg/6.jpg"); + position: absolute; + bottom: 150px; + padding: 15px 20px; + margin: 20px; + left: 0; + right: 0; + border-radius: 6px; } + @media only screen and (max-width: 1199px) { + .card-limit-progress { + display: none; } } + .card-limit-progress h5, .card-limit-progress .h5 { + font-size: 14px; + color: #fff; } + .card-limit-progress p { + font-size: 12px; } + .card-limit-progress p strong { + color: #fff; } + .card-limit-progress .progress { + height: 6px; + background-color: #cac3ff; } + +.dark-theme { + background-color: #041645; + color: #8eabf8; } + .dark-theme h1, .dark-theme .h1, + .dark-theme .h1, + .dark-theme h2, + .dark-theme .h2, + .dark-theme .h2, + .dark-theme h3, + .dark-theme .h3, + .dark-theme .h3, + .dark-theme h4, + .dark-theme .h4, + .dark-theme .h4, + .dark-theme h5, + .dark-theme .h5, + .dark-theme .h5, + .dark-theme h6, + .dark-theme .h6, + .dark-theme .h6 { + color: #fff; } + .dark-theme b, + .dark-theme strong { + color: #fff; } + .dark-theme .header { + background-color: #041645; } + .dark-theme .dropdown-menu { + background-color: #072166; } + .dark-theme .dropdown-menu h4, .dark-theme .dropdown-menu .h4 { + border-color: rgba(255, 255, 255, 0.08); } + .dark-theme .dropdown-menu p { + color: #fff !important; } + .dark-theme .dropdown-menu a { + border-color: rgba(255, 255, 255, 0.08); } + .dark-theme .dropdown-menu a span { + color: #8eabf8 !important; } + .dark-theme .dropdown-menu a span i { + color: #fff; } + .dark-theme .notification .notify-bell i { + color: #fff; } + .dark-theme .notification .dropdown-menu a:last-child { + color: #fff; } + .dark-theme .profile_log .dropdown-menu .dropdown-item { + border-top: 1px solid rgba(255, 255, 255, 0.08); + color: #8eabf8; } + .dark-theme .user-info span, + .dark-theme .user-balance span { + color: #8eabf8; } + .dark-theme .card { + background: #072166 !important; } + .dark-theme .card .card-header { + border-bottom: 1px solid rgba(255, 255, 255, 0.08); } + .dark-theme .card .card-header .card-title { + color: #fff; } + .dark-theme .trade-form p { + color: #fff; } + .dark-theme .balance-widget li .icon-title span { + color: #fff; } + .dark-theme .form-control, + .dark-theme .form-select { + background: #041645; + border-color: rgba(255, 255, 255, 0.08); + color: #8eabf8; } + .dark-theme .form-control::-webkit-input-placeholder, + .dark-theme .form-select::-webkit-input-placeholder { + color: #8eabf8; } + .dark-theme .form-control:-ms-input-placeholder, + .dark-theme .form-select:-ms-input-placeholder { + color: #8eabf8; } + .dark-theme .form-control::placeholder, + .dark-theme .form-select::placeholder { + color: #8eabf8; } + .dark-theme .form-control:hover, + .dark-theme .form-select:hover { + border-color: rgba(255, 255, 255, 0.08); + color: #8eabf8; + background: #041645; } + .dark-theme .form-control:focus, .dark-theme .form-control:active, .dark-theme .form-control.active, + .dark-theme .form-select:focus, + .dark-theme .form-select:active, + .dark-theme .form-select.active { + border-color: rgba(255, 255, 255, 0.08); + color: #8eabf8; + background: #041645; } + .dark-theme .form-file-text { + background-color: #041645; + border-color: rgba(255, 255, 255, 0.08); + color: #8eabf8; } + .dark-theme .form-file-button { + border-color: rgba(255, 255, 255, 0.08); + background: #1652F0; + color: #fff; } + .dark-theme .input-group-text { + background: #072166; + color: #fff; + border-color: rgba(255, 255, 255, 0.08); } + .dark-theme .btn-outline-primary, + .dark-theme .btn-outline-secondary, + .dark-theme .btn-outline-success, + .dark-theme .btn-outline-info, + .dark-theme .btn-outline-warning, + .dark-theme .btn-outline-danger, + .dark-theme .btn-outline-light { + color: #fff; } + .dark-theme .balance-widget li { + border-bottom: 1px solid rgba(255, 255, 255, 0.08); } + .dark-theme .table { + color: #8eabf8; } + .dark-theme .table th { + color: #fff; + border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important; } + .dark-theme .table td { + border-color: rgba(255, 255, 255, 0.08); } + .dark-theme .table-striped > tbody > tr:nth-of-type(odd) { + --bs-table-accent-bg: $dbg; + background-color: #041645; + color: #8eabf8; } + .dark-theme .settings-menu a { + color: #8eabf8; } + .dark-theme .settings-menu a:hover, .dark-theme .settings-menu a:focus, .dark-theme .settings-menu a:active, .dark-theme .settings-menu a.active { + color: #fff; } + .dark-theme .modal-content { + background-color: #072166; } + .dark-theme .modal-content .modal-header { + border-color: rgba(255, 255, 255, 0.08); } + .dark-theme .modal-content .modal-header .btn-close { + color: #fff; } + .dark-theme .qr-img { + background: #fff; } + .dark-theme .chart-stat { + border-color: rgba(255, 255, 255, 0.08); } + +.credit-card { + background: #126AFF; + padding: 20px; + border-radius: 6px; + margin-bottom: 30px; + position: relative; + overflow: hidden; } + .credit-card .type-brand { + display: flex; + justify-content: space-between; + align-items: center; } + .credit-card .type-brand h4, .credit-card .type-brand .h4 { + color: #a2a5b9; + font-size: 14px; } + .credit-card .type-brand img { + height: 30px; + background: #fff; + padding: 4px 6px; + border-radius: 8px; } + .credit-card .cc-number { + padding: 20px 0px; } + .credit-card .cc-number h6, .credit-card .cc-number .h6 { + display: inline-block; + margin-right: 20px; + color: #fff; + font-size: 20px; } + .credit-card .cc-holder-exp { + display: flex; + justify-content: space-between; } + .credit-card .cc-holder-exp h5, .credit-card .cc-holder-exp .h5 { + color: #fff; + margin-bottom: 0px; } + .credit-card .cc-holder-exp .exp { + color: #fff; } + .credit-card .cc-holder-exp .exp strong { + color: #fff; } + .credit-card.visa { + background: #070707; } + .credit-card.visa:hover .cc-info { + background: #070707; } + .credit-card.master { + background: #1652F0; } + .credit-card.master:hover .cc-info { + background: #1652F0; } + .credit-card.payoneer { + background: #fff; } + .credit-card.payoneer .type-brand h4, .credit-card.payoneer .type-brand .h4 { + color: #a2a5b9; } + .credit-card.payoneer .cc-number h6, .credit-card.payoneer .cc-number .h6 { + color: #070707; } + .credit-card.payoneer .cc-holder-exp h5, .credit-card.payoneer .cc-holder-exp .h5 { + color: #070707; } + .credit-card.payoneer .cc-holder-exp .exp { + color: #070707; } + .credit-card.payoneer .cc-holder-exp .exp strong { + color: #070707; } + .credit-card.payoneer:hover .cc-info { + background: #fff; } + +.cc-info { + padding: 15px 20px 20px; + border-radius: 0px; + position: absolute; + bottom: -100%; + left: 0; + right: 0; + z-index: 1; + transition: all 0.15s ease-in-out; } + .cc-info p { + margin-bottom: 0px; + margin-top: 5px; + color: rgba(255, 255, 255, 0.5); } + .cc-info p strong { + color: #fff; + opacity: 1; } + +.card { + border: 1px solid #e5e5e5; + margin-bottom: 30px; + border-radius: 6px; + background: #fff; } + .card-header { + display: flex; + justify-content: space-between; + align-items: center; + border-bottom: 0px solid #e5e5e5; + background: transparent; + padding: 20px 20px 0px; } + @media only screen and (max-width: 767px) { + .card-header { + flex-direction: column; + align-items: start; } } + .card-title { + font-size: 16px; + margin-bottom: 0px; + color: #212529; } + .card.transparent { + background: transparent; + box-shadow: none; + border: 0px; } + .card.transparent .card-header { + border: 0px; + padding: 0px; } + .card.transparent .card-body { + padding: 0px; } + .card .card-body { + padding: 20px; + background: transparent; } + .card .card-footer { + padding: 20px; + background: #fff; } + +.form-label { + font-weight: 600; } + +.form-control { + border-radius: 5px; + height: 45px; + border: 1px solid #e5e5e5; + padding: 0px 22px; + font-size: 14px; + color: #070707; + background: #fff; } + .form-control span { + margin-top: 0; } + .form-control::-webkit-input-placeholder { + color: #a2a5b9; } + .form-control:-ms-input-placeholder { + color: #a2a5b9; } + .form-control::placeholder { + color: #a2a5b9; } + .form-control:hover { + box-shadow: none !important; + outline: none; + border-color: #e5e5e5; + color: #070707; + background: #fff; } + .form-control:focus, .form-control:active, .form-control.active { + box-shadow: none !important; + outline: none; + border-color: #1652F0; + color: #070707; + background: #fff; } + +.form-select { + border-radius: 5px; + height: 45px; + border: 1px solid #e5e5e5; + padding: 0px 22px; + font-size: 14px; + color: #070707; } + .form-select:hover { + box-shadow: none !important; + outline: none; + border-color: #e5e5e5; + color: #070707; } + .form-select:focus, .form-select:active, .form-select.active { + box-shadow: none !important; + outline: none; + border-color: #1652F0; + color: #070707; } + +textarea.form-control { + min-height: 100px; } + +input:-internal-autofill-selected { + background: whitesmoke !important; + background-image: none !important; + color: -internal-light-dark-color(black, white) !important; } + +.input-group-text { + padding: 11px 15px; + background: #fff; + margin-bottom: 0px !important; + color: #070707; + border-color: #e5e5e5; + border-radius: 0px; } + +.input-group-append .input-group-text { + border-top-right-radius: 5px; + border-bottom-right-radius: 5px; } + +.input-group-prepend .input-group-text { + border-top-left-radius: 5px; + border-bottom-left-radius: 5px; } + +label.error { + color: #DC3545; + position: absolute; + bottom: 0; + margin-bottom: -22px; + font-size: 12px; + font-weight: 400; } + +button, +.btn { + color: #fff; + padding: 8px 30px; + font-weight: 700; + border-radius: 12px; } + button:hover, button:focus, button:active, + .btn:hover, + .btn:focus, + .btn:active { + color: #fff; } + +.btn-outline-primary, +.btn-outline-secondary, +.btn-outline-success, +.btn-outline-info, +.btn-outline-warning, +.btn-outline-danger, +.btn-outline-light { + color: #070707; } + .btn-outline-primary:hover, .btn-outline-primary:focus, .btn-outline-primary:active, + .btn-outline-secondary:hover, + .btn-outline-secondary:focus, + .btn-outline-secondary:active, + .btn-outline-success:hover, + .btn-outline-success:focus, + .btn-outline-success:active, + .btn-outline-info:hover, + .btn-outline-info:focus, + .btn-outline-info:active, + .btn-outline-warning:hover, + .btn-outline-warning:focus, + .btn-outline-warning:active, + .btn-outline-danger:hover, + .btn-outline-danger:focus, + .btn-outline-danger:active, + .btn-outline-light:hover, + .btn-outline-light:focus, + .btn-outline-light:active { + color: #fff; } + +.btn-outline-dark { + color: #070707; } + .btn-outline-dark:hover, .btn-outline-dark:focus, .btn-outline-dark:active { + color: #fff; } + +.table th { + color: #212529; + border-bottom: 1px solid #e5e5e5 !important; } + +.table-responsive-sm { + min-width: 48rem; } + +.table { + margin-bottom: 0px; } + .table tr:last-child td { + border-bottom: 0px solid #e5e5e5; } + .table tr td, + .table tr th { + border-bottom: 1px solid #e5e5e5; + vertical-align: middle; + padding: 18px; } + .table tr td:last-child, + .table tr th:last-child { + text-align: right; } + +.table-striped tr td, +.table-striped tr th { + border: 0px !important; } + +.table-striped > tbody > tr:nth-of-type(odd) td:first-child { + border-top-left-radius: 7px; + border-bottom-left-radius: 7px; } + +.table-striped > tbody > tr:nth-of-type(odd) td:last-child { + border-top-right-radius: 7px; + border-bottom-right-radius: 7px; } + +.api-table span i { + font-size: 20px; } + .api-table span i:hover { + color: #DC3545; } + +.table-icon span i { + font-size: 16px; } + +.stat-widget { + background: #f5f6fa; + padding: 20px; + border-radius: 6px; + margin: 15px 0px; + position: relative; } + .stat-widget .widget-icon { + width: 50px; + height: 50px; + display: flex; + align-items: center; + justify-content: center; + border-radius: 100%; + font-size: 20px; + color: #fff; } + .stat-widget .widget-icon i { + line-height: 0px; } + .stat-widget .widget-content p { + color: #a2a5b9; + opacity: 0.85; + font-size: 14px; + font-weight: 400; + margin-bottom: 0px; } + .stat-widget .widget-content h3, .stat-widget .widget-content .h3 { + font-size: 20px; + margin-bottom: 0px; } + +.invoice-content li { + margin-bottom: 7px; + display: block; + padding: 12px 0px; + position: relative; + border-bottom: 1px solid #e5e5e5; } + .invoice-content li:last-child { + border: 0px; } + .invoice-content li span { + right: 15px; + display: block; + font-size: 12px; + background: #fff; + padding: 2px 10px; + border-radius: 16px; + display: inline-block; } + +.invoice-content .invoice-user-img img { + border-radius: 56px; } + +.invoice-content .invoice-info { + position: relative; + display: block; } + .invoice-content .invoice-info p { + margin-bottom: 5px; } + +#most-selling-items { + height: 295px !important; } + +#activity { + height: 245px !important; } + +#user-activity .btn { + padding: 5px 15px; } + @media only screen and (max-width: 767px) { + #user-activity .btn { + margin-top: 10px; } } + +.budget-content li { + margin-bottom: 32px; } + .budget-content li h5, .budget-content li .h5 { + font-size: 15px; } + .budget-content li .progress { + height: 10px; } + .budget-content li:last-child { + margin-bottom: 0px; } + +.auth-form { + padding: 30px 20px 10px; } + +.privacy-link a { + display: inline-block; + font-size: 14px; + line-height: 28px; + color: #070707; } + +.identity-content { + text-align: center; } + .identity-content .icon { + display: flex; + width: 75px; + height: 75px; + border-radius: 100px; + margin: 0 auto; + background: #fff; + color: #1652F0; + font-size: 30px; + padding: 10px; + align-items: center; + justify-content: center; + margin-bottom: 30px; + border: 1px solid #1652F0; } + .identity-content h4, .identity-content .h4 { + max-width: 350px; + margin: 0 auto 15px; } + .identity-content p { + max-width: 350px; + margin: 0 auto 30px; } + +.settings-menu { + margin-bottom: 30px; + display: flex; } + @media only screen and (max-width: 767px) { + .settings-menu { + display: inline-block; } } + @media only screen and (max-width: 767px) { + .settings-menu li { + display: inline-block; + padding: 5px 0px; } } + .settings-menu li:hover a, .settings-menu li:focus a, .settings-menu li:active a, .settings-menu li.active a { + color: #1652F0; } + .settings-menu a { + display: inline-block; + margin-right: 20px; + color: #a2a5b9; + font-size: 16px; } + +.verify-content { + display: flex; + justify-content: space-between; + align-items: center; } + @media only screen and (max-width: 767px) { + .verify-content { + display: block; } + .verify-content .btn { + margin-left: 65px; + margin-top: 15px; } } + +.icon-circle { + height: 50px; + min-width: 50px; + font-size: 22px; + display: flex; + justify-content: center; + align-items: center; + border-radius: 50px; } + +.card .card { + box-shadow: none; + background: transparent; } + +.app-link p { + margin-bottom: 30px; } + +.app-link .btn { + min-width: 150px; } + +.user-info { + margin: 15px 0px; } + .user-info span { + margin-bottom: 5px; + display: inline-block; } + +.welcome-profile .card-body img { + border: 4px solid #fff; + border-radius: 100px; + width: 60px; } + +.welcome-profile .card-body h4, .welcome-profile .card-body .h4 { + margin-top: 10px; + font-size: 18px; } + +.welcome-profile .card-body p { + opacity: 0.75; } + +.welcome-profile .card-body ul { + text-align: left; } + .welcome-profile .card-body ul li { + padding: 15px 0px; + border-bottom: 1px solid #e5e5e5; } + .welcome-profile .card-body ul li:last-child { + border: 0px; + padding-bottom: 0px; } + .welcome-profile .card-body ul li a { + display: flex; + align-items: center; + transition: all 0.25 ease-in-out; } + .welcome-profile .card-body ul li a span { + padding: 5px; + border-radius: 50px; + width: 30px; + height: 30px; + display: inline-flex; + align-items: center; + justify-content: center; + margin-right: 10px; + transition: all 0.25 ease-in-out; } + .welcome-profile .card-body ul li a span.verified { + background: #51BB25; + color: #fff; } + .welcome-profile .card-body ul li a span.not-verified { + background: #1652F0; + color: #fff; } + +.invoice-stats { + background: #fff; + border-radius: 16px; + padding: 30px; + margin-bottom: 30px; } + .invoice-stats .invoice-stats-content p { + margin-bottom: 0; } + .invoice-stats .invoice-stats-icon span { + display: flex; + height: 75px; + width: 75px; + align-items: center; + justify-content: center; + border: 1px solid rgba(53, 70, 171, 0.12); + border-radius: 50%; + margin-left: 1rem; } + .invoice-stats .invoice-stats-icon span i { + font-size: 32px; + line-height: 0px; } + +.total-balance p { + margin-bottom: 0px; } + +.balance-stats { + background: #F5F6FA; + margin-top: 15px; + padding: 21px; + border-radius: 6px; } + .balance-stats:hover, .balance-stats:focus, .balance-stats.active { + border-color: #1652F0; + background: #1652F0; } + .balance-stats:hover p, .balance-stats:focus p, .balance-stats.active p { + color: #fff; + opacity: 0.75; } + .balance-stats:hover h3, .balance-stats:hover .h3, .balance-stats:focus h3, .balance-stats:focus .h3, .balance-stats.active h3, .balance-stats.active .h3 { + color: #fff; } + .balance-stats p { + color: #a2a5b9; + font-size: 14px; + font-weight: 400; + margin-bottom: 0px; } + .balance-stats h3, .balance-stats .h3 { + margin-bottom: 0px; + font-size: 18px; } + +.bills-widget-content { + border: 1px solid #e5e5e5; + padding: 15px 20px; + border-radius: 6px; + margin-bottom: 18px; } + .bills-widget-content:hover, .bills-widget-content:focus, .bills-widget-content.active { + border-color: #1652F0; } + .bills-widget-content:last-child { + margin-bottom: 0px; } + .bills-widget-content p { + margin-bottom: 5px; } + .bills-widget-content h4, .bills-widget-content .h4 { + margin-bottom: 0px; } + +#transaction-graph { + height: 300px !important; } + +#chart-1 { + height: 365px !important; } + +.unpaid-content li { + padding: 15px 0px; + display: flex; + justify-content: space-between; + border-bottom: 1px solid #e5e5e5; } + .unpaid-content li:first-child { + padding-top: 0px; } + .unpaid-content li:last-child { + padding-bottom: 0px; + border: 0px; } + .unpaid-content li h5, .unpaid-content li .h5 { + font-size: 14px; } + +#activityBar { + height: 287px !important; } + +.all-notification a { + display: block; + border-bottom: 1px solid #e5e5e5; + padding: 10px 0px; } + .all-notification a:last-child { + border: 0px; + display: flex; + justify-content: flex-end; + align-items: center; + color: #070707; + padding-bottom: 0px; } + .all-notification a:last-child i { + margin-left: 5px; + font-size: 18px; } + .all-notification a p { + margin-bottom: 0px; + color: #212529; + font-weight: 600; + font-size: 14px; } + .all-notification a span { + font-size: 13px; + color: #a2a5b9; } + .all-notification a span.icon { + height: 40px; + width: 40px; + color: #fff; + display: flex; + align-items: center; + justify-content: center; + border-radius: 50px; } + .all-notification a span.icon i { + font-size: 20px; } + .all-notification a span.success { + background: #51BB25; } + .all-notification a span.fail { + background: #DC3545; } + .all-notification a span.pending { + background: #F8D62B; } + +.app-link p { + margin-bottom: 30px; } + +.app-link .btn { + min-width: 150px; } + +.user-info { + margin: 15px 0px; } + .user-info span { + margin-bottom: 5px; + display: inline-block; } + +.welcome-profile .card-body img { + border: 4px solid #fff; + border-radius: 100px; + width: 60px; } + +.welcome-profile .card-body h4, .welcome-profile .card-body .h4 { + margin-top: 10px; + font-size: 18px; } + +.welcome-profile .card-body p { + opacity: 0.75; } + +.welcome-profile .card-body ul { + text-align: left; } + .welcome-profile .card-body ul li { + padding: 15px 0px; + border-bottom: 1px solid #e5e5e5; } + .welcome-profile .card-body ul li:last-child { + border: 0px; + padding-bottom: 0px; } + .welcome-profile .card-body ul li a { + display: flex; + align-items: center; + transition: all 0.25 ease-in-out; } + .welcome-profile .card-body ul li a span { + padding: 5px; + border-radius: 50px; + width: 30px; + height: 30px; + display: inline-flex; + align-items: center; + justify-content: center; + margin-right: 10px; + transition: all 0.25 ease-in-out; } + .welcome-profile .card-body ul li a span.verified { + background: #51BB25; + color: #fff; } + .welcome-profile .card-body ul li a span.not-verified { + background: #1652F0; + color: #fff; } + +.demo_img { + text-align: center; + margin-bottom: 60px; } + .demo_img .img-wrap { + overflow: hidden; + margin-bottom: 15px; + box-shadow: 0 0.75rem 1.5rem rgba(18, 38, 63, 0.03); + background: #fff; + padding: 10px; + border-radius: 16px; + border: 1px solid #EFF2F7; } + .demo_img img { + border-radius: 5px; } + +.intro-demo_img { + background: #fff; + box-shadow: 0px 36px 48px rgba(31, 66, 135, 0.04); + padding: 10px; + border-radius: 16px; } + .intro-demo_img img { + border-radius: 5px; } + +/*# sourceMappingURL=style.css.map */ + +.auth-bg{ + + background: url("./../images/login/auth.jpg"); + background-size: cover; + height: 100vh; + +} + +.section-padding{ + padding: 50px 0; +} + +.logocontainer{ + width: 200px; +} + +.logocontainer > img{ + width: 100%; + height: 100%; +} + +.nav-justified button{ + +} + + + +.biz-tab-main li>button{ + color: black !important; + border-radius: 0; + background-color: transparent !important; + +} + +.selectedtab-biz{ + border-bottom: 1px solid black !important; +} + +.auth-form.card .card-body { + padding: 0px; +} + +.auth-form.card{ + padding-top: 40px; +padding-bottom: 40px; +} + +.selectedtab-biz{ + border-bottom: none !important; +} + +.auth-icon-label{ + /* border-radius: 50px; + background: #d2d3d3; + padding: 10px; */ +} + +.auth-select-icon{ + font-size: 20px; + border-radius: 116px; + background: #cccccc52; + +} + +.font-13{ + font-size: 13px; +} + +.section-padding{ + padding: 5px !important; +} + +.menu{ + margin-top: 0; + padding-top: 5px; +} + +.menu ul li a{ + min-height: 5px; +} + +.sidebar{ + width: 100px; +} + +.menu ul li i { + margin-right: 0px !important; + pointer-events: none !important; +} + +.menu ul li{ + margin-bottom: 30px; +} + +.menu ul li.logout a { + padding-left: 38px; +} + +.water-connection{ + max-width: 73px; +} + +.br-btn{ + border-radius: 25px; +} + +/* / added by rahul / */ +.welcome-profile .card-body img { + height: 60px; + object-fit: contain; +} + + +@media only screen and (max-width: 800px) { + .auth-form { + padding: 30px 10px 10px; + } + .auth-form.card .card-body { + padding: 0px; + + } + + .auth-form .nav-link{ + padding: 5px; + } + + .sidebar{ + width: 100%; + } + + .menu { + padding-top: 17px; + } + + .menu ul li a{ + padding: 0 !important; + + } + + .menu ul li span{ + font-size: 10px; + } + + +} + +@media only screen and (max-width: 767px) { + .content-body { + margin-left: 0px !important; + } + } \ No newline at end of file diff --git a/public/css/style.css.map b/public/css/style.css.map new file mode 100644 index 0000000..b45f070 --- /dev/null +++ b/public/css/style.css.map @@ -0,0 +1,120 @@ +{ + "version": 3, + "file": "style.css", + "sources": [ + "../scss/style.scss", + "../scss/abstract/_abstract.scss", + "../scss/abstract/_variable.scss", + "../scss/abstract/_mixins.scss", + "../scss/abstract/_maps.scss", + "../../node_modules/bootstrap/scss/bootstrap.scss", + "../../node_modules/bootstrap/scss/_functions.scss", + "../../node_modules/bootstrap/scss/_variables.scss", + "../../node_modules/bootstrap/scss/_mixins.scss", + "../../node_modules/bootstrap/scss/vendor/_rfs.scss", + "../../node_modules/bootstrap/scss/mixins/_deprecate.scss", + "../../node_modules/bootstrap/scss/mixins/_breakpoints.scss", + "../../node_modules/bootstrap/scss/mixins/_image.scss", + "../../node_modules/bootstrap/scss/mixins/_resize.scss", + "../../node_modules/bootstrap/scss/mixins/_visually-hidden.scss", + "../../node_modules/bootstrap/scss/mixins/_reset-text.scss", + "../../node_modules/bootstrap/scss/mixins/_text-truncate.scss", + "../../node_modules/bootstrap/scss/mixins/_utilities.scss", + "../../node_modules/bootstrap/scss/mixins/_alert.scss", + "../../node_modules/bootstrap/scss/mixins/_buttons.scss", + "../../node_modules/bootstrap/scss/mixins/_caret.scss", + "../../node_modules/bootstrap/scss/mixins/_pagination.scss", + "../../node_modules/bootstrap/scss/mixins/_lists.scss", + "../../node_modules/bootstrap/scss/mixins/_list-group.scss", + "../../node_modules/bootstrap/scss/mixins/_forms.scss", + "../../node_modules/bootstrap/scss/mixins/_table-variants.scss", + "../../node_modules/bootstrap/scss/mixins/_border-radius.scss", + "../../node_modules/bootstrap/scss/mixins/_box-shadow.scss", + "../../node_modules/bootstrap/scss/mixins/_gradients.scss", + "../../node_modules/bootstrap/scss/mixins/_transition.scss", + "../../node_modules/bootstrap/scss/mixins/_clearfix.scss", + "../../node_modules/bootstrap/scss/mixins/_container.scss", + "../../node_modules/bootstrap/scss/mixins/_grid.scss", + "../../node_modules/bootstrap/scss/_utilities.scss", + "../../node_modules/bootstrap/scss/_root.scss", + "../../node_modules/bootstrap/scss/_reboot.scss", + "../../node_modules/bootstrap/scss/_type.scss", + "../../node_modules/bootstrap/scss/_images.scss", + "../../node_modules/bootstrap/scss/_containers.scss", + "../../node_modules/bootstrap/scss/_grid.scss", + "../../node_modules/bootstrap/scss/_tables.scss", + "../../node_modules/bootstrap/scss/_forms.scss", + "../../node_modules/bootstrap/scss/forms/_labels.scss", + "../../node_modules/bootstrap/scss/forms/_form-text.scss", + "../../node_modules/bootstrap/scss/forms/_form-control.scss", + "../../node_modules/bootstrap/scss/forms/_form-select.scss", + "../../node_modules/bootstrap/scss/forms/_form-check.scss", + "../../node_modules/bootstrap/scss/forms/_form-range.scss", + "../../node_modules/bootstrap/scss/forms/_floating-labels.scss", + "../../node_modules/bootstrap/scss/forms/_input-group.scss", + "../../node_modules/bootstrap/scss/forms/_validation.scss", + "../../node_modules/bootstrap/scss/_buttons.scss", + "../../node_modules/bootstrap/scss/_transitions.scss", + "../../node_modules/bootstrap/scss/_dropdown.scss", + "../../node_modules/bootstrap/scss/_button-group.scss", + "../../node_modules/bootstrap/scss/_nav.scss", + "../../node_modules/bootstrap/scss/_navbar.scss", + "../../node_modules/bootstrap/scss/_card.scss", + "../../node_modules/bootstrap/scss/_accordion.scss", + "../../node_modules/bootstrap/scss/_breadcrumb.scss", + "../../node_modules/bootstrap/scss/_pagination.scss", + "../../node_modules/bootstrap/scss/_badge.scss", + "../../node_modules/bootstrap/scss/_alert.scss", + "../../node_modules/bootstrap/scss/_progress.scss", + "../../node_modules/bootstrap/scss/_list-group.scss", + "../../node_modules/bootstrap/scss/_close.scss", + "../../node_modules/bootstrap/scss/_toasts.scss", + "../../node_modules/bootstrap/scss/_modal.scss", + "../../node_modules/bootstrap/scss/_tooltip.scss", + "../../node_modules/bootstrap/scss/_popover.scss", + "../../node_modules/bootstrap/scss/_carousel.scss", + "../../node_modules/bootstrap/scss/_spinners.scss", + "../../node_modules/bootstrap/scss/_offcanvas.scss", + "../../node_modules/bootstrap/scss/_helpers.scss", + "../../node_modules/bootstrap/scss/helpers/_clearfix.scss", + "../../node_modules/bootstrap/scss/helpers/_colored-links.scss", + "../../node_modules/bootstrap/scss/helpers/_ratio.scss", + "../../node_modules/bootstrap/scss/helpers/_position.scss", + "../../node_modules/bootstrap/scss/helpers/_visually-hidden.scss", + "../../node_modules/bootstrap/scss/helpers/_stretched-link.scss", + "../../node_modules/bootstrap/scss/helpers/_text-truncation.scss", + "../../node_modules/bootstrap/scss/utilities/_api.scss", + "../scss/base/_base.scss", + "../scss/base/_reset.scss", + "../scss/base/_fonts.scss", + "../scss/base/_color.scss", + "../scss/base/_preloader.scss", + "../scss/base/_shortcode.scss", + "../scss/layout/_layout.scss", + "../scss/layout/_header.scss", + "../scss/layout/_bottom.scss", + "../scss/layout/_footer.scss", + "../scss/layout/_sidebar.scss", + "../scss/layout/_theme-bg.scss", + "../scss/element/_element.scss", + "../scss/element/_testimonial.scss", + "../scss/element/_credit-card.scss", + "../scss/components/_component.scss", + "../scss/components/_card.scss", + "../scss/components/_form.scss", + "../scss/components/_button.scss", + "../scss/components/_table.scss", + "../scss/pages/_pages.scss", + "../scss/pages/_dashboard.scss", + "../scss/pages/_auth.scss", + "../scss/pages/_settings.scss", + "../scss/pages/_profile.scss", + "../scss/pages/_wallet.scss", + "../scss/pages/_balance.scss", + "../scss/pages/_bill.scss", + "../scss/pages/_notification.scss", + "../scss/pages/_demo.scss" + ], + "names": [], + "mappings": "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" +} \ No newline at end of file diff --git a/public/favicon.png b/public/favicon.png new file mode 100644 index 0000000..3e71b17 Binary files /dev/null and b/public/favicon.png differ diff --git a/public/icons/bootstrap-icons/bootstrap-icons.css b/public/icons/bootstrap-icons/bootstrap-icons.css new file mode 100644 index 0000000..bb3f12c --- /dev/null +++ b/public/icons/bootstrap-icons/bootstrap-icons.css @@ -0,0 +1,1222 @@ +@font-face { + font-family: "bootstrap-icons"; + src: url("./fonts/bootstrap-icons.woff?5813790c1ebd573b51a03ec84367082a") format("woff"), +url("./fonts/bootstrap-icons.woff2?5813790c1ebd573b51a03ec84367082a") format("woff2"); +} + +[class^="bi-"]::before, +[class*=" bi-"]::before { + display: inline-block; + font-family: bootstrap-icons !important; + font-style: normal; + font-weight: normal !important; + font-variant: normal; + text-transform: none; + line-height: 1; + vertical-align: text-bottom; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +.bi-alarm-fill::before { content: "\f101"; } +.bi-alarm::before { content: "\f102"; } +.bi-align-bottom::before { content: "\f103"; } +.bi-align-center::before { content: "\f104"; } +.bi-align-end::before { content: "\f105"; } +.bi-align-middle::before { content: "\f106"; } +.bi-align-start::before { content: "\f107"; } +.bi-align-top::before { content: "\f108"; } +.bi-alt::before { content: "\f109"; } +.bi-app-indicator::before { content: "\f10a"; } +.bi-app::before { content: "\f10b"; } +.bi-archive-fill::before { content: "\f10c"; } +.bi-archive::before { content: "\f10d"; } +.bi-arrow-90deg-down::before { content: "\f10e"; } +.bi-arrow-90deg-left::before { content: "\f10f"; } +.bi-arrow-90deg-right::before { content: "\f110"; } +.bi-arrow-90deg-up::before { content: "\f111"; } +.bi-arrow-bar-down::before { content: "\f112"; } +.bi-arrow-bar-left::before { content: "\f113"; } +.bi-arrow-bar-right::before { content: "\f114"; } +.bi-arrow-bar-up::before { content: "\f115"; } +.bi-arrow-clockwise::before { content: "\f116"; } +.bi-arrow-counterclockwise::before { content: "\f117"; } +.bi-arrow-down-circle-fill::before { content: "\f118"; } +.bi-arrow-down-circle::before { content: "\f119"; } +.bi-arrow-down-left-circle-fill::before { content: "\f11a"; } +.bi-arrow-down-left-circle::before { content: "\f11b"; } +.bi-arrow-down-left-square-fill::before { content: "\f11c"; } +.bi-arrow-down-left-square::before { content: "\f11d"; } +.bi-arrow-down-left::before { content: "\f11e"; } +.bi-arrow-down-right-circle-fill::before { content: "\f11f"; } +.bi-arrow-down-right-circle::before { content: "\f120"; } +.bi-arrow-down-right-square-fill::before { content: "\f121"; } +.bi-arrow-down-right-square::before { content: "\f122"; } +.bi-arrow-down-right::before { content: "\f123"; } +.bi-arrow-down-short::before { content: "\f124"; } +.bi-arrow-down-square-fill::before { content: "\f125"; } +.bi-arrow-down-square::before { content: "\f126"; } +.bi-arrow-down-up::before { content: "\f127"; } +.bi-arrow-down::before { content: "\f128"; } +.bi-arrow-left-circle-fill::before { content: "\f129"; } +.bi-arrow-left-circle::before { content: "\f12a"; } +.bi-arrow-left-right::before { content: "\f12b"; } +.bi-arrow-left-short::before { content: "\f12c"; } +.bi-arrow-left-square-fill::before { content: "\f12d"; } +.bi-arrow-left-square::before { content: "\f12e"; } +.bi-arrow-left::before { content: "\f12f"; } +.bi-arrow-repeat::before { content: "\f130"; } +.bi-arrow-return-left::before { content: "\f131"; } +.bi-arrow-return-right::before { content: "\f132"; } +.bi-arrow-right-circle-fill::before { content: "\f133"; } +.bi-arrow-right-circle::before { content: "\f134"; } +.bi-arrow-right-short::before { content: "\f135"; } +.bi-arrow-right-square-fill::before { content: "\f136"; } +.bi-arrow-right-square::before { content: "\f137"; } +.bi-arrow-right::before { content: "\f138"; } +.bi-arrow-up-circle-fill::before { content: "\f139"; } +.bi-arrow-up-circle::before { content: "\f13a"; } +.bi-arrow-up-left-circle-fill::before { content: "\f13b"; } +.bi-arrow-up-left-circle::before { content: "\f13c"; } +.bi-arrow-up-left-square-fill::before { content: "\f13d"; } +.bi-arrow-up-left-square::before { content: "\f13e"; } +.bi-arrow-up-left::before { content: "\f13f"; } +.bi-arrow-up-right-circle-fill::before { content: "\f140"; } +.bi-arrow-up-right-circle::before { content: "\f141"; } +.bi-arrow-up-right-square-fill::before { content: "\f142"; } +.bi-arrow-up-right-square::before { content: "\f143"; } +.bi-arrow-up-right::before { content: "\f144"; } +.bi-arrow-up-short::before { content: "\f145"; } +.bi-arrow-up-square-fill::before { content: "\f146"; } +.bi-arrow-up-square::before { content: "\f147"; } +.bi-arrow-up::before { content: "\f148"; } +.bi-arrows-angle-contract::before { content: "\f149"; } +.bi-arrows-angle-expand::before { content: "\f14a"; } +.bi-arrows-collapse::before { content: "\f14b"; } +.bi-arrows-expand::before { content: "\f14c"; } +.bi-arrows-fullscreen::before { content: "\f14d"; } +.bi-arrows-move::before { content: "\f14e"; } +.bi-aspect-ratio-fill::before { content: "\f14f"; } +.bi-aspect-ratio::before { content: "\f150"; } +.bi-asterisk::before { content: "\f151"; } +.bi-at::before { content: "\f152"; } +.bi-award-fill::before { content: "\f153"; } +.bi-award::before { content: "\f154"; } +.bi-back::before { content: "\f155"; } +.bi-backspace-fill::before { content: "\f156"; } +.bi-backspace-reverse-fill::before { content: "\f157"; } +.bi-backspace-reverse::before { content: "\f158"; } +.bi-backspace::before { content: "\f159"; } +.bi-badge-4k-fill::before { content: "\f15a"; } +.bi-badge-4k::before { content: "\f15b"; } +.bi-badge-8k-fill::before { content: "\f15c"; } +.bi-badge-8k::before { content: "\f15d"; } +.bi-badge-ad-fill::before { content: "\f15e"; } +.bi-badge-ad::before { content: "\f15f"; } +.bi-badge-cc-fill::before { content: "\f160"; } +.bi-badge-cc::before { content: "\f161"; } +.bi-badge-hd-fill::before { content: "\f162"; } +.bi-badge-hd::before { content: "\f163"; } +.bi-badge-tm-fill::before { content: "\f164"; } +.bi-badge-tm::before { content: "\f165"; } +.bi-badge-vo-fill::before { content: "\f166"; } +.bi-badge-vo::before { content: "\f167"; } +.bi-bag-check-fill::before { content: "\f168"; } +.bi-bag-check::before { content: "\f169"; } +.bi-bag-dash-fill::before { content: "\f16a"; } +.bi-bag-dash::before { content: "\f16b"; } +.bi-bag-fill::before { content: "\f16c"; } +.bi-bag-plus-fill::before { content: "\f16d"; } +.bi-bag-plus::before { content: "\f16e"; } +.bi-bag-x-fill::before { content: "\f16f"; } +.bi-bag-x::before { content: "\f170"; } +.bi-bag::before { content: "\f171"; } +.bi-bar-chart-fill::before { content: "\f172"; } +.bi-bar-chart-line-fill::before { content: "\f173"; } +.bi-bar-chart-line::before { content: "\f174"; } +.bi-bar-chart-steps::before { content: "\f175"; } +.bi-bar-chart::before { content: "\f176"; } +.bi-basket-fill::before { content: "\f177"; } +.bi-basket::before { content: "\f178"; } +.bi-basket2-fill::before { content: "\f179"; } +.bi-basket2::before { content: "\f17a"; } +.bi-basket3-fill::before { content: "\f17b"; } +.bi-basket3::before { content: "\f17c"; } +.bi-battery-charging::before { content: "\f17d"; } +.bi-battery-full::before { content: "\f17e"; } +.bi-battery-half::before { content: "\f17f"; } +.bi-battery::before { content: "\f180"; } +.bi-bell-fill::before { content: "\f181"; } +.bi-bell::before { content: "\f182"; } +.bi-bezier::before { content: "\f183"; } +.bi-bezier2::before { content: "\f184"; } +.bi-bicycle::before { content: "\f185"; } +.bi-binoculars-fill::before { content: "\f186"; } +.bi-binoculars::before { content: "\f187"; } +.bi-blockquote-left::before { content: "\f188"; } +.bi-blockquote-right::before { content: "\f189"; } +.bi-book-fill::before { content: "\f18a"; } +.bi-book-half::before { content: "\f18b"; } +.bi-book::before { content: "\f18c"; } +.bi-bookmark-check-fill::before { content: "\f18d"; } +.bi-bookmark-check::before { content: "\f18e"; } +.bi-bookmark-dash-fill::before { content: "\f18f"; } +.bi-bookmark-dash::before { content: "\f190"; } +.bi-bookmark-fill::before { content: "\f191"; } +.bi-bookmark-heart-fill::before { content: "\f192"; } +.bi-bookmark-heart::before { content: "\f193"; } +.bi-bookmark-plus-fill::before { content: "\f194"; } +.bi-bookmark-plus::before { content: "\f195"; } +.bi-bookmark-star-fill::before { content: "\f196"; } +.bi-bookmark-star::before { content: "\f197"; } +.bi-bookmark-x-fill::before { content: "\f198"; } +.bi-bookmark-x::before { content: "\f199"; } +.bi-bookmark::before { content: "\f19a"; } +.bi-bookmarks-fill::before { content: "\f19b"; } +.bi-bookmarks::before { content: "\f19c"; } +.bi-bookshelf::before { content: "\f19d"; } +.bi-bootstrap-fill::before { content: "\f19e"; } +.bi-bootstrap-reboot::before { content: "\f19f"; } +.bi-bootstrap::before { content: "\f1a0"; } +.bi-border-style::before { content: "\f1a1"; } +.bi-border-width::before { content: "\f1a2"; } +.bi-bounding-box-circles::before { content: "\f1a3"; } +.bi-bounding-box::before { content: "\f1a4"; } +.bi-box-arrow-down-left::before { content: "\f1a5"; } +.bi-box-arrow-down-right::before { content: "\f1a6"; } +.bi-box-arrow-down::before { content: "\f1a7"; } +.bi-box-arrow-in-down-left::before { content: "\f1a8"; } +.bi-box-arrow-in-down-right::before { content: "\f1a9"; } +.bi-box-arrow-in-down::before { content: "\f1aa"; } +.bi-box-arrow-in-left::before { content: "\f1ab"; } +.bi-box-arrow-in-right::before { content: "\f1ac"; } +.bi-box-arrow-in-up-left::before { content: "\f1ad"; } +.bi-box-arrow-in-up-right::before { content: "\f1ae"; } +.bi-box-arrow-in-up::before { content: "\f1af"; } +.bi-box-arrow-left::before { content: "\f1b0"; } +.bi-box-arrow-right::before { content: "\f1b1"; } +.bi-box-arrow-up-left::before { content: "\f1b2"; } +.bi-box-arrow-up-right::before { content: "\f1b3"; } +.bi-box-arrow-up::before { content: "\f1b4"; } +.bi-box-seam::before { content: "\f1b5"; } +.bi-box::before { content: "\f1b6"; } +.bi-braces::before { content: "\f1b7"; } +.bi-bricks::before { content: "\f1b8"; } +.bi-briefcase-fill::before { content: "\f1b9"; } +.bi-briefcase::before { content: "\f1ba"; } +.bi-brightness-alt-high-fill::before { content: "\f1bb"; } +.bi-brightness-alt-high::before { content: "\f1bc"; } +.bi-brightness-alt-low-fill::before { content: "\f1bd"; } +.bi-brightness-alt-low::before { content: "\f1be"; } +.bi-brightness-high-fill::before { content: "\f1bf"; } +.bi-brightness-high::before { content: "\f1c0"; } +.bi-brightness-low-fill::before { content: "\f1c1"; } +.bi-brightness-low::before { content: "\f1c2"; } +.bi-broadcast-pin::before { content: "\f1c3"; } +.bi-broadcast::before { content: "\f1c4"; } +.bi-brush-fill::before { content: "\f1c5"; } +.bi-brush::before { content: "\f1c6"; } +.bi-bucket-fill::before { content: "\f1c7"; } +.bi-bucket::before { content: "\f1c8"; } +.bi-bug-fill::before { content: "\f1c9"; } +.bi-bug::before { content: "\f1ca"; } +.bi-building::before { content: "\f1cb"; } +.bi-bullseye::before { content: "\f1cc"; } +.bi-calculator-fill::before { content: "\f1cd"; } +.bi-calculator::before { content: "\f1ce"; } +.bi-calendar-check-fill::before { content: "\f1cf"; } +.bi-calendar-check::before { content: "\f1d0"; } +.bi-calendar-date-fill::before { content: "\f1d1"; } +.bi-calendar-date::before { content: "\f1d2"; } +.bi-calendar-day-fill::before { content: "\f1d3"; } +.bi-calendar-day::before { content: "\f1d4"; } +.bi-calendar-event-fill::before { content: "\f1d5"; } +.bi-calendar-event::before { content: "\f1d6"; } +.bi-calendar-fill::before { content: "\f1d7"; } +.bi-calendar-minus-fill::before { content: "\f1d8"; } +.bi-calendar-minus::before { content: "\f1d9"; } +.bi-calendar-month-fill::before { content: "\f1da"; } +.bi-calendar-month::before { content: "\f1db"; } +.bi-calendar-plus-fill::before { content: "\f1dc"; } +.bi-calendar-plus::before { content: "\f1dd"; } +.bi-calendar-range-fill::before { content: "\f1de"; } +.bi-calendar-range::before { content: "\f1df"; } +.bi-calendar-week-fill::before { content: "\f1e0"; } +.bi-calendar-week::before { content: "\f1e1"; } +.bi-calendar-x-fill::before { content: "\f1e2"; } +.bi-calendar-x::before { content: "\f1e3"; } +.bi-calendar::before { content: "\f1e4"; } +.bi-calendar2-check-fill::before { content: "\f1e5"; } +.bi-calendar2-check::before { content: "\f1e6"; } +.bi-calendar2-date-fill::before { content: "\f1e7"; } +.bi-calendar2-date::before { content: "\f1e8"; } +.bi-calendar2-day-fill::before { content: "\f1e9"; } +.bi-calendar2-day::before { content: "\f1ea"; } +.bi-calendar2-event-fill::before { content: "\f1eb"; } +.bi-calendar2-event::before { content: "\f1ec"; } +.bi-calendar2-fill::before { content: "\f1ed"; } +.bi-calendar2-minus-fill::before { content: "\f1ee"; } +.bi-calendar2-minus::before { content: "\f1ef"; } +.bi-calendar2-month-fill::before { content: "\f1f0"; } +.bi-calendar2-month::before { content: "\f1f1"; } +.bi-calendar2-plus-fill::before { content: "\f1f2"; } +.bi-calendar2-plus::before { content: "\f1f3"; } +.bi-calendar2-range-fill::before { content: "\f1f4"; } +.bi-calendar2-range::before { content: "\f1f5"; } +.bi-calendar2-week-fill::before { content: "\f1f6"; } +.bi-calendar2-week::before { content: "\f1f7"; } +.bi-calendar2-x-fill::before { content: "\f1f8"; } +.bi-calendar2-x::before { content: "\f1f9"; } +.bi-calendar2::before { content: "\f1fa"; } +.bi-calendar3-event-fill::before { content: "\f1fb"; } +.bi-calendar3-event::before { content: "\f1fc"; } +.bi-calendar3-fill::before { content: "\f1fd"; } +.bi-calendar3-range-fill::before { content: "\f1fe"; } +.bi-calendar3-range::before { content: "\f1ff"; } +.bi-calendar3-week-fill::before { content: "\f200"; } +.bi-calendar3-week::before { content: "\f201"; } +.bi-calendar3::before { content: "\f202"; } +.bi-calendar4-event::before { content: "\f203"; } +.bi-calendar4-range::before { content: "\f204"; } +.bi-calendar4-week::before { content: "\f205"; } +.bi-calendar4::before { content: "\f206"; } +.bi-camera-fill::before { content: "\f207"; } +.bi-camera-reels-fill::before { content: "\f208"; } +.bi-camera-reels::before { content: "\f209"; } +.bi-camera-video-fill::before { content: "\f20a"; } +.bi-camera-video-off-fill::before { content: "\f20b"; } +.bi-camera-video-off::before { content: "\f20c"; } +.bi-camera-video::before { content: "\f20d"; } +.bi-camera::before { content: "\f20e"; } +.bi-camera2::before { content: "\f20f"; } +.bi-capslock-fill::before { content: "\f210"; } +.bi-capslock::before { content: "\f211"; } +.bi-card-checklist::before { content: "\f212"; } +.bi-card-heading::before { content: "\f213"; } +.bi-card-image::before { content: "\f214"; } +.bi-card-list::before { content: "\f215"; } +.bi-card-text::before { content: "\f216"; } +.bi-caret-down-fill::before { content: "\f217"; } +.bi-caret-down-square-fill::before { content: "\f218"; } +.bi-caret-down-square::before { content: "\f219"; } +.bi-caret-down::before { content: "\f21a"; } +.bi-caret-left-fill::before { content: "\f21b"; } +.bi-caret-left-square-fill::before { content: "\f21c"; } +.bi-caret-left-square::before { content: "\f21d"; } +.bi-caret-left::before { content: "\f21e"; } +.bi-caret-right-fill::before { content: "\f21f"; } +.bi-caret-right-square-fill::before { content: "\f220"; } +.bi-caret-right-square::before { content: "\f221"; } +.bi-caret-right::before { content: "\f222"; } +.bi-caret-up-fill::before { content: "\f223"; } +.bi-caret-up-square-fill::before { content: "\f224"; } +.bi-caret-up-square::before { content: "\f225"; } +.bi-caret-up::before { content: "\f226"; } +.bi-cart-check-fill::before { content: "\f227"; } +.bi-cart-check::before { content: "\f228"; } +.bi-cart-dash-fill::before { content: "\f229"; } +.bi-cart-dash::before { content: "\f22a"; } +.bi-cart-fill::before { content: "\f22b"; } +.bi-cart-plus-fill::before { content: "\f22c"; } +.bi-cart-plus::before { content: "\f22d"; } +.bi-cart-x-fill::before { content: "\f22e"; } +.bi-cart-x::before { content: "\f22f"; } +.bi-cart::before { content: "\f230"; } +.bi-cart2::before { content: "\f231"; } +.bi-cart3::before { content: "\f232"; } +.bi-cart4::before { content: "\f233"; } +.bi-cash-stack::before { content: "\f234"; } +.bi-cash::before { content: "\f235"; } +.bi-cast::before { content: "\f236"; } +.bi-chat-dots-fill::before { content: "\f237"; } +.bi-chat-dots::before { content: "\f238"; } +.bi-chat-fill::before { content: "\f239"; } +.bi-chat-left-dots-fill::before { content: "\f23a"; } +.bi-chat-left-dots::before { content: "\f23b"; } +.bi-chat-left-fill::before { content: "\f23c"; } +.bi-chat-left-quote-fill::before { content: "\f23d"; } +.bi-chat-left-quote::before { content: "\f23e"; } +.bi-chat-left-text-fill::before { content: "\f23f"; } +.bi-chat-left-text::before { content: "\f240"; } +.bi-chat-left::before { content: "\f241"; } +.bi-chat-quote-fill::before { content: "\f242"; } +.bi-chat-quote::before { content: "\f243"; } +.bi-chat-right-dots-fill::before { content: "\f244"; } +.bi-chat-right-dots::before { content: "\f245"; } +.bi-chat-right-fill::before { content: "\f246"; } +.bi-chat-right-quote-fill::before { content: "\f247"; } +.bi-chat-right-quote::before { content: "\f248"; } +.bi-chat-right-text-fill::before { content: "\f249"; } +.bi-chat-right-text::before { content: "\f24a"; } +.bi-chat-right::before { content: "\f24b"; } +.bi-chat-square-dots-fill::before { content: "\f24c"; } +.bi-chat-square-dots::before { content: "\f24d"; } +.bi-chat-square-fill::before { content: "\f24e"; } +.bi-chat-square-quote-fill::before { content: "\f24f"; } +.bi-chat-square-quote::before { content: "\f250"; } +.bi-chat-square-text-fill::before { content: "\f251"; } +.bi-chat-square-text::before { content: "\f252"; } +.bi-chat-square::before { content: "\f253"; } +.bi-chat-text-fill::before { content: "\f254"; } +.bi-chat-text::before { content: "\f255"; } +.bi-chat::before { content: "\f256"; } +.bi-check-all::before { content: "\f257"; } +.bi-check-circle-fill::before { content: "\f258"; } +.bi-check-circle::before { content: "\f259"; } +.bi-check-square-fill::before { content: "\f25a"; } +.bi-check-square::before { content: "\f25b"; } +.bi-check::before { content: "\f25c"; } +.bi-check2-all::before { content: "\f25d"; } +.bi-check2-circle::before { content: "\f25e"; } +.bi-check2-square::before { content: "\f25f"; } +.bi-check2::before { content: "\f260"; } +.bi-chevron-bar-contract::before { content: "\f261"; } +.bi-chevron-bar-down::before { content: "\f262"; } +.bi-chevron-bar-expand::before { content: "\f263"; } +.bi-chevron-bar-left::before { content: "\f264"; } +.bi-chevron-bar-right::before { content: "\f265"; } +.bi-chevron-bar-up::before { content: "\f266"; } +.bi-chevron-compact-down::before { content: "\f267"; } +.bi-chevron-compact-left::before { content: "\f268"; } +.bi-chevron-compact-right::before { content: "\f269"; } +.bi-chevron-compact-up::before { content: "\f26a"; } +.bi-chevron-contract::before { content: "\f26b"; } +.bi-chevron-double-down::before { content: "\f26c"; } +.bi-chevron-double-left::before { content: "\f26d"; } +.bi-chevron-double-right::before { content: "\f26e"; } +.bi-chevron-double-up::before { content: "\f26f"; } +.bi-chevron-down::before { content: "\f270"; } +.bi-chevron-expand::before { content: "\f271"; } +.bi-chevron-left::before { content: "\f272"; } +.bi-chevron-right::before { content: "\f273"; } +.bi-chevron-up::before { content: "\f274"; } +.bi-circle-fill::before { content: "\f275"; } +.bi-circle-half::before { content: "\f276"; } +.bi-circle-square::before { content: "\f277"; } +.bi-circle::before { content: "\f278"; } +.bi-clipboard-check::before { content: "\f279"; } +.bi-clipboard-data::before { content: "\f27a"; } +.bi-clipboard-minus::before { content: "\f27b"; } +.bi-clipboard-plus::before { content: "\f27c"; } +.bi-clipboard-x::before { content: "\f27d"; } +.bi-clipboard::before { content: "\f27e"; } +.bi-clock-fill::before { content: "\f27f"; } +.bi-clock-history::before { content: "\f280"; } +.bi-clock::before { content: "\f281"; } +.bi-cloud-arrow-down-fill::before { content: "\f282"; } +.bi-cloud-arrow-down::before { content: "\f283"; } +.bi-cloud-arrow-up-fill::before { content: "\f284"; } +.bi-cloud-arrow-up::before { content: "\f285"; } +.bi-cloud-check-fill::before { content: "\f286"; } +.bi-cloud-check::before { content: "\f287"; } +.bi-cloud-download-fill::before { content: "\f288"; } +.bi-cloud-download::before { content: "\f289"; } +.bi-cloud-fill::before { content: "\f28a"; } +.bi-cloud-minus-fill::before { content: "\f28b"; } +.bi-cloud-minus::before { content: "\f28c"; } +.bi-cloud-plus-fill::before { content: "\f28d"; } +.bi-cloud-plus::before { content: "\f28e"; } +.bi-cloud-slash-fill::before { content: "\f28f"; } +.bi-cloud-slash::before { content: "\f290"; } +.bi-cloud-upload-fill::before { content: "\f291"; } +.bi-cloud-upload::before { content: "\f292"; } +.bi-cloud::before { content: "\f293"; } +.bi-code-slash::before { content: "\f294"; } +.bi-code-square::before { content: "\f295"; } +.bi-code::before { content: "\f296"; } +.bi-collection-fill::before { content: "\f297"; } +.bi-collection-play-fill::before { content: "\f298"; } +.bi-collection-play::before { content: "\f299"; } +.bi-collection::before { content: "\f29a"; } +.bi-columns-gap::before { content: "\f29b"; } +.bi-columns::before { content: "\f29c"; } +.bi-command::before { content: "\f29d"; } +.bi-compass-fill::before { content: "\f29e"; } +.bi-compass::before { content: "\f29f"; } +.bi-cone-striped::before { content: "\f2a0"; } +.bi-cone::before { content: "\f2a1"; } +.bi-controller::before { content: "\f2a2"; } +.bi-cpu-fill::before { content: "\f2a3"; } +.bi-cpu::before { content: "\f2a4"; } +.bi-credit-card-2-back-fill::before { content: "\f2a5"; } +.bi-credit-card-2-back::before { content: "\f2a6"; } +.bi-credit-card-2-front-fill::before { content: "\f2a7"; } +.bi-credit-card-2-front::before { content: "\f2a8"; } +.bi-credit-card-fill::before { content: "\f2a9"; } +.bi-credit-card::before { content: "\f2aa"; } +.bi-crop::before { content: "\f2ab"; } +.bi-cup-fill::before { content: "\f2ac"; } +.bi-cup-straw::before { content: "\f2ad"; } +.bi-cup::before { content: "\f2ae"; } +.bi-cursor-fill::before { content: "\f2af"; } +.bi-cursor-text::before { content: "\f2b0"; } +.bi-cursor::before { content: "\f2b1"; } +.bi-dash-circle-fill::before { content: "\f2b2"; } +.bi-dash-circle::before { content: "\f2b3"; } +.bi-dash-square-fill::before { content: "\f2b4"; } +.bi-dash-square::before { content: "\f2b5"; } +.bi-dash::before { content: "\f2b6"; } +.bi-diagram-2-fill::before { content: "\f2b7"; } +.bi-diagram-2::before { content: "\f2b8"; } +.bi-diagram-3-fill::before { content: "\f2b9"; } +.bi-diagram-3::before { content: "\f2ba"; } +.bi-diamond-fill::before { content: "\f2bb"; } +.bi-diamond-half::before { content: "\f2bc"; } +.bi-diamond::before { content: "\f2bd"; } +.bi-dice-1-fill::before { content: "\f2be"; } +.bi-dice-1::before { content: "\f2bf"; } +.bi-dice-2-fill::before { content: "\f2c0"; } +.bi-dice-2::before { content: "\f2c1"; } +.bi-dice-3-fill::before { content: "\f2c2"; } +.bi-dice-3::before { content: "\f2c3"; } +.bi-dice-4-fill::before { content: "\f2c4"; } +.bi-dice-4::before { content: "\f2c5"; } +.bi-dice-5-fill::before { content: "\f2c6"; } +.bi-dice-5::before { content: "\f2c7"; } +.bi-dice-6-fill::before { content: "\f2c8"; } +.bi-dice-6::before { content: "\f2c9"; } +.bi-disc-fill::before { content: "\f2ca"; } +.bi-disc::before { content: "\f2cb"; } +.bi-discord::before { content: "\f2cc"; } +.bi-display-fill::before { content: "\f2cd"; } +.bi-display::before { content: "\f2ce"; } +.bi-distribute-horizontal::before { content: "\f2cf"; } +.bi-distribute-vertical::before { content: "\f2d0"; } +.bi-door-closed-fill::before { content: "\f2d1"; } +.bi-door-closed::before { content: "\f2d2"; } +.bi-door-open-fill::before { content: "\f2d3"; } +.bi-door-open::before { content: "\f2d4"; } +.bi-dot::before { content: "\f2d5"; } +.bi-download::before { content: "\f2d6"; } +.bi-droplet-fill::before { content: "\f2d7"; } +.bi-droplet-half::before { content: "\f2d8"; } +.bi-droplet::before { content: "\f2d9"; } +.bi-earbuds::before { content: "\f2da"; } +.bi-easel-fill::before { content: "\f2db"; } +.bi-easel::before { content: "\f2dc"; } +.bi-egg-fill::before { content: "\f2dd"; } +.bi-egg-fried::before { content: "\f2de"; } +.bi-egg::before { content: "\f2df"; } +.bi-eject-fill::before { content: "\f2e0"; } +.bi-eject::before { content: "\f2e1"; } +.bi-emoji-angry-fill::before { content: "\f2e2"; } +.bi-emoji-angry::before { content: "\f2e3"; } +.bi-emoji-dizzy-fill::before { content: "\f2e4"; } +.bi-emoji-dizzy::before { content: "\f2e5"; } +.bi-emoji-expressionless-fill::before { content: "\f2e6"; } +.bi-emoji-expressionless::before { content: "\f2e7"; } +.bi-emoji-frown-fill::before { content: "\f2e8"; } +.bi-emoji-frown::before { content: "\f2e9"; } +.bi-emoji-heart-eyes-fill::before { content: "\f2ea"; } +.bi-emoji-heart-eyes::before { content: "\f2eb"; } +.bi-emoji-laughing-fill::before { content: "\f2ec"; } +.bi-emoji-laughing::before { content: "\f2ed"; } +.bi-emoji-neutral-fill::before { content: "\f2ee"; } +.bi-emoji-neutral::before { content: "\f2ef"; } +.bi-emoji-smile-fill::before { content: "\f2f0"; } +.bi-emoji-smile-upside-down-fill::before { content: "\f2f1"; } +.bi-emoji-smile-upside-down::before { content: "\f2f2"; } +.bi-emoji-smile::before { content: "\f2f3"; } +.bi-emoji-sunglasses-fill::before { content: "\f2f4"; } +.bi-emoji-sunglasses::before { content: "\f2f5"; } +.bi-emoji-wink-fill::before { content: "\f2f6"; } +.bi-emoji-wink::before { content: "\f2f7"; } +.bi-envelope-fill::before { content: "\f2f8"; } +.bi-envelope-open-fill::before { content: "\f2f9"; } +.bi-envelope-open::before { content: "\f2fa"; } +.bi-envelope::before { content: "\f2fb"; } +.bi-exclamation-circle-fill::before { content: "\f2fc"; } +.bi-exclamation-circle::before { content: "\f2fd"; } +.bi-exclamation-diamond-fill::before { content: "\f2fe"; } +.bi-exclamation-diamond::before { content: "\f2ff"; } +.bi-exclamation-octagon-fill::before { content: "\f300"; } +.bi-exclamation-octagon::before { content: "\f301"; } +.bi-exclamation-square-fill::before { content: "\f302"; } +.bi-exclamation-square::before { content: "\f303"; } +.bi-exclamation-triangle-fill::before { content: "\f304"; } +.bi-exclamation-triangle::before { content: "\f305"; } +.bi-exclamation::before { content: "\f306"; } +.bi-exclude::before { content: "\f307"; } +.bi-eye-fill::before { content: "\f308"; } +.bi-eye-slash-fill::before { content: "\f309"; } +.bi-eye-slash::before { content: "\f30a"; } +.bi-eye::before { content: "\f30b"; } +.bi-eyeglasses::before { content: "\f30c"; } +.bi-facebook::before { content: "\f30d"; } +.bi-file-arrow-down-fill::before { content: "\f30e"; } +.bi-file-arrow-down::before { content: "\f30f"; } +.bi-file-arrow-up-fill::before { content: "\f310"; } +.bi-file-arrow-up::before { content: "\f311"; } +.bi-file-bar-graph-fill::before { content: "\f312"; } +.bi-file-bar-graph::before { content: "\f313"; } +.bi-file-binary-fill::before { content: "\f314"; } +.bi-file-binary::before { content: "\f315"; } +.bi-file-break-fill::before { content: "\f316"; } +.bi-file-break::before { content: "\f317"; } +.bi-file-check-fill::before { content: "\f318"; } +.bi-file-check::before { content: "\f319"; } +.bi-file-code-fill::before { content: "\f31a"; } +.bi-file-code::before { content: "\f31b"; } +.bi-file-diff-fill::before { content: "\f31c"; } +.bi-file-diff::before { content: "\f31d"; } +.bi-file-earmark-arrow-down-fill::before { content: "\f31e"; } +.bi-file-earmark-arrow-down::before { content: "\f31f"; } +.bi-file-earmark-arrow-up-fill::before { content: "\f320"; } +.bi-file-earmark-arrow-up::before { content: "\f321"; } +.bi-file-earmark-bar-graph-fill::before { content: "\f322"; } +.bi-file-earmark-bar-graph::before { content: "\f323"; } +.bi-file-earmark-binary-fill::before { content: "\f324"; } +.bi-file-earmark-binary::before { content: "\f325"; } +.bi-file-earmark-break-fill::before { content: "\f326"; } +.bi-file-earmark-break::before { content: "\f327"; } +.bi-file-earmark-check-fill::before { content: "\f328"; } +.bi-file-earmark-check::before { content: "\f329"; } +.bi-file-earmark-code-fill::before { content: "\f32a"; } +.bi-file-earmark-code::before { content: "\f32b"; } +.bi-file-earmark-diff-fill::before { content: "\f32c"; } +.bi-file-earmark-diff::before { content: "\f32d"; } +.bi-file-earmark-easel-fill::before { content: "\f32e"; } +.bi-file-earmark-easel::before { content: "\f32f"; } +.bi-file-earmark-excel-fill::before { content: "\f330"; } +.bi-file-earmark-excel::before { content: "\f331"; } +.bi-file-earmark-fill::before { content: "\f332"; } +.bi-file-earmark-font-fill::before { content: "\f333"; } +.bi-file-earmark-font::before { content: "\f334"; } +.bi-file-earmark-image-fill::before { content: "\f335"; } +.bi-file-earmark-image::before { content: "\f336"; } +.bi-file-earmark-lock-fill::before { content: "\f337"; } +.bi-file-earmark-lock::before { content: "\f338"; } +.bi-file-earmark-lock2-fill::before { content: "\f339"; } +.bi-file-earmark-lock2::before { content: "\f33a"; } +.bi-file-earmark-medical-fill::before { content: "\f33b"; } +.bi-file-earmark-medical::before { content: "\f33c"; } +.bi-file-earmark-minus-fill::before { content: "\f33d"; } +.bi-file-earmark-minus::before { content: "\f33e"; } +.bi-file-earmark-music-fill::before { content: "\f33f"; } +.bi-file-earmark-music::before { content: "\f340"; } +.bi-file-earmark-person-fill::before { content: "\f341"; } +.bi-file-earmark-person::before { content: "\f342"; } +.bi-file-earmark-play-fill::before { content: "\f343"; } +.bi-file-earmark-play::before { content: "\f344"; } +.bi-file-earmark-plus-fill::before { content: "\f345"; } +.bi-file-earmark-plus::before { content: "\f346"; } +.bi-file-earmark-post-fill::before { content: "\f347"; } +.bi-file-earmark-post::before { content: "\f348"; } +.bi-file-earmark-ppt-fill::before { content: "\f349"; } +.bi-file-earmark-ppt::before { content: "\f34a"; } +.bi-file-earmark-richtext-fill::before { content: "\f34b"; } +.bi-file-earmark-richtext::before { content: "\f34c"; } +.bi-file-earmark-ruled-fill::before { content: "\f34d"; } +.bi-file-earmark-ruled::before { content: "\f34e"; } +.bi-file-earmark-slides-fill::before { content: "\f34f"; } +.bi-file-earmark-slides::before { content: "\f350"; } +.bi-file-earmark-spreadsheet-fill::before { content: "\f351"; } +.bi-file-earmark-spreadsheet::before { content: "\f352"; } +.bi-file-earmark-text-fill::before { content: "\f353"; } +.bi-file-earmark-text::before { content: "\f354"; } +.bi-file-earmark-word-fill::before { content: "\f355"; } +.bi-file-earmark-word::before { content: "\f356"; } +.bi-file-earmark-x-fill::before { content: "\f357"; } +.bi-file-earmark-x::before { content: "\f358"; } +.bi-file-earmark-zip-fill::before { content: "\f359"; } +.bi-file-earmark-zip::before { content: "\f35a"; } +.bi-file-earmark::before { content: "\f35b"; } +.bi-file-easel-fill::before { content: "\f35c"; } +.bi-file-easel::before { content: "\f35d"; } +.bi-file-excel-fill::before { content: "\f35e"; } +.bi-file-excel::before { content: "\f35f"; } +.bi-file-fill::before { content: "\f360"; } +.bi-file-font-fill::before { content: "\f361"; } +.bi-file-font::before { content: "\f362"; } +.bi-file-image-fill::before { content: "\f363"; } +.bi-file-image::before { content: "\f364"; } +.bi-file-lock-fill::before { content: "\f365"; } +.bi-file-lock::before { content: "\f366"; } +.bi-file-lock2-fill::before { content: "\f367"; } +.bi-file-lock2::before { content: "\f368"; } +.bi-file-medical-fill::before { content: "\f369"; } +.bi-file-medical::before { content: "\f36a"; } +.bi-file-minus-fill::before { content: "\f36b"; } +.bi-file-minus::before { content: "\f36c"; } +.bi-file-music-fill::before { content: "\f36d"; } +.bi-file-music::before { content: "\f36e"; } +.bi-file-person-fill::before { content: "\f36f"; } +.bi-file-person::before { content: "\f370"; } +.bi-file-play-fill::before { content: "\f371"; } +.bi-file-play::before { content: "\f372"; } +.bi-file-plus-fill::before { content: "\f373"; } +.bi-file-plus::before { content: "\f374"; } +.bi-file-post-fill::before { content: "\f375"; } +.bi-file-post::before { content: "\f376"; } +.bi-file-ppt-fill::before { content: "\f377"; } +.bi-file-ppt::before { content: "\f378"; } +.bi-file-richtext-fill::before { content: "\f379"; } +.bi-file-richtext::before { content: "\f37a"; } +.bi-file-ruled-fill::before { content: "\f37b"; } +.bi-file-ruled::before { content: "\f37c"; } +.bi-file-slides-fill::before { content: "\f37d"; } +.bi-file-slides::before { content: "\f37e"; } +.bi-file-spreadsheet-fill::before { content: "\f37f"; } +.bi-file-spreadsheet::before { content: "\f380"; } +.bi-file-text-fill::before { content: "\f381"; } +.bi-file-text::before { content: "\f382"; } +.bi-file-word-fill::before { content: "\f383"; } +.bi-file-word::before { content: "\f384"; } +.bi-file-x-fill::before { content: "\f385"; } +.bi-file-x::before { content: "\f386"; } +.bi-file-zip-fill::before { content: "\f387"; } +.bi-file-zip::before { content: "\f388"; } +.bi-file::before { content: "\f389"; } +.bi-files-alt::before { content: "\f38a"; } +.bi-files::before { content: "\f38b"; } +.bi-film::before { content: "\f38c"; } +.bi-filter-circle-fill::before { content: "\f38d"; } +.bi-filter-circle::before { content: "\f38e"; } +.bi-filter-left::before { content: "\f38f"; } +.bi-filter-right::before { content: "\f390"; } +.bi-filter-square-fill::before { content: "\f391"; } +.bi-filter-square::before { content: "\f392"; } +.bi-filter::before { content: "\f393"; } +.bi-flag-fill::before { content: "\f394"; } +.bi-flag::before { content: "\f395"; } +.bi-flower1::before { content: "\f396"; } +.bi-flower2::before { content: "\f397"; } +.bi-flower3::before { content: "\f398"; } +.bi-folder-check::before { content: "\f399"; } +.bi-folder-fill::before { content: "\f39a"; } +.bi-folder-minus::before { content: "\f39b"; } +.bi-folder-plus::before { content: "\f39c"; } +.bi-folder-symlink-fill::before { content: "\f39d"; } +.bi-folder-symlink::before { content: "\f39e"; } +.bi-folder-x::before { content: "\f39f"; } +.bi-folder::before { content: "\f3a0"; } +.bi-folder2-open::before { content: "\f3a1"; } +.bi-folder2::before { content: "\f3a2"; } +.bi-fonts::before { content: "\f3a3"; } +.bi-forward-fill::before { content: "\f3a4"; } +.bi-forward::before { content: "\f3a5"; } +.bi-front::before { content: "\f3a6"; } +.bi-fullscreen-exit::before { content: "\f3a7"; } +.bi-fullscreen::before { content: "\f3a8"; } +.bi-funnel-fill::before { content: "\f3a9"; } +.bi-funnel::before { content: "\f3aa"; } +.bi-gear-fill::before { content: "\f3ab"; } +.bi-gear-wide-connected::before { content: "\f3ac"; } +.bi-gear-wide::before { content: "\f3ad"; } +.bi-gear::before { content: "\f3ae"; } +.bi-gem::before { content: "\f3af"; } +.bi-geo-alt-fill::before { content: "\f3b0"; } +.bi-geo-alt::before { content: "\f3b1"; } +.bi-geo-fill::before { content: "\f3b2"; } +.bi-geo::before { content: "\f3b3"; } +.bi-gift-fill::before { content: "\f3b4"; } +.bi-gift::before { content: "\f3b5"; } +.bi-github::before { content: "\f3b6"; } +.bi-globe::before { content: "\f3b7"; } +.bi-globe2::before { content: "\f3b8"; } +.bi-google::before { content: "\f3b9"; } +.bi-graph-down::before { content: "\f3ba"; } +.bi-graph-up::before { content: "\f3bb"; } +.bi-grid-1x2-fill::before { content: "\f3bc"; } +.bi-grid-1x2::before { content: "\f3bd"; } +.bi-grid-3x2-gap-fill::before { content: "\f3be"; } +.bi-grid-3x2-gap::before { content: "\f3bf"; } +.bi-grid-3x2::before { content: "\f3c0"; } +.bi-grid-3x3-gap-fill::before { content: "\f3c1"; } +.bi-grid-3x3-gap::before { content: "\f3c2"; } +.bi-grid-3x3::before { content: "\f3c3"; } +.bi-grid-fill::before { content: "\f3c4"; } +.bi-grid::before { content: "\f3c5"; } +.bi-grip-horizontal::before { content: "\f3c6"; } +.bi-grip-vertical::before { content: "\f3c7"; } +.bi-hammer::before { content: "\f3c8"; } +.bi-hand-index-thumb::before { content: "\f3c9"; } +.bi-hand-index::before { content: "\f3ca"; } +.bi-hand-thumbs-down::before { content: "\f3cb"; } +.bi-hand-thumbs-up::before { content: "\f3cc"; } +.bi-handbag-fill::before { content: "\f3cd"; } +.bi-handbag::before { content: "\f3ce"; } +.bi-hash::before { content: "\f3cf"; } +.bi-hdd-fill::before { content: "\f3d0"; } +.bi-hdd-network-fill::before { content: "\f3d1"; } +.bi-hdd-network::before { content: "\f3d2"; } +.bi-hdd-rack-fill::before { content: "\f3d3"; } +.bi-hdd-rack::before { content: "\f3d4"; } +.bi-hdd-stack-fill::before { content: "\f3d5"; } +.bi-hdd-stack::before { content: "\f3d6"; } +.bi-hdd::before { content: "\f3d7"; } +.bi-headphones::before { content: "\f3d8"; } +.bi-headset::before { content: "\f3d9"; } +.bi-heart-fill::before { content: "\f3da"; } +.bi-heart-half::before { content: "\f3db"; } +.bi-heart::before { content: "\f3dc"; } +.bi-heptagon-fill::before { content: "\f3dd"; } +.bi-heptagon-half::before { content: "\f3de"; } +.bi-heptagon::before { content: "\f3df"; } +.bi-hexagon-fill::before { content: "\f3e0"; } +.bi-hexagon-half::before { content: "\f3e1"; } +.bi-hexagon::before { content: "\f3e2"; } +.bi-hourglass-bottom::before { content: "\f3e3"; } +.bi-hourglass-split::before { content: "\f3e4"; } +.bi-hourglass-top::before { content: "\f3e5"; } +.bi-hourglass::before { content: "\f3e6"; } +.bi-house-door-fill::before { content: "\f3e7"; } +.bi-house-door::before { content: "\f3e8"; } +.bi-house-fill::before { content: "\f3e9"; } +.bi-house::before { content: "\f3ea"; } +.bi-hr::before { content: "\f3eb"; } +.bi-image-alt::before { content: "\f3ec"; } +.bi-image-fill::before { content: "\f3ed"; } +.bi-image::before { content: "\f3ee"; } +.bi-images::before { content: "\f3ef"; } +.bi-inbox-fill::before { content: "\f3f0"; } +.bi-inbox::before { content: "\f3f1"; } +.bi-inboxes-fill::before { content: "\f3f2"; } +.bi-inboxes::before { content: "\f3f3"; } +.bi-info-circle-fill::before { content: "\f3f4"; } +.bi-info-circle::before { content: "\f3f5"; } +.bi-info-square-fill::before { content: "\f3f6"; } +.bi-info-square::before { content: "\f3f7"; } +.bi-info::before { content: "\f3f8"; } +.bi-input-cursor-text::before { content: "\f3f9"; } +.bi-input-cursor::before { content: "\f3fa"; } +.bi-instagram::before { content: "\f3fb"; } +.bi-intersect::before { content: "\f3fc"; } +.bi-journal-album::before { content: "\f3fd"; } +.bi-journal-arrow-down::before { content: "\f3fe"; } +.bi-journal-arrow-up::before { content: "\f3ff"; } +.bi-journal-bookmark-fill::before { content: "\f400"; } +.bi-journal-bookmark::before { content: "\f401"; } +.bi-journal-check::before { content: "\f402"; } +.bi-journal-code::before { content: "\f403"; } +.bi-journal-medical::before { content: "\f404"; } +.bi-journal-minus::before { content: "\f405"; } +.bi-journal-plus::before { content: "\f406"; } +.bi-journal-richtext::before { content: "\f407"; } +.bi-journal-text::before { content: "\f408"; } +.bi-journal-x::before { content: "\f409"; } +.bi-journal::before { content: "\f40a"; } +.bi-journals::before { content: "\f40b"; } +.bi-joystick::before { content: "\f40c"; } +.bi-justify-left::before { content: "\f40d"; } +.bi-justify-right::before { content: "\f40e"; } +.bi-justify::before { content: "\f40f"; } +.bi-kanban-fill::before { content: "\f410"; } +.bi-kanban::before { content: "\f411"; } +.bi-key-fill::before { content: "\f412"; } +.bi-key::before { content: "\f413"; } +.bi-keyboard-fill::before { content: "\f414"; } +.bi-keyboard::before { content: "\f415"; } +.bi-ladder::before { content: "\f416"; } +.bi-lamp-fill::before { content: "\f417"; } +.bi-lamp::before { content: "\f418"; } +.bi-laptop-fill::before { content: "\f419"; } +.bi-laptop::before { content: "\f41a"; } +.bi-layers-fill::before { content: "\f41b"; } +.bi-layers-half::before { content: "\f41c"; } +.bi-layers::before { content: "\f41d"; } +.bi-layout-sidebar-inset-reverse::before { content: "\f41e"; } +.bi-layout-sidebar-inset::before { content: "\f41f"; } +.bi-layout-sidebar-reverse::before { content: "\f420"; } +.bi-layout-sidebar::before { content: "\f421"; } +.bi-layout-split::before { content: "\f422"; } +.bi-layout-text-sidebar-reverse::before { content: "\f423"; } +.bi-layout-text-sidebar::before { content: "\f424"; } +.bi-layout-text-window-reverse::before { content: "\f425"; } +.bi-layout-text-window::before { content: "\f426"; } +.bi-layout-three-columns::before { content: "\f427"; } +.bi-layout-wtf::before { content: "\f428"; } +.bi-life-preserver::before { content: "\f429"; } +.bi-lightning-fill::before { content: "\f42a"; } +.bi-lightning::before { content: "\f42b"; } +.bi-link-45deg::before { content: "\f42c"; } +.bi-link::before { content: "\f42d"; } +.bi-linkedin::before { content: "\f42e"; } +.bi-list-check::before { content: "\f42f"; } +.bi-list-nested::before { content: "\f430"; } +.bi-list-ol::before { content: "\f431"; } +.bi-list-stars::before { content: "\f432"; } +.bi-list-task::before { content: "\f433"; } +.bi-list-ul::before { content: "\f434"; } +.bi-list::before { content: "\f435"; } +.bi-lock-fill::before { content: "\f436"; } +.bi-lock::before { content: "\f437"; } +.bi-mailbox::before { content: "\f438"; } +.bi-mailbox2::before { content: "\f439"; } +.bi-map-fill::before { content: "\f43a"; } +.bi-map::before { content: "\f43b"; } +.bi-markdown-fill::before { content: "\f43c"; } +.bi-markdown::before { content: "\f43d"; } +.bi-menu-app-fill::before { content: "\f43e"; } +.bi-menu-app::before { content: "\f43f"; } +.bi-menu-button-fill::before { content: "\f440"; } +.bi-menu-button-wide-fill::before { content: "\f441"; } +.bi-menu-button-wide::before { content: "\f442"; } +.bi-menu-button::before { content: "\f443"; } +.bi-menu-down::before { content: "\f444"; } +.bi-menu-up::before { content: "\f445"; } +.bi-mic-fill::before { content: "\f446"; } +.bi-mic-mute-fill::before { content: "\f447"; } +.bi-mic-mute::before { content: "\f448"; } +.bi-mic::before { content: "\f449"; } +.bi-minecart-loaded::before { content: "\f44a"; } +.bi-minecart::before { content: "\f44b"; } +.bi-moon::before { content: "\f44c"; } +.bi-mouse::before { content: "\f44d"; } +.bi-mouse2::before { content: "\f44e"; } +.bi-mouse3::before { content: "\f44f"; } +.bi-music-note-beamed::before { content: "\f450"; } +.bi-music-note-list::before { content: "\f451"; } +.bi-music-note::before { content: "\f452"; } +.bi-music-player-fill::before { content: "\f453"; } +.bi-music-player::before { content: "\f454"; } +.bi-newspaper::before { content: "\f455"; } +.bi-node-minus-fill::before { content: "\f456"; } +.bi-node-minus::before { content: "\f457"; } +.bi-node-plus-fill::before { content: "\f458"; } +.bi-node-plus::before { content: "\f459"; } +.bi-nut-fill::before { content: "\f45a"; } +.bi-nut::before { content: "\f45b"; } +.bi-octagon-fill::before { content: "\f45c"; } +.bi-octagon-half::before { content: "\f45d"; } +.bi-octagon::before { content: "\f45e"; } +.bi-option::before { content: "\f45f"; } +.bi-outlet::before { content: "\f460"; } +.bi-paperclip::before { content: "\f461"; } +.bi-paragraph::before { content: "\f462"; } +.bi-patch-check-fill::before { content: "\f463"; } +.bi-patch-check::before { content: "\f464"; } +.bi-patch-exclamation-fill::before { content: "\f465"; } +.bi-patch-exclamation::before { content: "\f466"; } +.bi-patch-minus-fill::before { content: "\f467"; } +.bi-patch-minus::before { content: "\f468"; } +.bi-patch-plus-fill::before { content: "\f469"; } +.bi-patch-plus::before { content: "\f46a"; } +.bi-patch-question-fill::before { content: "\f46b"; } +.bi-patch-question::before { content: "\f46c"; } +.bi-pause-btn-fill::before { content: "\f46d"; } +.bi-pause-btn::before { content: "\f46e"; } +.bi-pause-circle-fill::before { content: "\f46f"; } +.bi-pause-circle::before { content: "\f470"; } +.bi-pause-fill::before { content: "\f471"; } +.bi-pause::before { content: "\f472"; } +.bi-peace-fill::before { content: "\f473"; } +.bi-peace::before { content: "\f474"; } +.bi-pen-fill::before { content: "\f475"; } +.bi-pen::before { content: "\f476"; } +.bi-pencil-fill::before { content: "\f477"; } +.bi-pencil-square::before { content: "\f478"; } +.bi-pencil::before { content: "\f479"; } +.bi-pentagon-fill::before { content: "\f47a"; } +.bi-pentagon-half::before { content: "\f47b"; } +.bi-pentagon::before { content: "\f47c"; } +.bi-people-circle::before { content: "\f47d"; } +.bi-people-fill::before { content: "\f47e"; } +.bi-people::before { content: "\f47f"; } +.bi-percent::before { content: "\f480"; } +.bi-person-badge-fill::before { content: "\f481"; } +.bi-person-badge::before { content: "\f482"; } +.bi-person-bounding-box::before { content: "\f483"; } +.bi-person-check-fill::before { content: "\f484"; } +.bi-person-check::before { content: "\f485"; } +.bi-person-circle::before { content: "\f486"; } +.bi-person-dash-fill::before { content: "\f487"; } +.bi-person-dash::before { content: "\f488"; } +.bi-person-fill::before { content: "\f489"; } +.bi-person-lines-fill::before { content: "\f48a"; } +.bi-person-plus-fill::before { content: "\f48b"; } +.bi-person-plus::before { content: "\f48c"; } +.bi-person-square::before { content: "\f48d"; } +.bi-person-x-fill::before { content: "\f48e"; } +.bi-person-x::before { content: "\f48f"; } +.bi-person::before { content: "\f490"; } +.bi-phone-fill::before { content: "\f491"; } +.bi-phone-landscape-fill::before { content: "\f492"; } +.bi-phone-landscape::before { content: "\f493"; } +.bi-phone-vibrate::before { content: "\f494"; } +.bi-phone::before { content: "\f495"; } +.bi-pie-chart-fill::before { content: "\f496"; } +.bi-pie-chart::before { content: "\f497"; } +.bi-pip-fill::before { content: "\f498"; } +.bi-pip::before { content: "\f499"; } +.bi-play-btn-fill::before { content: "\f49a"; } +.bi-play-btn::before { content: "\f49b"; } +.bi-play-circle-fill::before { content: "\f49c"; } +.bi-play-circle::before { content: "\f49d"; } +.bi-play-fill::before { content: "\f49e"; } +.bi-play::before { content: "\f49f"; } +.bi-plug-fill::before { content: "\f4a0"; } +.bi-plug::before { content: "\f4a1"; } +.bi-plus-circle-fill::before { content: "\f4a2"; } +.bi-plus-circle::before { content: "\f4a3"; } +.bi-plus-square-fill::before { content: "\f4a4"; } +.bi-plus-square::before { content: "\f4a5"; } +.bi-plus::before { content: "\f4a6"; } +.bi-power::before { content: "\f4a7"; } +.bi-printer-fill::before { content: "\f4a8"; } +.bi-printer::before { content: "\f4a9"; } +.bi-puzzle-fill::before { content: "\f4aa"; } +.bi-puzzle::before { content: "\f4ab"; } +.bi-question-circle-fill::before { content: "\f4ac"; } +.bi-question-circle::before { content: "\f4ad"; } +.bi-question-diamond-fill::before { content: "\f4ae"; } +.bi-question-diamond::before { content: "\f4af"; } +.bi-question-octagon-fill::before { content: "\f4b0"; } +.bi-question-octagon::before { content: "\f4b1"; } +.bi-question-square-fill::before { content: "\f4b2"; } +.bi-question-square::before { content: "\f4b3"; } +.bi-question::before { content: "\f4b4"; } +.bi-receipt-cutoff::before { content: "\f4b5"; } +.bi-receipt::before { content: "\f4b6"; } +.bi-reception-0::before { content: "\f4b7"; } +.bi-reception-1::before { content: "\f4b8"; } +.bi-reception-2::before { content: "\f4b9"; } +.bi-reception-3::before { content: "\f4ba"; } +.bi-reception-4::before { content: "\f4bb"; } +.bi-record-btn-fill::before { content: "\f4bc"; } +.bi-record-btn::before { content: "\f4bd"; } +.bi-record-circle-fill::before { content: "\f4be"; } +.bi-record-circle::before { content: "\f4bf"; } +.bi-record-fill::before { content: "\f4c0"; } +.bi-record::before { content: "\f4c1"; } +.bi-record2-fill::before { content: "\f4c2"; } +.bi-record2::before { content: "\f4c3"; } +.bi-reply-all-fill::before { content: "\f4c4"; } +.bi-reply-all::before { content: "\f4c5"; } +.bi-reply-fill::before { content: "\f4c6"; } +.bi-reply::before { content: "\f4c7"; } +.bi-rss-fill::before { content: "\f4c8"; } +.bi-rss::before { content: "\f4c9"; } +.bi-scissors::before { content: "\f4ca"; } +.bi-screwdriver::before { content: "\f4cb"; } +.bi-search::before { content: "\f4cc"; } +.bi-segmented-nav::before { content: "\f4cd"; } +.bi-server::before { content: "\f4ce"; } +.bi-share-fill::before { content: "\f4cf"; } +.bi-share::before { content: "\f4d0"; } +.bi-shield-check::before { content: "\f4d1"; } +.bi-shield-exclamation::before { content: "\f4d2"; } +.bi-shield-fill-check::before { content: "\f4d3"; } +.bi-shield-fill-exclamation::before { content: "\f4d4"; } +.bi-shield-fill-minus::before { content: "\f4d5"; } +.bi-shield-fill-plus::before { content: "\f4d6"; } +.bi-shield-fill-x::before { content: "\f4d7"; } +.bi-shield-fill::before { content: "\f4d8"; } +.bi-shield-lock-fill::before { content: "\f4d9"; } +.bi-shield-lock::before { content: "\f4da"; } +.bi-shield-minus::before { content: "\f4db"; } +.bi-shield-plus::before { content: "\f4dc"; } +.bi-shield-shaded::before { content: "\f4dd"; } +.bi-shield-slash-fill::before { content: "\f4de"; } +.bi-shield-slash::before { content: "\f4df"; } +.bi-shield-x::before { content: "\f4e0"; } +.bi-shield::before { content: "\f4e1"; } +.bi-shift-fill::before { content: "\f4e2"; } +.bi-shift::before { content: "\f4e3"; } +.bi-shop-window::before { content: "\f4e4"; } +.bi-shop::before { content: "\f4e5"; } +.bi-shuffle::before { content: "\f4e6"; } +.bi-signpost-2-fill::before { content: "\f4e7"; } +.bi-signpost-2::before { content: "\f4e8"; } +.bi-signpost-fill::before { content: "\f4e9"; } +.bi-signpost-split-fill::before { content: "\f4ea"; } +.bi-signpost-split::before { content: "\f4eb"; } +.bi-signpost::before { content: "\f4ec"; } +.bi-sim-fill::before { content: "\f4ed"; } +.bi-sim::before { content: "\f4ee"; } +.bi-skip-backward-btn-fill::before { content: "\f4ef"; } +.bi-skip-backward-btn::before { content: "\f4f0"; } +.bi-skip-backward-circle-fill::before { content: "\f4f1"; } +.bi-skip-backward-circle::before { content: "\f4f2"; } +.bi-skip-backward-fill::before { content: "\f4f3"; } +.bi-skip-backward::before { content: "\f4f4"; } +.bi-skip-end-btn-fill::before { content: "\f4f5"; } +.bi-skip-end-btn::before { content: "\f4f6"; } +.bi-skip-end-circle-fill::before { content: "\f4f7"; } +.bi-skip-end-circle::before { content: "\f4f8"; } +.bi-skip-end-fill::before { content: "\f4f9"; } +.bi-skip-end::before { content: "\f4fa"; } +.bi-skip-forward-btn-fill::before { content: "\f4fb"; } +.bi-skip-forward-btn::before { content: "\f4fc"; } +.bi-skip-forward-circle-fill::before { content: "\f4fd"; } +.bi-skip-forward-circle::before { content: "\f4fe"; } +.bi-skip-forward-fill::before { content: "\f4ff"; } +.bi-skip-forward::before { content: "\f500"; } +.bi-skip-start-btn-fill::before { content: "\f501"; } +.bi-skip-start-btn::before { content: "\f502"; } +.bi-skip-start-circle-fill::before { content: "\f503"; } +.bi-skip-start-circle::before { content: "\f504"; } +.bi-skip-start-fill::before { content: "\f505"; } +.bi-skip-start::before { content: "\f506"; } +.bi-slack::before { content: "\f507"; } +.bi-slash-circle-fill::before { content: "\f508"; } +.bi-slash-circle::before { content: "\f509"; } +.bi-slash-square-fill::before { content: "\f50a"; } +.bi-slash-square::before { content: "\f50b"; } +.bi-slash::before { content: "\f50c"; } +.bi-sliders::before { content: "\f50d"; } +.bi-smartwatch::before { content: "\f50e"; } +.bi-sort-alpha-down-alt::before { content: "\f50f"; } +.bi-sort-alpha-down::before { content: "\f510"; } +.bi-sort-alpha-up-alt::before { content: "\f511"; } +.bi-sort-alpha-up::before { content: "\f512"; } +.bi-sort-down-alt::before { content: "\f513"; } +.bi-sort-down::before { content: "\f514"; } +.bi-sort-numeric-down-alt::before { content: "\f515"; } +.bi-sort-numeric-down::before { content: "\f516"; } +.bi-sort-numeric-up-alt::before { content: "\f517"; } +.bi-sort-numeric-up::before { content: "\f518"; } +.bi-sort-up-alt::before { content: "\f519"; } +.bi-sort-up::before { content: "\f51a"; } +.bi-soundwave::before { content: "\f51b"; } +.bi-speaker-fill::before { content: "\f51c"; } +.bi-speaker::before { content: "\f51d"; } +.bi-spellcheck::before { content: "\f51e"; } +.bi-square-fill::before { content: "\f51f"; } +.bi-square-half::before { content: "\f520"; } +.bi-square::before { content: "\f521"; } +.bi-star-fill::before { content: "\f522"; } +.bi-star-half::before { content: "\f523"; } +.bi-star::before { content: "\f524"; } +.bi-stickies-fill::before { content: "\f525"; } +.bi-stickies::before { content: "\f526"; } +.bi-sticky-fill::before { content: "\f527"; } +.bi-sticky::before { content: "\f528"; } +.bi-stop-btn-fill::before { content: "\f529"; } +.bi-stop-btn::before { content: "\f52a"; } +.bi-stop-circle-fill::before { content: "\f52b"; } +.bi-stop-circle::before { content: "\f52c"; } +.bi-stop-fill::before { content: "\f52d"; } +.bi-stop::before { content: "\f52e"; } +.bi-stoplights-fill::before { content: "\f52f"; } +.bi-stoplights::before { content: "\f530"; } +.bi-stopwatch-fill::before { content: "\f531"; } +.bi-stopwatch::before { content: "\f532"; } +.bi-subtract::before { content: "\f533"; } +.bi-suit-club-fill::before { content: "\f534"; } +.bi-suit-club::before { content: "\f535"; } +.bi-suit-diamond-fill::before { content: "\f536"; } +.bi-suit-diamond::before { content: "\f537"; } +.bi-suit-heart-fill::before { content: "\f538"; } +.bi-suit-heart::before { content: "\f539"; } +.bi-suit-spade-fill::before { content: "\f53a"; } +.bi-suit-spade::before { content: "\f53b"; } +.bi-sun::before { content: "\f53c"; } +.bi-sunglasses::before { content: "\f53d"; } +.bi-table::before { content: "\f53e"; } +.bi-tablet-fill::before { content: "\f53f"; } +.bi-tablet-landscape-fill::before { content: "\f540"; } +.bi-tablet-landscape::before { content: "\f541"; } +.bi-tablet::before { content: "\f542"; } +.bi-tag-fill::before { content: "\f543"; } +.bi-tag::before { content: "\f544"; } +.bi-tags-fill::before { content: "\f545"; } +.bi-tags::before { content: "\f546"; } +.bi-telephone-fill::before { content: "\f547"; } +.bi-telephone-forward-fill::before { content: "\f548"; } +.bi-telephone-forward::before { content: "\f549"; } +.bi-telephone-inbound-fill::before { content: "\f54a"; } +.bi-telephone-inbound::before { content: "\f54b"; } +.bi-telephone-minus-fill::before { content: "\f54c"; } +.bi-telephone-minus::before { content: "\f54d"; } +.bi-telephone-outbound-fill::before { content: "\f54e"; } +.bi-telephone-outbound::before { content: "\f54f"; } +.bi-telephone-plus-fill::before { content: "\f550"; } +.bi-telephone-plus::before { content: "\f551"; } +.bi-telephone-x-fill::before { content: "\f552"; } +.bi-telephone-x::before { content: "\f553"; } +.bi-telephone::before { content: "\f554"; } +.bi-terminal-fill::before { content: "\f555"; } +.bi-terminal::before { content: "\f556"; } +.bi-text-center::before { content: "\f557"; } +.bi-text-indent-left::before { content: "\f558"; } +.bi-text-indent-right::before { content: "\f559"; } +.bi-text-left::before { content: "\f55a"; } +.bi-text-paragraph::before { content: "\f55b"; } +.bi-text-right::before { content: "\f55c"; } +.bi-textarea-resize::before { content: "\f55d"; } +.bi-textarea-t::before { content: "\f55e"; } +.bi-textarea::before { content: "\f55f"; } +.bi-thermometer-half::before { content: "\f560"; } +.bi-thermometer::before { content: "\f561"; } +.bi-three-dots-vertical::before { content: "\f562"; } +.bi-three-dots::before { content: "\f563"; } +.bi-toggle-off::before { content: "\f564"; } +.bi-toggle-on::before { content: "\f565"; } +.bi-toggle2-off::before { content: "\f566"; } +.bi-toggle2-on::before { content: "\f567"; } +.bi-toggles::before { content: "\f568"; } +.bi-toggles2::before { content: "\f569"; } +.bi-tools::before { content: "\f56a"; } +.bi-trash-fill::before { content: "\f56b"; } +.bi-trash::before { content: "\f56c"; } +.bi-trash2-fill::before { content: "\f56d"; } +.bi-trash2::before { content: "\f56e"; } +.bi-tree-fill::before { content: "\f56f"; } +.bi-tree::before { content: "\f570"; } +.bi-triangle-fill::before { content: "\f571"; } +.bi-triangle-half::before { content: "\f572"; } +.bi-triangle::before { content: "\f573"; } +.bi-trophy-fill::before { content: "\f574"; } +.bi-trophy::before { content: "\f575"; } +.bi-truck-flatbed::before { content: "\f576"; } +.bi-truck::before { content: "\f577"; } +.bi-tv-fill::before { content: "\f578"; } +.bi-tv::before { content: "\f579"; } +.bi-twitch::before { content: "\f57a"; } +.bi-twitter::before { content: "\f57b"; } +.bi-type-bold::before { content: "\f57c"; } +.bi-type-h1::before { content: "\f57d"; } +.bi-type-h2::before { content: "\f57e"; } +.bi-type-h3::before { content: "\f57f"; } +.bi-type-italic::before { content: "\f580"; } +.bi-type-strikethrough::before { content: "\f581"; } +.bi-type-underline::before { content: "\f582"; } +.bi-type::before { content: "\f583"; } +.bi-ui-checks-grid::before { content: "\f584"; } +.bi-ui-checks::before { content: "\f585"; } +.bi-ui-radios-grid::before { content: "\f586"; } +.bi-ui-radios::before { content: "\f587"; } +.bi-union::before { content: "\f588"; } +.bi-unlock-fill::before { content: "\f589"; } +.bi-unlock::before { content: "\f58a"; } +.bi-upc-scan::before { content: "\f58b"; } +.bi-upc::before { content: "\f58c"; } +.bi-upload::before { content: "\f58d"; } +.bi-vector-pen::before { content: "\f58e"; } +.bi-view-list::before { content: "\f58f"; } +.bi-view-stacked::before { content: "\f590"; } +.bi-vinyl-fill::before { content: "\f591"; } +.bi-vinyl::before { content: "\f592"; } +.bi-voicemail::before { content: "\f593"; } +.bi-volume-down-fill::before { content: "\f594"; } +.bi-volume-down::before { content: "\f595"; } +.bi-volume-mute-fill::before { content: "\f596"; } +.bi-volume-mute::before { content: "\f597"; } +.bi-volume-off-fill::before { content: "\f598"; } +.bi-volume-off::before { content: "\f599"; } +.bi-volume-up-fill::before { content: "\f59a"; } +.bi-volume-up::before { content: "\f59b"; } +.bi-vr::before { content: "\f59c"; } +.bi-wallet-fill::before { content: "\f59d"; } +.bi-wallet::before { content: "\f59e"; } +.bi-wallet2::before { content: "\f59f"; } +.bi-watch::before { content: "\f5a0"; } +.bi-wifi-1::before { content: "\f5a1"; } +.bi-wifi-2::before { content: "\f5a2"; } +.bi-wifi-off::before { content: "\f5a3"; } +.bi-wifi::before { content: "\f5a4"; } +.bi-window::before { content: "\f5a5"; } +.bi-wrench::before { content: "\f5a6"; } +.bi-x-circle-fill::before { content: "\f5a7"; } +.bi-x-circle::before { content: "\f5a8"; } +.bi-x-diamond-fill::before { content: "\f5a9"; } +.bi-x-diamond::before { content: "\f5aa"; } +.bi-x-octagon-fill::before { content: "\f5ab"; } +.bi-x-octagon::before { content: "\f5ac"; } +.bi-x-square-fill::before { content: "\f5ad"; } +.bi-x-square::before { content: "\f5ae"; } +.bi-x::before { content: "\f5af"; } +.bi-youtube::before { content: "\f5b0"; } +.bi-zoom-in::before { content: "\f5b1"; } +.bi-zoom-out::before { content: "\f5b2"; } diff --git a/public/icons/bootstrap-icons/fonts/bootstrap-icons.woff b/public/icons/bootstrap-icons/fonts/bootstrap-icons.woff new file mode 100644 index 0000000..3dc1cde Binary files /dev/null and b/public/icons/bootstrap-icons/fonts/bootstrap-icons.woff differ diff --git a/public/icons/bootstrap-icons/fonts/bootstrap-icons.woff2 b/public/icons/bootstrap-icons/fonts/bootstrap-icons.woff2 new file mode 100644 index 0000000..8f08da1 Binary files /dev/null and b/public/icons/bootstrap-icons/fonts/bootstrap-icons.woff2 differ diff --git a/public/icons/remix-icon/fonts/remixicon.eot b/public/icons/remix-icon/fonts/remixicon.eot new file mode 100644 index 0000000..40629af Binary files /dev/null and b/public/icons/remix-icon/fonts/remixicon.eot differ diff --git a/public/icons/remix-icon/fonts/remixicon.svg b/public/icons/remix-icon/fonts/remixicon.svg new file mode 100644 index 0000000..a348334 --- /dev/null +++ b/public/icons/remix-icon/fonts/remixicon.svg @@ -0,0 +1,6835 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/icons/remix-icon/fonts/remixicon.symbol.svg b/public/icons/remix-icon/fonts/remixicon.symbol.svg new file mode 100644 index 0000000..2522b6c --- /dev/null +++ b/public/icons/remix-icon/fonts/remixicon.symbol.svg @@ -0,0 +1,11356 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/public/icons/remix-icon/fonts/remixicon.ttf b/public/icons/remix-icon/fonts/remixicon.ttf new file mode 100644 index 0000000..c461f40 Binary files /dev/null and b/public/icons/remix-icon/fonts/remixicon.ttf differ diff --git a/public/icons/remix-icon/fonts/remixicon.woff b/public/icons/remix-icon/fonts/remixicon.woff new file mode 100644 index 0000000..62a756b Binary files /dev/null and b/public/icons/remix-icon/fonts/remixicon.woff differ diff --git a/public/icons/remix-icon/fonts/remixicon.woff2 b/public/icons/remix-icon/fonts/remixicon.woff2 new file mode 100644 index 0000000..89a0b99 Binary files /dev/null and b/public/icons/remix-icon/fonts/remixicon.woff2 differ diff --git a/public/icons/remix-icon/remixicon.css b/public/icons/remix-icon/remixicon.css new file mode 100644 index 0000000..6eb231e --- /dev/null +++ b/public/icons/remix-icon/remixicon.css @@ -0,0 +1,6899 @@ +/* +* Remix Icon v2.5.0 +* https://remixicon.com +* https://github.com/Remix-Design/RemixIcon +* +* Copyright RemixIcon.com +* Released under the Apache License Version 2.0 +* +* Date: 2020-05-23 +*/ +@font-face { + font-family: "remixicon"; + src: url("./fonts/remixicon.eot?t=1590207869815"); /* IE9*/ + src: url("./fonts/remixicon.eot?t=1590207869815#iefix") + format("embedded-opentype"), + /* IE6-IE8 */ url("./fonts/remixicon.woff2?t=1590207869815") + format("woff2"), + url("./fonts/remixicon.woff?t=1590207869815") format("woff"), + url("./fonts/remixicon.ttf?t=1590207869815") format("truetype"), + /* chrome, firefox, opera, Safari, Android, iOS 4.2+*/ + url("./fonts/remixicon.svg?t=1590207869815#remixicon") format("svg"); /* iOS 4.1- */ + font-display: swap; +} + +[class^="ri-"], +[class*=" ri-"] { + font-family: "remixicon" !important; + font-style: normal; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +.ri-lg { + font-size: 1.3333em; + line-height: 0.75em; + vertical-align: -0.0667em; +} +.ri-xl { + font-size: 1.5em; + line-height: 0.6666em; + vertical-align: -0.075em; +} +.ri-xxs { + font-size: 0.5em; +} +.ri-xs { + font-size: 0.75em; +} +.ri-sm { + font-size: 0.875em; +} +.ri-1x { + font-size: 1em; +} +.ri-2x { + font-size: 2em; +} +.ri-3x { + font-size: 3em; +} +.ri-4x { + font-size: 4em; +} +.ri-5x { + font-size: 5em; +} +.ri-6x { + font-size: 6em; +} +.ri-7x { + font-size: 7em; +} +.ri-8x { + font-size: 8em; +} +.ri-9x { + font-size: 9em; +} +.ri-10x { + font-size: 10em; +} +.ri-fw { + text-align: center; + width: 1.25em; +} + +.ri-24-hours-fill:before { + content: "\ea01"; +} +.ri-24-hours-line:before { + content: "\ea02"; +} +.ri-4k-fill:before { + content: "\ea03"; +} +.ri-4k-line:before { + content: "\ea04"; +} +.ri-a-b:before { + content: "\ea05"; +} +.ri-account-box-fill:before { + content: "\ea06"; +} +.ri-account-box-line:before { + content: "\ea07"; +} +.ri-account-circle-fill:before { + content: "\ea08"; +} +.ri-account-circle-line:before { + content: "\ea09"; +} +.ri-account-pin-box-fill:before { + content: "\ea0a"; +} +.ri-account-pin-box-line:before { + content: "\ea0b"; +} +.ri-account-pin-circle-fill:before { + content: "\ea0c"; +} +.ri-account-pin-circle-line:before { + content: "\ea0d"; +} +.ri-add-box-fill:before { + content: "\ea0e"; +} +.ri-add-box-line:before { + content: "\ea0f"; +} +.ri-add-circle-fill:before { + content: "\ea10"; +} +.ri-add-circle-line:before { + content: "\ea11"; +} +.ri-add-fill:before { + content: "\ea12"; +} +.ri-add-line:before { + content: "\ea13"; +} +.ri-admin-fill:before { + content: "\ea14"; +} +.ri-admin-line:before { + content: "\ea15"; +} +.ri-advertisement-fill:before { + content: "\ea16"; +} +.ri-advertisement-line:before { + content: "\ea17"; +} +.ri-airplay-fill:before { + content: "\ea18"; +} +.ri-airplay-line:before { + content: "\ea19"; +} +.ri-alarm-fill:before { + content: "\ea1a"; +} +.ri-alarm-line:before { + content: "\ea1b"; +} +.ri-alarm-warning-fill:before { + content: "\ea1c"; +} +.ri-alarm-warning-line:before { + content: "\ea1d"; +} +.ri-album-fill:before { + content: "\ea1e"; +} +.ri-album-line:before { + content: "\ea1f"; +} +.ri-alert-fill:before { + content: "\ea20"; +} +.ri-alert-line:before { + content: "\ea21"; +} +.ri-aliens-fill:before { + content: "\ea22"; +} +.ri-aliens-line:before { + content: "\ea23"; +} +.ri-align-bottom:before { + content: "\ea24"; +} +.ri-align-center:before { + content: "\ea25"; +} +.ri-align-justify:before { + content: "\ea26"; +} +.ri-align-left:before { + content: "\ea27"; +} +.ri-align-right:before { + content: "\ea28"; +} +.ri-align-top:before { + content: "\ea29"; +} +.ri-align-vertically:before { + content: "\ea2a"; +} +.ri-alipay-fill:before { + content: "\ea2b"; +} +.ri-alipay-line:before { + content: "\ea2c"; +} +.ri-amazon-fill:before { + content: "\ea2d"; +} +.ri-amazon-line:before { + content: "\ea2e"; +} +.ri-anchor-fill:before { + content: "\ea2f"; +} +.ri-anchor-line:before { + content: "\ea30"; +} +.ri-ancient-gate-fill:before { + content: "\ea31"; +} +.ri-ancient-gate-line:before { + content: "\ea32"; +} +.ri-ancient-pavilion-fill:before { + content: "\ea33"; +} +.ri-ancient-pavilion-line:before { + content: "\ea34"; +} +.ri-android-fill:before { + content: "\ea35"; +} +.ri-android-line:before { + content: "\ea36"; +} +.ri-angularjs-fill:before { + content: "\ea37"; +} +.ri-angularjs-line:before { + content: "\ea38"; +} +.ri-anticlockwise-2-fill:before { + content: "\ea39"; +} +.ri-anticlockwise-2-line:before { + content: "\ea3a"; +} +.ri-anticlockwise-fill:before { + content: "\ea3b"; +} +.ri-anticlockwise-line:before { + content: "\ea3c"; +} +.ri-app-store-fill:before { + content: "\ea3d"; +} +.ri-app-store-line:before { + content: "\ea3e"; +} +.ri-apple-fill:before { + content: "\ea3f"; +} +.ri-apple-line:before { + content: "\ea40"; +} +.ri-apps-2-fill:before { + content: "\ea41"; +} +.ri-apps-2-line:before { + content: "\ea42"; +} +.ri-apps-fill:before { + content: "\ea43"; +} +.ri-apps-line:before { + content: "\ea44"; +} +.ri-archive-drawer-fill:before { + content: "\ea45"; +} +.ri-archive-drawer-line:before { + content: "\ea46"; +} +.ri-archive-fill:before { + content: "\ea47"; +} +.ri-archive-line:before { + content: "\ea48"; +} +.ri-arrow-down-circle-fill:before { + content: "\ea49"; +} +.ri-arrow-down-circle-line:before { + content: "\ea4a"; +} +.ri-arrow-down-fill:before { + content: "\ea4b"; +} +.ri-arrow-down-line:before { + content: "\ea4c"; +} +.ri-arrow-down-s-fill:before { + content: "\ea4d"; +} +.ri-arrow-down-s-line:before { + content: "\ea4e"; +} +.ri-arrow-drop-down-fill:before { + content: "\ea4f"; +} +.ri-arrow-drop-down-line:before { + content: "\ea50"; +} +.ri-arrow-drop-left-fill:before { + content: "\ea51"; +} +.ri-arrow-drop-left-line:before { + content: "\ea52"; +} +.ri-arrow-drop-right-fill:before { + content: "\ea53"; +} +.ri-arrow-drop-right-line:before { + content: "\ea54"; +} +.ri-arrow-drop-up-fill:before { + content: "\ea55"; +} +.ri-arrow-drop-up-line:before { + content: "\ea56"; +} +.ri-arrow-go-back-fill:before { + content: "\ea57"; +} +.ri-arrow-go-back-line:before { + content: "\ea58"; +} +.ri-arrow-go-forward-fill:before { + content: "\ea59"; +} +.ri-arrow-go-forward-line:before { + content: "\ea5a"; +} +.ri-arrow-left-circle-fill:before { + content: "\ea5b"; +} +.ri-arrow-left-circle-line:before { + content: "\ea5c"; +} +.ri-arrow-left-down-fill:before { + content: "\ea5d"; +} +.ri-arrow-left-down-line:before { + content: "\ea5e"; +} +.ri-arrow-left-fill:before { + content: "\ea5f"; +} +.ri-arrow-left-line:before { + content: "\ea60"; +} +.ri-arrow-left-right-fill:before { + content: "\ea61"; +} +.ri-arrow-left-right-line:before { + content: "\ea62"; +} +.ri-arrow-left-s-fill:before { + content: "\ea63"; +} +.ri-arrow-left-s-line:before { + content: "\ea64"; +} +.ri-arrow-left-up-fill:before { + content: "\ea65"; +} +.ri-arrow-left-up-line:before { + content: "\ea66"; +} +.ri-arrow-right-circle-fill:before { + content: "\ea67"; +} +.ri-arrow-right-circle-line:before { + content: "\ea68"; +} +.ri-arrow-right-down-fill:before { + content: "\ea69"; +} +.ri-arrow-right-down-line:before { + content: "\ea6a"; +} +.ri-arrow-right-fill:before { + content: "\ea6b"; +} +.ri-arrow-right-line:before { + content: "\ea6c"; +} +.ri-arrow-right-s-fill:before { + content: "\ea6d"; +} +.ri-arrow-right-s-line:before { + content: "\ea6e"; +} +.ri-arrow-right-up-fill:before { + content: "\ea6f"; +} +.ri-arrow-right-up-line:before { + content: "\ea70"; +} +.ri-arrow-up-circle-fill:before { + content: "\ea71"; +} +.ri-arrow-up-circle-line:before { + content: "\ea72"; +} +.ri-arrow-up-down-fill:before { + content: "\ea73"; +} +.ri-arrow-up-down-line:before { + content: "\ea74"; +} +.ri-arrow-up-fill:before { + content: "\ea75"; +} +.ri-arrow-up-line:before { + content: "\ea76"; +} +.ri-arrow-up-s-fill:before { + content: "\ea77"; +} +.ri-arrow-up-s-line:before { + content: "\ea78"; +} +.ri-artboard-2-fill:before { + content: "\ea79"; +} +.ri-artboard-2-line:before { + content: "\ea7a"; +} +.ri-artboard-fill:before { + content: "\ea7b"; +} +.ri-artboard-line:before { + content: "\ea7c"; +} +.ri-article-fill:before { + content: "\ea7d"; +} +.ri-article-line:before { + content: "\ea7e"; +} +.ri-aspect-ratio-fill:before { + content: "\ea7f"; +} +.ri-aspect-ratio-line:before { + content: "\ea80"; +} +.ri-asterisk:before { + content: "\ea81"; +} +.ri-at-fill:before { + content: "\ea82"; +} +.ri-at-line:before { + content: "\ea83"; +} +.ri-attachment-2:before { + content: "\ea84"; +} +.ri-attachment-fill:before { + content: "\ea85"; +} +.ri-attachment-line:before { + content: "\ea86"; +} +.ri-auction-fill:before { + content: "\ea87"; +} +.ri-auction-line:before { + content: "\ea88"; +} +.ri-award-fill:before { + content: "\ea89"; +} +.ri-award-line:before { + content: "\ea8a"; +} +.ri-baidu-fill:before { + content: "\ea8b"; +} +.ri-baidu-line:before { + content: "\ea8c"; +} +.ri-ball-pen-fill:before { + content: "\ea8d"; +} +.ri-ball-pen-line:before { + content: "\ea8e"; +} +.ri-bank-card-2-fill:before { + content: "\ea8f"; +} +.ri-bank-card-2-line:before { + content: "\ea90"; +} +.ri-bank-card-fill:before { + content: "\ea91"; +} +.ri-bank-card-line:before { + content: "\ea92"; +} +.ri-bank-fill:before { + content: "\ea93"; +} +.ri-bank-line:before { + content: "\ea94"; +} +.ri-bar-chart-2-fill:before { + content: "\ea95"; +} +.ri-bar-chart-2-line:before { + content: "\ea96"; +} +.ri-bar-chart-box-fill:before { + content: "\ea97"; +} +.ri-bar-chart-box-line:before { + content: "\ea98"; +} +.ri-bar-chart-fill:before { + content: "\ea99"; +} +.ri-bar-chart-grouped-fill:before { + content: "\ea9a"; +} +.ri-bar-chart-grouped-line:before { + content: "\ea9b"; +} +.ri-bar-chart-horizontal-fill:before { + content: "\ea9c"; +} +.ri-bar-chart-horizontal-line:before { + content: "\ea9d"; +} +.ri-bar-chart-line:before { + content: "\ea9e"; +} +.ri-barcode-box-fill:before { + content: "\ea9f"; +} +.ri-barcode-box-line:before { + content: "\eaa0"; +} +.ri-barcode-fill:before { + content: "\eaa1"; +} +.ri-barcode-line:before { + content: "\eaa2"; +} +.ri-barricade-fill:before { + content: "\eaa3"; +} +.ri-barricade-line:before { + content: "\eaa4"; +} +.ri-base-station-fill:before { + content: "\eaa5"; +} +.ri-base-station-line:before { + content: "\eaa6"; +} +.ri-basketball-fill:before { + content: "\eaa7"; +} +.ri-basketball-line:before { + content: "\eaa8"; +} +.ri-battery-2-charge-fill:before { + content: "\eaa9"; +} +.ri-battery-2-charge-line:before { + content: "\eaaa"; +} +.ri-battery-2-fill:before { + content: "\eaab"; +} +.ri-battery-2-line:before { + content: "\eaac"; +} +.ri-battery-charge-fill:before { + content: "\eaad"; +} +.ri-battery-charge-line:before { + content: "\eaae"; +} +.ri-battery-fill:before { + content: "\eaaf"; +} +.ri-battery-line:before { + content: "\eab0"; +} +.ri-battery-low-fill:before { + content: "\eab1"; +} +.ri-battery-low-line:before { + content: "\eab2"; +} +.ri-battery-saver-fill:before { + content: "\eab3"; +} +.ri-battery-saver-line:before { + content: "\eab4"; +} +.ri-battery-share-fill:before { + content: "\eab5"; +} +.ri-battery-share-line:before { + content: "\eab6"; +} +.ri-bear-smile-fill:before { + content: "\eab7"; +} +.ri-bear-smile-line:before { + content: "\eab8"; +} +.ri-behance-fill:before { + content: "\eab9"; +} +.ri-behance-line:before { + content: "\eaba"; +} +.ri-bell-fill:before { + content: "\eabb"; +} +.ri-bell-line:before { + content: "\eabc"; +} +.ri-bike-fill:before { + content: "\eabd"; +} +.ri-bike-line:before { + content: "\eabe"; +} +.ri-bilibili-fill:before { + content: "\eabf"; +} +.ri-bilibili-line:before { + content: "\eac0"; +} +.ri-bill-fill:before { + content: "\eac1"; +} +.ri-bill-line:before { + content: "\eac2"; +} +.ri-billiards-fill:before { + content: "\eac3"; +} +.ri-billiards-line:before { + content: "\eac4"; +} +.ri-bit-coin-fill:before { + content: "\eac5"; +} +.ri-bit-coin-line:before { + content: "\eac6"; +} +.ri-blaze-fill:before { + content: "\eac7"; +} +.ri-blaze-line:before { + content: "\eac8"; +} +.ri-bluetooth-connect-fill:before { + content: "\eac9"; +} +.ri-bluetooth-connect-line:before { + content: "\eaca"; +} +.ri-bluetooth-fill:before { + content: "\eacb"; +} +.ri-bluetooth-line:before { + content: "\eacc"; +} +.ri-blur-off-fill:before { + content: "\eacd"; +} +.ri-blur-off-line:before { + content: "\eace"; +} +.ri-body-scan-fill:before { + content: "\eacf"; +} +.ri-body-scan-line:before { + content: "\ead0"; +} +.ri-bold:before { + content: "\ead1"; +} +.ri-book-2-fill:before { + content: "\ead2"; +} +.ri-book-2-line:before { + content: "\ead3"; +} +.ri-book-3-fill:before { + content: "\ead4"; +} +.ri-book-3-line:before { + content: "\ead5"; +} +.ri-book-fill:before { + content: "\ead6"; +} +.ri-book-line:before { + content: "\ead7"; +} +.ri-book-mark-fill:before { + content: "\ead8"; +} +.ri-book-mark-line:before { + content: "\ead9"; +} +.ri-book-open-fill:before { + content: "\eada"; +} +.ri-book-open-line:before { + content: "\eadb"; +} +.ri-book-read-fill:before { + content: "\eadc"; +} +.ri-book-read-line:before { + content: "\eadd"; +} +.ri-booklet-fill:before { + content: "\eade"; +} +.ri-booklet-line:before { + content: "\eadf"; +} +.ri-bookmark-2-fill:before { + content: "\eae0"; +} +.ri-bookmark-2-line:before { + content: "\eae1"; +} +.ri-bookmark-3-fill:before { + content: "\eae2"; +} +.ri-bookmark-3-line:before { + content: "\eae3"; +} +.ri-bookmark-fill:before { + content: "\eae4"; +} +.ri-bookmark-line:before { + content: "\eae5"; +} +.ri-boxing-fill:before { + content: "\eae6"; +} +.ri-boxing-line:before { + content: "\eae7"; +} +.ri-braces-fill:before { + content: "\eae8"; +} +.ri-braces-line:before { + content: "\eae9"; +} +.ri-brackets-fill:before { + content: "\eaea"; +} +.ri-brackets-line:before { + content: "\eaeb"; +} +.ri-briefcase-2-fill:before { + content: "\eaec"; +} +.ri-briefcase-2-line:before { + content: "\eaed"; +} +.ri-briefcase-3-fill:before { + content: "\eaee"; +} +.ri-briefcase-3-line:before { + content: "\eaef"; +} +.ri-briefcase-4-fill:before { + content: "\eaf0"; +} +.ri-briefcase-4-line:before { + content: "\eaf1"; +} +.ri-briefcase-5-fill:before { + content: "\eaf2"; +} +.ri-briefcase-5-line:before { + content: "\eaf3"; +} +.ri-briefcase-fill:before { + content: "\eaf4"; +} +.ri-briefcase-line:before { + content: "\eaf5"; +} +.ri-bring-forward:before { + content: "\eaf6"; +} +.ri-bring-to-front:before { + content: "\eaf7"; +} +.ri-broadcast-fill:before { + content: "\eaf8"; +} +.ri-broadcast-line:before { + content: "\eaf9"; +} +.ri-brush-2-fill:before { + content: "\eafa"; +} +.ri-brush-2-line:before { + content: "\eafb"; +} +.ri-brush-3-fill:before { + content: "\eafc"; +} +.ri-brush-3-line:before { + content: "\eafd"; +} +.ri-brush-4-fill:before { + content: "\eafe"; +} +.ri-brush-4-line:before { + content: "\eaff"; +} +.ri-brush-fill:before { + content: "\eb00"; +} +.ri-brush-line:before { + content: "\eb01"; +} +.ri-bubble-chart-fill:before { + content: "\eb02"; +} +.ri-bubble-chart-line:before { + content: "\eb03"; +} +.ri-bug-2-fill:before { + content: "\eb04"; +} +.ri-bug-2-line:before { + content: "\eb05"; +} +.ri-bug-fill:before { + content: "\eb06"; +} +.ri-bug-line:before { + content: "\eb07"; +} +.ri-building-2-fill:before { + content: "\eb08"; +} +.ri-building-2-line:before { + content: "\eb09"; +} +.ri-building-3-fill:before { + content: "\eb0a"; +} +.ri-building-3-line:before { + content: "\eb0b"; +} +.ri-building-4-fill:before { + content: "\eb0c"; +} +.ri-building-4-line:before { + content: "\eb0d"; +} +.ri-building-fill:before { + content: "\eb0e"; +} +.ri-building-line:before { + content: "\eb0f"; +} +.ri-bus-2-fill:before { + content: "\eb10"; +} +.ri-bus-2-line:before { + content: "\eb11"; +} +.ri-bus-fill:before { + content: "\eb12"; +} +.ri-bus-line:before { + content: "\eb13"; +} +.ri-bus-wifi-fill:before { + content: "\eb14"; +} +.ri-bus-wifi-line:before { + content: "\eb15"; +} +.ri-cactus-fill:before { + content: "\eb16"; +} +.ri-cactus-line:before { + content: "\eb17"; +} +.ri-cake-2-fill:before { + content: "\eb18"; +} +.ri-cake-2-line:before { + content: "\eb19"; +} +.ri-cake-3-fill:before { + content: "\eb1a"; +} +.ri-cake-3-line:before { + content: "\eb1b"; +} +.ri-cake-fill:before { + content: "\eb1c"; +} +.ri-cake-line:before { + content: "\eb1d"; +} +.ri-calculator-fill:before { + content: "\eb1e"; +} +.ri-calculator-line:before { + content: "\eb1f"; +} +.ri-calendar-2-fill:before { + content: "\eb20"; +} +.ri-calendar-2-line:before { + content: "\eb21"; +} +.ri-calendar-check-fill:before { + content: "\eb22"; +} +.ri-calendar-check-line:before { + content: "\eb23"; +} +.ri-calendar-event-fill:before { + content: "\eb24"; +} +.ri-calendar-event-line:before { + content: "\eb25"; +} +.ri-calendar-fill:before { + content: "\eb26"; +} +.ri-calendar-line:before { + content: "\eb27"; +} +.ri-calendar-todo-fill:before { + content: "\eb28"; +} +.ri-calendar-todo-line:before { + content: "\eb29"; +} +.ri-camera-2-fill:before { + content: "\eb2a"; +} +.ri-camera-2-line:before { + content: "\eb2b"; +} +.ri-camera-3-fill:before { + content: "\eb2c"; +} +.ri-camera-3-line:before { + content: "\eb2d"; +} +.ri-camera-fill:before { + content: "\eb2e"; +} +.ri-camera-lens-fill:before { + content: "\eb2f"; +} +.ri-camera-lens-line:before { + content: "\eb30"; +} +.ri-camera-line:before { + content: "\eb31"; +} +.ri-camera-off-fill:before { + content: "\eb32"; +} +.ri-camera-off-line:before { + content: "\eb33"; +} +.ri-camera-switch-fill:before { + content: "\eb34"; +} +.ri-camera-switch-line:before { + content: "\eb35"; +} +.ri-capsule-fill:before { + content: "\eb36"; +} +.ri-capsule-line:before { + content: "\eb37"; +} +.ri-car-fill:before { + content: "\eb38"; +} +.ri-car-line:before { + content: "\eb39"; +} +.ri-car-washing-fill:before { + content: "\eb3a"; +} +.ri-car-washing-line:before { + content: "\eb3b"; +} +.ri-caravan-fill:before { + content: "\eb3c"; +} +.ri-caravan-line:before { + content: "\eb3d"; +} +.ri-cast-fill:before { + content: "\eb3e"; +} +.ri-cast-line:before { + content: "\eb3f"; +} +.ri-cellphone-fill:before { + content: "\eb40"; +} +.ri-cellphone-line:before { + content: "\eb41"; +} +.ri-celsius-fill:before { + content: "\eb42"; +} +.ri-celsius-line:before { + content: "\eb43"; +} +.ri-centos-fill:before { + content: "\eb44"; +} +.ri-centos-line:before { + content: "\eb45"; +} +.ri-character-recognition-fill:before { + content: "\eb46"; +} +.ri-character-recognition-line:before { + content: "\eb47"; +} +.ri-charging-pile-2-fill:before { + content: "\eb48"; +} +.ri-charging-pile-2-line:before { + content: "\eb49"; +} +.ri-charging-pile-fill:before { + content: "\eb4a"; +} +.ri-charging-pile-line:before { + content: "\eb4b"; +} +.ri-chat-1-fill:before { + content: "\eb4c"; +} +.ri-chat-1-line:before { + content: "\eb4d"; +} +.ri-chat-2-fill:before { + content: "\eb4e"; +} +.ri-chat-2-line:before { + content: "\eb4f"; +} +.ri-chat-3-fill:before { + content: "\eb50"; +} +.ri-chat-3-line:before { + content: "\eb51"; +} +.ri-chat-4-fill:before { + content: "\eb52"; +} +.ri-chat-4-line:before { + content: "\eb53"; +} +.ri-chat-check-fill:before { + content: "\eb54"; +} +.ri-chat-check-line:before { + content: "\eb55"; +} +.ri-chat-delete-fill:before { + content: "\eb56"; +} +.ri-chat-delete-line:before { + content: "\eb57"; +} +.ri-chat-download-fill:before { + content: "\eb58"; +} +.ri-chat-download-line:before { + content: "\eb59"; +} +.ri-chat-follow-up-fill:before { + content: "\eb5a"; +} +.ri-chat-follow-up-line:before { + content: "\eb5b"; +} +.ri-chat-forward-fill:before { + content: "\eb5c"; +} +.ri-chat-forward-line:before { + content: "\eb5d"; +} +.ri-chat-heart-fill:before { + content: "\eb5e"; +} +.ri-chat-heart-line:before { + content: "\eb5f"; +} +.ri-chat-history-fill:before { + content: "\eb60"; +} +.ri-chat-history-line:before { + content: "\eb61"; +} +.ri-chat-new-fill:before { + content: "\eb62"; +} +.ri-chat-new-line:before { + content: "\eb63"; +} +.ri-chat-off-fill:before { + content: "\eb64"; +} +.ri-chat-off-line:before { + content: "\eb65"; +} +.ri-chat-poll-fill:before { + content: "\eb66"; +} +.ri-chat-poll-line:before { + content: "\eb67"; +} +.ri-chat-private-fill:before { + content: "\eb68"; +} +.ri-chat-private-line:before { + content: "\eb69"; +} +.ri-chat-quote-fill:before { + content: "\eb6a"; +} +.ri-chat-quote-line:before { + content: "\eb6b"; +} +.ri-chat-settings-fill:before { + content: "\eb6c"; +} +.ri-chat-settings-line:before { + content: "\eb6d"; +} +.ri-chat-smile-2-fill:before { + content: "\eb6e"; +} +.ri-chat-smile-2-line:before { + content: "\eb6f"; +} +.ri-chat-smile-3-fill:before { + content: "\eb70"; +} +.ri-chat-smile-3-line:before { + content: "\eb71"; +} +.ri-chat-smile-fill:before { + content: "\eb72"; +} +.ri-chat-smile-line:before { + content: "\eb73"; +} +.ri-chat-upload-fill:before { + content: "\eb74"; +} +.ri-chat-upload-line:before { + content: "\eb75"; +} +.ri-chat-voice-fill:before { + content: "\eb76"; +} +.ri-chat-voice-line:before { + content: "\eb77"; +} +.ri-check-double-fill:before { + content: "\eb78"; +} +.ri-check-double-line:before { + content: "\eb79"; +} +.ri-check-fill:before { + content: "\eb7a"; +} +.ri-check-line:before { + content: "\eb7b"; +} +.ri-checkbox-blank-circle-fill:before { + content: "\eb7c"; +} +.ri-checkbox-blank-circle-line:before { + content: "\eb7d"; +} +.ri-checkbox-blank-fill:before { + content: "\eb7e"; +} +.ri-checkbox-blank-line:before { + content: "\eb7f"; +} +.ri-checkbox-circle-fill:before { + content: "\eb80"; +} +.ri-checkbox-circle-line:before { + content: "\eb81"; +} +.ri-checkbox-fill:before { + content: "\eb82"; +} +.ri-checkbox-indeterminate-fill:before { + content: "\eb83"; +} +.ri-checkbox-indeterminate-line:before { + content: "\eb84"; +} +.ri-checkbox-line:before { + content: "\eb85"; +} +.ri-checkbox-multiple-blank-fill:before { + content: "\eb86"; +} +.ri-checkbox-multiple-blank-line:before { + content: "\eb87"; +} +.ri-checkbox-multiple-fill:before { + content: "\eb88"; +} +.ri-checkbox-multiple-line:before { + content: "\eb89"; +} +.ri-china-railway-fill:before { + content: "\eb8a"; +} +.ri-china-railway-line:before { + content: "\eb8b"; +} +.ri-chrome-fill:before { + content: "\eb8c"; +} +.ri-chrome-line:before { + content: "\eb8d"; +} +.ri-clapperboard-fill:before { + content: "\eb8e"; +} +.ri-clapperboard-line:before { + content: "\eb8f"; +} +.ri-clipboard-fill:before { + content: "\eb90"; +} +.ri-clipboard-line:before { + content: "\eb91"; +} +.ri-clockwise-2-fill:before { + content: "\eb92"; +} +.ri-clockwise-2-line:before { + content: "\eb93"; +} +.ri-clockwise-fill:before { + content: "\eb94"; +} +.ri-clockwise-line:before { + content: "\eb95"; +} +.ri-close-circle-fill:before { + content: "\eb96"; +} +.ri-close-circle-line:before { + content: "\eb97"; +} +.ri-close-fill:before { + content: "\eb98"; +} +.ri-close-line:before { + content: "\eb99"; +} +.ri-closed-captioning-fill:before { + content: "\eb9a"; +} +.ri-closed-captioning-line:before { + content: "\eb9b"; +} +.ri-cloud-fill:before { + content: "\eb9c"; +} +.ri-cloud-line:before { + content: "\eb9d"; +} +.ri-cloud-off-fill:before { + content: "\eb9e"; +} +.ri-cloud-off-line:before { + content: "\eb9f"; +} +.ri-cloud-windy-fill:before { + content: "\eba0"; +} +.ri-cloud-windy-line:before { + content: "\eba1"; +} +.ri-cloudy-2-fill:before { + content: "\eba2"; +} +.ri-cloudy-2-line:before { + content: "\eba3"; +} +.ri-cloudy-fill:before { + content: "\eba4"; +} +.ri-cloudy-line:before { + content: "\eba5"; +} +.ri-code-box-fill:before { + content: "\eba6"; +} +.ri-code-box-line:before { + content: "\eba7"; +} +.ri-code-fill:before { + content: "\eba8"; +} +.ri-code-line:before { + content: "\eba9"; +} +.ri-code-s-fill:before { + content: "\ebaa"; +} +.ri-code-s-line:before { + content: "\ebab"; +} +.ri-code-s-slash-fill:before { + content: "\ebac"; +} +.ri-code-s-slash-line:before { + content: "\ebad"; +} +.ri-code-view:before { + content: "\ebae"; +} +.ri-codepen-fill:before { + content: "\ebaf"; +} +.ri-codepen-line:before { + content: "\ebb0"; +} +.ri-coin-fill:before { + content: "\ebb1"; +} +.ri-coin-line:before { + content: "\ebb2"; +} +.ri-coins-fill:before { + content: "\ebb3"; +} +.ri-coins-line:before { + content: "\ebb4"; +} +.ri-collage-fill:before { + content: "\ebb5"; +} +.ri-collage-line:before { + content: "\ebb6"; +} +.ri-command-fill:before { + content: "\ebb7"; +} +.ri-command-line:before { + content: "\ebb8"; +} +.ri-community-fill:before { + content: "\ebb9"; +} +.ri-community-line:before { + content: "\ebba"; +} +.ri-compass-2-fill:before { + content: "\ebbb"; +} +.ri-compass-2-line:before { + content: "\ebbc"; +} +.ri-compass-3-fill:before { + content: "\ebbd"; +} +.ri-compass-3-line:before { + content: "\ebbe"; +} +.ri-compass-4-fill:before { + content: "\ebbf"; +} +.ri-compass-4-line:before { + content: "\ebc0"; +} +.ri-compass-discover-fill:before { + content: "\ebc1"; +} +.ri-compass-discover-line:before { + content: "\ebc2"; +} +.ri-compass-fill:before { + content: "\ebc3"; +} +.ri-compass-line:before { + content: "\ebc4"; +} +.ri-compasses-2-fill:before { + content: "\ebc5"; +} +.ri-compasses-2-line:before { + content: "\ebc6"; +} +.ri-compasses-fill:before { + content: "\ebc7"; +} +.ri-compasses-line:before { + content: "\ebc8"; +} +.ri-computer-fill:before { + content: "\ebc9"; +} +.ri-computer-line:before { + content: "\ebca"; +} +.ri-contacts-book-2-fill:before { + content: "\ebcb"; +} +.ri-contacts-book-2-line:before { + content: "\ebcc"; +} +.ri-contacts-book-fill:before { + content: "\ebcd"; +} +.ri-contacts-book-line:before { + content: "\ebce"; +} +.ri-contacts-book-upload-fill:before { + content: "\ebcf"; +} +.ri-contacts-book-upload-line:before { + content: "\ebd0"; +} +.ri-contacts-fill:before { + content: "\ebd1"; +} +.ri-contacts-line:before { + content: "\ebd2"; +} +.ri-contrast-2-fill:before { + content: "\ebd3"; +} +.ri-contrast-2-line:before { + content: "\ebd4"; +} +.ri-contrast-drop-2-fill:before { + content: "\ebd5"; +} +.ri-contrast-drop-2-line:before { + content: "\ebd6"; +} +.ri-contrast-drop-fill:before { + content: "\ebd7"; +} +.ri-contrast-drop-line:before { + content: "\ebd8"; +} +.ri-contrast-fill:before { + content: "\ebd9"; +} +.ri-contrast-line:before { + content: "\ebda"; +} +.ri-copper-coin-fill:before { + content: "\ebdb"; +} +.ri-copper-coin-line:before { + content: "\ebdc"; +} +.ri-copper-diamond-fill:before { + content: "\ebdd"; +} +.ri-copper-diamond-line:before { + content: "\ebde"; +} +.ri-copyleft-fill:before { + content: "\ebdf"; +} +.ri-copyleft-line:before { + content: "\ebe0"; +} +.ri-copyright-fill:before { + content: "\ebe1"; +} +.ri-copyright-line:before { + content: "\ebe2"; +} +.ri-coreos-fill:before { + content: "\ebe3"; +} +.ri-coreos-line:before { + content: "\ebe4"; +} +.ri-coupon-2-fill:before { + content: "\ebe5"; +} +.ri-coupon-2-line:before { + content: "\ebe6"; +} +.ri-coupon-3-fill:before { + content: "\ebe7"; +} +.ri-coupon-3-line:before { + content: "\ebe8"; +} +.ri-coupon-4-fill:before { + content: "\ebe9"; +} +.ri-coupon-4-line:before { + content: "\ebea"; +} +.ri-coupon-5-fill:before { + content: "\ebeb"; +} +.ri-coupon-5-line:before { + content: "\ebec"; +} +.ri-coupon-fill:before { + content: "\ebed"; +} +.ri-coupon-line:before { + content: "\ebee"; +} +.ri-cpu-fill:before { + content: "\ebef"; +} +.ri-cpu-line:before { + content: "\ebf0"; +} +.ri-creative-commons-by-fill:before { + content: "\ebf1"; +} +.ri-creative-commons-by-line:before { + content: "\ebf2"; +} +.ri-creative-commons-fill:before { + content: "\ebf3"; +} +.ri-creative-commons-line:before { + content: "\ebf4"; +} +.ri-creative-commons-nc-fill:before { + content: "\ebf5"; +} +.ri-creative-commons-nc-line:before { + content: "\ebf6"; +} +.ri-creative-commons-nd-fill:before { + content: "\ebf7"; +} +.ri-creative-commons-nd-line:before { + content: "\ebf8"; +} +.ri-creative-commons-sa-fill:before { + content: "\ebf9"; +} +.ri-creative-commons-sa-line:before { + content: "\ebfa"; +} +.ri-creative-commons-zero-fill:before { + content: "\ebfb"; +} +.ri-creative-commons-zero-line:before { + content: "\ebfc"; +} +.ri-criminal-fill:before { + content: "\ebfd"; +} +.ri-criminal-line:before { + content: "\ebfe"; +} +.ri-crop-2-fill:before { + content: "\ebff"; +} +.ri-crop-2-line:before { + content: "\ec00"; +} +.ri-crop-fill:before { + content: "\ec01"; +} +.ri-crop-line:before { + content: "\ec02"; +} +.ri-css3-fill:before { + content: "\ec03"; +} +.ri-css3-line:before { + content: "\ec04"; +} +.ri-cup-fill:before { + content: "\ec05"; +} +.ri-cup-line:before { + content: "\ec06"; +} +.ri-currency-fill:before { + content: "\ec07"; +} +.ri-currency-line:before { + content: "\ec08"; +} +.ri-cursor-fill:before { + content: "\ec09"; +} +.ri-cursor-line:before { + content: "\ec0a"; +} +.ri-customer-service-2-fill:before { + content: "\ec0b"; +} +.ri-customer-service-2-line:before { + content: "\ec0c"; +} +.ri-customer-service-fill:before { + content: "\ec0d"; +} +.ri-customer-service-line:before { + content: "\ec0e"; +} +.ri-dashboard-2-fill:before { + content: "\ec0f"; +} +.ri-dashboard-2-line:before { + content: "\ec10"; +} +.ri-dashboard-3-fill:before { + content: "\ec11"; +} +.ri-dashboard-3-line:before { + content: "\ec12"; +} +.ri-dashboard-fill:before { + content: "\ec13"; +} +.ri-dashboard-line:before { + content: "\ec14"; +} +.ri-database-2-fill:before { + content: "\ec15"; +} +.ri-database-2-line:before { + content: "\ec16"; +} +.ri-database-fill:before { + content: "\ec17"; +} +.ri-database-line:before { + content: "\ec18"; +} +.ri-delete-back-2-fill:before { + content: "\ec19"; +} +.ri-delete-back-2-line:before { + content: "\ec1a"; +} +.ri-delete-back-fill:before { + content: "\ec1b"; +} +.ri-delete-back-line:before { + content: "\ec1c"; +} +.ri-delete-bin-2-fill:before { + content: "\ec1d"; +} +.ri-delete-bin-2-line:before { + content: "\ec1e"; +} +.ri-delete-bin-3-fill:before { + content: "\ec1f"; +} +.ri-delete-bin-3-line:before { + content: "\ec20"; +} +.ri-delete-bin-4-fill:before { + content: "\ec21"; +} +.ri-delete-bin-4-line:before { + content: "\ec22"; +} +.ri-delete-bin-5-fill:before { + content: "\ec23"; +} +.ri-delete-bin-5-line:before { + content: "\ec24"; +} +.ri-delete-bin-6-fill:before { + content: "\ec25"; +} +.ri-delete-bin-6-line:before { + content: "\ec26"; +} +.ri-delete-bin-7-fill:before { + content: "\ec27"; +} +.ri-delete-bin-7-line:before { + content: "\ec28"; +} +.ri-delete-bin-fill:before { + content: "\ec29"; +} +.ri-delete-bin-line:before { + content: "\ec2a"; +} +.ri-delete-column:before { + content: "\ec2b"; +} +.ri-delete-row:before { + content: "\ec2c"; +} +.ri-device-fill:before { + content: "\ec2d"; +} +.ri-device-line:before { + content: "\ec2e"; +} +.ri-device-recover-fill:before { + content: "\ec2f"; +} +.ri-device-recover-line:before { + content: "\ec30"; +} +.ri-dingding-fill:before { + content: "\ec31"; +} +.ri-dingding-line:before { + content: "\ec32"; +} +.ri-direction-fill:before { + content: "\ec33"; +} +.ri-direction-line:before { + content: "\ec34"; +} +.ri-disc-fill:before { + content: "\ec35"; +} +.ri-disc-line:before { + content: "\ec36"; +} +.ri-discord-fill:before { + content: "\ec37"; +} +.ri-discord-line:before { + content: "\ec38"; +} +.ri-discuss-fill:before { + content: "\ec39"; +} +.ri-discuss-line:before { + content: "\ec3a"; +} +.ri-dislike-fill:before { + content: "\ec3b"; +} +.ri-dislike-line:before { + content: "\ec3c"; +} +.ri-disqus-fill:before { + content: "\ec3d"; +} +.ri-disqus-line:before { + content: "\ec3e"; +} +.ri-divide-fill:before { + content: "\ec3f"; +} +.ri-divide-line:before { + content: "\ec40"; +} +.ri-donut-chart-fill:before { + content: "\ec41"; +} +.ri-donut-chart-line:before { + content: "\ec42"; +} +.ri-door-closed-fill:before { + content: "\ec43"; +} +.ri-door-closed-line:before { + content: "\ec44"; +} +.ri-door-fill:before { + content: "\ec45"; +} +.ri-door-line:before { + content: "\ec46"; +} +.ri-door-lock-box-fill:before { + content: "\ec47"; +} +.ri-door-lock-box-line:before { + content: "\ec48"; +} +.ri-door-lock-fill:before { + content: "\ec49"; +} +.ri-door-lock-line:before { + content: "\ec4a"; +} +.ri-door-open-fill:before { + content: "\ec4b"; +} +.ri-door-open-line:before { + content: "\ec4c"; +} +.ri-dossier-fill:before { + content: "\ec4d"; +} +.ri-dossier-line:before { + content: "\ec4e"; +} +.ri-douban-fill:before { + content: "\ec4f"; +} +.ri-douban-line:before { + content: "\ec50"; +} +.ri-double-quotes-l:before { + content: "\ec51"; +} +.ri-double-quotes-r:before { + content: "\ec52"; +} +.ri-download-2-fill:before { + content: "\ec53"; +} +.ri-download-2-line:before { + content: "\ec54"; +} +.ri-download-cloud-2-fill:before { + content: "\ec55"; +} +.ri-download-cloud-2-line:before { + content: "\ec56"; +} +.ri-download-cloud-fill:before { + content: "\ec57"; +} +.ri-download-cloud-line:before { + content: "\ec58"; +} +.ri-download-fill:before { + content: "\ec59"; +} +.ri-download-line:before { + content: "\ec5a"; +} +.ri-draft-fill:before { + content: "\ec5b"; +} +.ri-draft-line:before { + content: "\ec5c"; +} +.ri-drag-drop-fill:before { + content: "\ec5d"; +} +.ri-drag-drop-line:before { + content: "\ec5e"; +} +.ri-drag-move-2-fill:before { + content: "\ec5f"; +} +.ri-drag-move-2-line:before { + content: "\ec60"; +} +.ri-drag-move-fill:before { + content: "\ec61"; +} +.ri-drag-move-line:before { + content: "\ec62"; +} +.ri-dribbble-fill:before { + content: "\ec63"; +} +.ri-dribbble-line:before { + content: "\ec64"; +} +.ri-drive-fill:before { + content: "\ec65"; +} +.ri-drive-line:before { + content: "\ec66"; +} +.ri-drizzle-fill:before { + content: "\ec67"; +} +.ri-drizzle-line:before { + content: "\ec68"; +} +.ri-drop-fill:before { + content: "\ec69"; +} +.ri-drop-line:before { + content: "\ec6a"; +} +.ri-dropbox-fill:before { + content: "\ec6b"; +} +.ri-dropbox-line:before { + content: "\ec6c"; +} +.ri-dual-sim-1-fill:before { + content: "\ec6d"; +} +.ri-dual-sim-1-line:before { + content: "\ec6e"; +} +.ri-dual-sim-2-fill:before { + content: "\ec6f"; +} +.ri-dual-sim-2-line:before { + content: "\ec70"; +} +.ri-dv-fill:before { + content: "\ec71"; +} +.ri-dv-line:before { + content: "\ec72"; +} +.ri-dvd-fill:before { + content: "\ec73"; +} +.ri-dvd-line:before { + content: "\ec74"; +} +.ri-e-bike-2-fill:before { + content: "\ec75"; +} +.ri-e-bike-2-line:before { + content: "\ec76"; +} +.ri-e-bike-fill:before { + content: "\ec77"; +} +.ri-e-bike-line:before { + content: "\ec78"; +} +.ri-earth-fill:before { + content: "\ec79"; +} +.ri-earth-line:before { + content: "\ec7a"; +} +.ri-earthquake-fill:before { + content: "\ec7b"; +} +.ri-earthquake-line:before { + content: "\ec7c"; +} +.ri-edge-fill:before { + content: "\ec7d"; +} +.ri-edge-line:before { + content: "\ec7e"; +} +.ri-edit-2-fill:before { + content: "\ec7f"; +} +.ri-edit-2-line:before { + content: "\ec80"; +} +.ri-edit-box-fill:before { + content: "\ec81"; +} +.ri-edit-box-line:before { + content: "\ec82"; +} +.ri-edit-circle-fill:before { + content: "\ec83"; +} +.ri-edit-circle-line:before { + content: "\ec84"; +} +.ri-edit-fill:before { + content: "\ec85"; +} +.ri-edit-line:before { + content: "\ec86"; +} +.ri-eject-fill:before { + content: "\ec87"; +} +.ri-eject-line:before { + content: "\ec88"; +} +.ri-emotion-2-fill:before { + content: "\ec89"; +} +.ri-emotion-2-line:before { + content: "\ec8a"; +} +.ri-emotion-fill:before { + content: "\ec8b"; +} +.ri-emotion-happy-fill:before { + content: "\ec8c"; +} +.ri-emotion-happy-line:before { + content: "\ec8d"; +} +.ri-emotion-laugh-fill:before { + content: "\ec8e"; +} +.ri-emotion-laugh-line:before { + content: "\ec8f"; +} +.ri-emotion-line:before { + content: "\ec90"; +} +.ri-emotion-normal-fill:before { + content: "\ec91"; +} +.ri-emotion-normal-line:before { + content: "\ec92"; +} +.ri-emotion-sad-fill:before { + content: "\ec93"; +} +.ri-emotion-sad-line:before { + content: "\ec94"; +} +.ri-emotion-unhappy-fill:before { + content: "\ec95"; +} +.ri-emotion-unhappy-line:before { + content: "\ec96"; +} +.ri-empathize-fill:before { + content: "\ec97"; +} +.ri-empathize-line:before { + content: "\ec98"; +} +.ri-emphasis-cn:before { + content: "\ec99"; +} +.ri-emphasis:before { + content: "\ec9a"; +} +.ri-english-input:before { + content: "\ec9b"; +} +.ri-equalizer-fill:before { + content: "\ec9c"; +} +.ri-equalizer-line:before { + content: "\ec9d"; +} +.ri-eraser-fill:before { + content: "\ec9e"; +} +.ri-eraser-line:before { + content: "\ec9f"; +} +.ri-error-warning-fill:before { + content: "\eca0"; +} +.ri-error-warning-line:before { + content: "\eca1"; +} +.ri-evernote-fill:before { + content: "\eca2"; +} +.ri-evernote-line:before { + content: "\eca3"; +} +.ri-exchange-box-fill:before { + content: "\eca4"; +} +.ri-exchange-box-line:before { + content: "\eca5"; +} +.ri-exchange-cny-fill:before { + content: "\eca6"; +} +.ri-exchange-cny-line:before { + content: "\eca7"; +} +.ri-exchange-dollar-fill:before { + content: "\eca8"; +} +.ri-exchange-dollar-line:before { + content: "\eca9"; +} +.ri-exchange-fill:before { + content: "\ecaa"; +} +.ri-exchange-funds-fill:before { + content: "\ecab"; +} +.ri-exchange-funds-line:before { + content: "\ecac"; +} +.ri-exchange-line:before { + content: "\ecad"; +} +.ri-external-link-fill:before { + content: "\ecae"; +} +.ri-external-link-line:before { + content: "\ecaf"; +} +.ri-eye-2-fill:before { + content: "\ecb0"; +} +.ri-eye-2-line:before { + content: "\ecb1"; +} +.ri-eye-close-fill:before { + content: "\ecb2"; +} +.ri-eye-close-line:before { + content: "\ecb3"; +} +.ri-eye-fill:before { + content: "\ecb4"; +} +.ri-eye-line:before { + content: "\ecb5"; +} +.ri-eye-off-fill:before { + content: "\ecb6"; +} +.ri-eye-off-line:before { + content: "\ecb7"; +} +.ri-facebook-box-fill:before { + content: "\ecb8"; +} +.ri-facebook-box-line:before { + content: "\ecb9"; +} +.ri-facebook-circle-fill:before { + content: "\ecba"; +} +.ri-facebook-circle-line:before { + content: "\ecbb"; +} +.ri-facebook-fill:before { + content: "\ecbc"; +} +.ri-facebook-line:before { + content: "\ecbd"; +} +.ri-fahrenheit-fill:before { + content: "\ecbe"; +} +.ri-fahrenheit-line:before { + content: "\ecbf"; +} +.ri-feedback-fill:before { + content: "\ecc0"; +} +.ri-feedback-line:before { + content: "\ecc1"; +} +.ri-file-2-fill:before { + content: "\ecc2"; +} +.ri-file-2-line:before { + content: "\ecc3"; +} +.ri-file-3-fill:before { + content: "\ecc4"; +} +.ri-file-3-line:before { + content: "\ecc5"; +} +.ri-file-4-fill:before { + content: "\ecc6"; +} +.ri-file-4-line:before { + content: "\ecc7"; +} +.ri-file-add-fill:before { + content: "\ecc8"; +} +.ri-file-add-line:before { + content: "\ecc9"; +} +.ri-file-chart-2-fill:before { + content: "\ecca"; +} +.ri-file-chart-2-line:before { + content: "\eccb"; +} +.ri-file-chart-fill:before { + content: "\eccc"; +} +.ri-file-chart-line:before { + content: "\eccd"; +} +.ri-file-cloud-fill:before { + content: "\ecce"; +} +.ri-file-cloud-line:before { + content: "\eccf"; +} +.ri-file-code-fill:before { + content: "\ecd0"; +} +.ri-file-code-line:before { + content: "\ecd1"; +} +.ri-file-copy-2-fill:before { + content: "\ecd2"; +} +.ri-file-copy-2-line:before { + content: "\ecd3"; +} +.ri-file-copy-fill:before { + content: "\ecd4"; +} +.ri-file-copy-line:before { + content: "\ecd5"; +} +.ri-file-damage-fill:before { + content: "\ecd6"; +} +.ri-file-damage-line:before { + content: "\ecd7"; +} +.ri-file-download-fill:before { + content: "\ecd8"; +} +.ri-file-download-line:before { + content: "\ecd9"; +} +.ri-file-edit-fill:before { + content: "\ecda"; +} +.ri-file-edit-line:before { + content: "\ecdb"; +} +.ri-file-excel-2-fill:before { + content: "\ecdc"; +} +.ri-file-excel-2-line:before { + content: "\ecdd"; +} +.ri-file-excel-fill:before { + content: "\ecde"; +} +.ri-file-excel-line:before { + content: "\ecdf"; +} +.ri-file-fill:before { + content: "\ece0"; +} +.ri-file-forbid-fill:before { + content: "\ece1"; +} +.ri-file-forbid-line:before { + content: "\ece2"; +} +.ri-file-gif-fill:before { + content: "\ece3"; +} +.ri-file-gif-line:before { + content: "\ece4"; +} +.ri-file-history-fill:before { + content: "\ece5"; +} +.ri-file-history-line:before { + content: "\ece6"; +} +.ri-file-hwp-fill:before { + content: "\ece7"; +} +.ri-file-hwp-line:before { + content: "\ece8"; +} +.ri-file-info-fill:before { + content: "\ece9"; +} +.ri-file-info-line:before { + content: "\ecea"; +} +.ri-file-line:before { + content: "\eceb"; +} +.ri-file-list-2-fill:before { + content: "\ecec"; +} +.ri-file-list-2-line:before { + content: "\eced"; +} +.ri-file-list-3-fill:before { + content: "\ecee"; +} +.ri-file-list-3-line:before { + content: "\ecef"; +} +.ri-file-list-fill:before { + content: "\ecf0"; +} +.ri-file-list-line:before { + content: "\ecf1"; +} +.ri-file-lock-fill:before { + content: "\ecf2"; +} +.ri-file-lock-line:before { + content: "\ecf3"; +} +.ri-file-mark-fill:before { + content: "\ecf4"; +} +.ri-file-mark-line:before { + content: "\ecf5"; +} +.ri-file-music-fill:before { + content: "\ecf6"; +} +.ri-file-music-line:before { + content: "\ecf7"; +} +.ri-file-paper-2-fill:before { + content: "\ecf8"; +} +.ri-file-paper-2-line:before { + content: "\ecf9"; +} +.ri-file-paper-fill:before { + content: "\ecfa"; +} +.ri-file-paper-line:before { + content: "\ecfb"; +} +.ri-file-pdf-fill:before { + content: "\ecfc"; +} +.ri-file-pdf-line:before { + content: "\ecfd"; +} +.ri-file-ppt-2-fill:before { + content: "\ecfe"; +} +.ri-file-ppt-2-line:before { + content: "\ecff"; +} +.ri-file-ppt-fill:before { + content: "\ed00"; +} +.ri-file-ppt-line:before { + content: "\ed01"; +} +.ri-file-reduce-fill:before { + content: "\ed02"; +} +.ri-file-reduce-line:before { + content: "\ed03"; +} +.ri-file-search-fill:before { + content: "\ed04"; +} +.ri-file-search-line:before { + content: "\ed05"; +} +.ri-file-settings-fill:before { + content: "\ed06"; +} +.ri-file-settings-line:before { + content: "\ed07"; +} +.ri-file-shield-2-fill:before { + content: "\ed08"; +} +.ri-file-shield-2-line:before { + content: "\ed09"; +} +.ri-file-shield-fill:before { + content: "\ed0a"; +} +.ri-file-shield-line:before { + content: "\ed0b"; +} +.ri-file-shred-fill:before { + content: "\ed0c"; +} +.ri-file-shred-line:before { + content: "\ed0d"; +} +.ri-file-text-fill:before { + content: "\ed0e"; +} +.ri-file-text-line:before { + content: "\ed0f"; +} +.ri-file-transfer-fill:before { + content: "\ed10"; +} +.ri-file-transfer-line:before { + content: "\ed11"; +} +.ri-file-unknow-fill:before { + content: "\ed12"; +} +.ri-file-unknow-line:before { + content: "\ed13"; +} +.ri-file-upload-fill:before { + content: "\ed14"; +} +.ri-file-upload-line:before { + content: "\ed15"; +} +.ri-file-user-fill:before { + content: "\ed16"; +} +.ri-file-user-line:before { + content: "\ed17"; +} +.ri-file-warning-fill:before { + content: "\ed18"; +} +.ri-file-warning-line:before { + content: "\ed19"; +} +.ri-file-word-2-fill:before { + content: "\ed1a"; +} +.ri-file-word-2-line:before { + content: "\ed1b"; +} +.ri-file-word-fill:before { + content: "\ed1c"; +} +.ri-file-word-line:before { + content: "\ed1d"; +} +.ri-file-zip-fill:before { + content: "\ed1e"; +} +.ri-file-zip-line:before { + content: "\ed1f"; +} +.ri-film-fill:before { + content: "\ed20"; +} +.ri-film-line:before { + content: "\ed21"; +} +.ri-filter-2-fill:before { + content: "\ed22"; +} +.ri-filter-2-line:before { + content: "\ed23"; +} +.ri-filter-3-fill:before { + content: "\ed24"; +} +.ri-filter-3-line:before { + content: "\ed25"; +} +.ri-filter-fill:before { + content: "\ed26"; +} +.ri-filter-line:before { + content: "\ed27"; +} +.ri-filter-off-fill:before { + content: "\ed28"; +} +.ri-filter-off-line:before { + content: "\ed29"; +} +.ri-find-replace-fill:before { + content: "\ed2a"; +} +.ri-find-replace-line:before { + content: "\ed2b"; +} +.ri-finder-fill:before { + content: "\ed2c"; +} +.ri-finder-line:before { + content: "\ed2d"; +} +.ri-fingerprint-2-fill:before { + content: "\ed2e"; +} +.ri-fingerprint-2-line:before { + content: "\ed2f"; +} +.ri-fingerprint-fill:before { + content: "\ed30"; +} +.ri-fingerprint-line:before { + content: "\ed31"; +} +.ri-fire-fill:before { + content: "\ed32"; +} +.ri-fire-line:before { + content: "\ed33"; +} +.ri-firefox-fill:before { + content: "\ed34"; +} +.ri-firefox-line:before { + content: "\ed35"; +} +.ri-first-aid-kit-fill:before { + content: "\ed36"; +} +.ri-first-aid-kit-line:before { + content: "\ed37"; +} +.ri-flag-2-fill:before { + content: "\ed38"; +} +.ri-flag-2-line:before { + content: "\ed39"; +} +.ri-flag-fill:before { + content: "\ed3a"; +} +.ri-flag-line:before { + content: "\ed3b"; +} +.ri-flashlight-fill:before { + content: "\ed3c"; +} +.ri-flashlight-line:before { + content: "\ed3d"; +} +.ri-flask-fill:before { + content: "\ed3e"; +} +.ri-flask-line:before { + content: "\ed3f"; +} +.ri-flight-land-fill:before { + content: "\ed40"; +} +.ri-flight-land-line:before { + content: "\ed41"; +} +.ri-flight-takeoff-fill:before { + content: "\ed42"; +} +.ri-flight-takeoff-line:before { + content: "\ed43"; +} +.ri-flood-fill:before { + content: "\ed44"; +} +.ri-flood-line:before { + content: "\ed45"; +} +.ri-flow-chart:before { + content: "\ed46"; +} +.ri-flutter-fill:before { + content: "\ed47"; +} +.ri-flutter-line:before { + content: "\ed48"; +} +.ri-focus-2-fill:before { + content: "\ed49"; +} +.ri-focus-2-line:before { + content: "\ed4a"; +} +.ri-focus-3-fill:before { + content: "\ed4b"; +} +.ri-focus-3-line:before { + content: "\ed4c"; +} +.ri-focus-fill:before { + content: "\ed4d"; +} +.ri-focus-line:before { + content: "\ed4e"; +} +.ri-foggy-fill:before { + content: "\ed4f"; +} +.ri-foggy-line:before { + content: "\ed50"; +} +.ri-folder-2-fill:before { + content: "\ed51"; +} +.ri-folder-2-line:before { + content: "\ed52"; +} +.ri-folder-3-fill:before { + content: "\ed53"; +} +.ri-folder-3-line:before { + content: "\ed54"; +} +.ri-folder-4-fill:before { + content: "\ed55"; +} +.ri-folder-4-line:before { + content: "\ed56"; +} +.ri-folder-5-fill:before { + content: "\ed57"; +} +.ri-folder-5-line:before { + content: "\ed58"; +} +.ri-folder-add-fill:before { + content: "\ed59"; +} +.ri-folder-add-line:before { + content: "\ed5a"; +} +.ri-folder-chart-2-fill:before { + content: "\ed5b"; +} +.ri-folder-chart-2-line:before { + content: "\ed5c"; +} +.ri-folder-chart-fill:before { + content: "\ed5d"; +} +.ri-folder-chart-line:before { + content: "\ed5e"; +} +.ri-folder-download-fill:before { + content: "\ed5f"; +} +.ri-folder-download-line:before { + content: "\ed60"; +} +.ri-folder-fill:before { + content: "\ed61"; +} +.ri-folder-forbid-fill:before { + content: "\ed62"; +} +.ri-folder-forbid-line:before { + content: "\ed63"; +} +.ri-folder-history-fill:before { + content: "\ed64"; +} +.ri-folder-history-line:before { + content: "\ed65"; +} +.ri-folder-info-fill:before { + content: "\ed66"; +} +.ri-folder-info-line:before { + content: "\ed67"; +} +.ri-folder-keyhole-fill:before { + content: "\ed68"; +} +.ri-folder-keyhole-line:before { + content: "\ed69"; +} +.ri-folder-line:before { + content: "\ed6a"; +} +.ri-folder-lock-fill:before { + content: "\ed6b"; +} +.ri-folder-lock-line:before { + content: "\ed6c"; +} +.ri-folder-music-fill:before { + content: "\ed6d"; +} +.ri-folder-music-line:before { + content: "\ed6e"; +} +.ri-folder-open-fill:before { + content: "\ed6f"; +} +.ri-folder-open-line:before { + content: "\ed70"; +} +.ri-folder-received-fill:before { + content: "\ed71"; +} +.ri-folder-received-line:before { + content: "\ed72"; +} +.ri-folder-reduce-fill:before { + content: "\ed73"; +} +.ri-folder-reduce-line:before { + content: "\ed74"; +} +.ri-folder-settings-fill:before { + content: "\ed75"; +} +.ri-folder-settings-line:before { + content: "\ed76"; +} +.ri-folder-shared-fill:before { + content: "\ed77"; +} +.ri-folder-shared-line:before { + content: "\ed78"; +} +.ri-folder-shield-2-fill:before { + content: "\ed79"; +} +.ri-folder-shield-2-line:before { + content: "\ed7a"; +} +.ri-folder-shield-fill:before { + content: "\ed7b"; +} +.ri-folder-shield-line:before { + content: "\ed7c"; +} +.ri-folder-transfer-fill:before { + content: "\ed7d"; +} +.ri-folder-transfer-line:before { + content: "\ed7e"; +} +.ri-folder-unknow-fill:before { + content: "\ed7f"; +} +.ri-folder-unknow-line:before { + content: "\ed80"; +} +.ri-folder-upload-fill:before { + content: "\ed81"; +} +.ri-folder-upload-line:before { + content: "\ed82"; +} +.ri-folder-user-fill:before { + content: "\ed83"; +} +.ri-folder-user-line:before { + content: "\ed84"; +} +.ri-folder-warning-fill:before { + content: "\ed85"; +} +.ri-folder-warning-line:before { + content: "\ed86"; +} +.ri-folder-zip-fill:before { + content: "\ed87"; +} +.ri-folder-zip-line:before { + content: "\ed88"; +} +.ri-folders-fill:before { + content: "\ed89"; +} +.ri-folders-line:before { + content: "\ed8a"; +} +.ri-font-color:before { + content: "\ed8b"; +} +.ri-font-size-2:before { + content: "\ed8c"; +} +.ri-font-size:before { + content: "\ed8d"; +} +.ri-football-fill:before { + content: "\ed8e"; +} +.ri-football-line:before { + content: "\ed8f"; +} +.ri-footprint-fill:before { + content: "\ed90"; +} +.ri-footprint-line:before { + content: "\ed91"; +} +.ri-forbid-2-fill:before { + content: "\ed92"; +} +.ri-forbid-2-line:before { + content: "\ed93"; +} +.ri-forbid-fill:before { + content: "\ed94"; +} +.ri-forbid-line:before { + content: "\ed95"; +} +.ri-format-clear:before { + content: "\ed96"; +} +.ri-fridge-fill:before { + content: "\ed97"; +} +.ri-fridge-line:before { + content: "\ed98"; +} +.ri-fullscreen-exit-fill:before { + content: "\ed99"; +} +.ri-fullscreen-exit-line:before { + content: "\ed9a"; +} +.ri-fullscreen-fill:before { + content: "\ed9b"; +} +.ri-fullscreen-line:before { + content: "\ed9c"; +} +.ri-function-fill:before { + content: "\ed9d"; +} +.ri-function-line:before { + content: "\ed9e"; +} +.ri-functions:before { + content: "\ed9f"; +} +.ri-funds-box-fill:before { + content: "\eda0"; +} +.ri-funds-box-line:before { + content: "\eda1"; +} +.ri-funds-fill:before { + content: "\eda2"; +} +.ri-funds-line:before { + content: "\eda3"; +} +.ri-gallery-fill:before { + content: "\eda4"; +} +.ri-gallery-line:before { + content: "\eda5"; +} +.ri-gallery-upload-fill:before { + content: "\eda6"; +} +.ri-gallery-upload-line:before { + content: "\eda7"; +} +.ri-game-fill:before { + content: "\eda8"; +} +.ri-game-line:before { + content: "\eda9"; +} +.ri-gamepad-fill:before { + content: "\edaa"; +} +.ri-gamepad-line:before { + content: "\edab"; +} +.ri-gas-station-fill:before { + content: "\edac"; +} +.ri-gas-station-line:before { + content: "\edad"; +} +.ri-gatsby-fill:before { + content: "\edae"; +} +.ri-gatsby-line:before { + content: "\edaf"; +} +.ri-genderless-fill:before { + content: "\edb0"; +} +.ri-genderless-line:before { + content: "\edb1"; +} +.ri-ghost-2-fill:before { + content: "\edb2"; +} +.ri-ghost-2-line:before { + content: "\edb3"; +} +.ri-ghost-fill:before { + content: "\edb4"; +} +.ri-ghost-line:before { + content: "\edb5"; +} +.ri-ghost-smile-fill:before { + content: "\edb6"; +} +.ri-ghost-smile-line:before { + content: "\edb7"; +} +.ri-gift-2-fill:before { + content: "\edb8"; +} +.ri-gift-2-line:before { + content: "\edb9"; +} +.ri-gift-fill:before { + content: "\edba"; +} +.ri-gift-line:before { + content: "\edbb"; +} +.ri-git-branch-fill:before { + content: "\edbc"; +} +.ri-git-branch-line:before { + content: "\edbd"; +} +.ri-git-commit-fill:before { + content: "\edbe"; +} +.ri-git-commit-line:before { + content: "\edbf"; +} +.ri-git-merge-fill:before { + content: "\edc0"; +} +.ri-git-merge-line:before { + content: "\edc1"; +} +.ri-git-pull-request-fill:before { + content: "\edc2"; +} +.ri-git-pull-request-line:before { + content: "\edc3"; +} +.ri-git-repository-commits-fill:before { + content: "\edc4"; +} +.ri-git-repository-commits-line:before { + content: "\edc5"; +} +.ri-git-repository-fill:before { + content: "\edc6"; +} +.ri-git-repository-line:before { + content: "\edc7"; +} +.ri-git-repository-private-fill:before { + content: "\edc8"; +} +.ri-git-repository-private-line:before { + content: "\edc9"; +} +.ri-github-fill:before { + content: "\edca"; +} +.ri-github-line:before { + content: "\edcb"; +} +.ri-gitlab-fill:before { + content: "\edcc"; +} +.ri-gitlab-line:before { + content: "\edcd"; +} +.ri-global-fill:before { + content: "\edce"; +} +.ri-global-line:before { + content: "\edcf"; +} +.ri-globe-fill:before { + content: "\edd0"; +} +.ri-globe-line:before { + content: "\edd1"; +} +.ri-goblet-fill:before { + content: "\edd2"; +} +.ri-goblet-line:before { + content: "\edd3"; +} +.ri-google-fill:before { + content: "\edd4"; +} +.ri-google-line:before { + content: "\edd5"; +} +.ri-google-play-fill:before { + content: "\edd6"; +} +.ri-google-play-line:before { + content: "\edd7"; +} +.ri-government-fill:before { + content: "\edd8"; +} +.ri-government-line:before { + content: "\edd9"; +} +.ri-gps-fill:before { + content: "\edda"; +} +.ri-gps-line:before { + content: "\eddb"; +} +.ri-gradienter-fill:before { + content: "\eddc"; +} +.ri-gradienter-line:before { + content: "\eddd"; +} +.ri-grid-fill:before { + content: "\edde"; +} +.ri-grid-line:before { + content: "\eddf"; +} +.ri-group-2-fill:before { + content: "\ede0"; +} +.ri-group-2-line:before { + content: "\ede1"; +} +.ri-group-fill:before { + content: "\ede2"; +} +.ri-group-line:before { + content: "\ede3"; +} +.ri-guide-fill:before { + content: "\ede4"; +} +.ri-guide-line:before { + content: "\ede5"; +} +.ri-h-1:before { + content: "\ede6"; +} +.ri-h-2:before { + content: "\ede7"; +} +.ri-h-3:before { + content: "\ede8"; +} +.ri-h-4:before { + content: "\ede9"; +} +.ri-h-5:before { + content: "\edea"; +} +.ri-h-6:before { + content: "\edeb"; +} +.ri-hail-fill:before { + content: "\edec"; +} +.ri-hail-line:before { + content: "\eded"; +} +.ri-hammer-fill:before { + content: "\edee"; +} +.ri-hammer-line:before { + content: "\edef"; +} +.ri-hand-coin-fill:before { + content: "\edf0"; +} +.ri-hand-coin-line:before { + content: "\edf1"; +} +.ri-hand-heart-fill:before { + content: "\edf2"; +} +.ri-hand-heart-line:before { + content: "\edf3"; +} +.ri-hand-sanitizer-fill:before { + content: "\edf4"; +} +.ri-hand-sanitizer-line:before { + content: "\edf5"; +} +.ri-handbag-fill:before { + content: "\edf6"; +} +.ri-handbag-line:before { + content: "\edf7"; +} +.ri-hard-drive-2-fill:before { + content: "\edf8"; +} +.ri-hard-drive-2-line:before { + content: "\edf9"; +} +.ri-hard-drive-fill:before { + content: "\edfa"; +} +.ri-hard-drive-line:before { + content: "\edfb"; +} +.ri-hashtag:before { + content: "\edfc"; +} +.ri-haze-2-fill:before { + content: "\edfd"; +} +.ri-haze-2-line:before { + content: "\edfe"; +} +.ri-haze-fill:before { + content: "\edff"; +} +.ri-haze-line:before { + content: "\ee00"; +} +.ri-hd-fill:before { + content: "\ee01"; +} +.ri-hd-line:before { + content: "\ee02"; +} +.ri-heading:before { + content: "\ee03"; +} +.ri-headphone-fill:before { + content: "\ee04"; +} +.ri-headphone-line:before { + content: "\ee05"; +} +.ri-health-book-fill:before { + content: "\ee06"; +} +.ri-health-book-line:before { + content: "\ee07"; +} +.ri-heart-2-fill:before { + content: "\ee08"; +} +.ri-heart-2-line:before { + content: "\ee09"; +} +.ri-heart-3-fill:before { + content: "\ee0a"; +} +.ri-heart-3-line:before { + content: "\ee0b"; +} +.ri-heart-add-fill:before { + content: "\ee0c"; +} +.ri-heart-add-line:before { + content: "\ee0d"; +} +.ri-heart-fill:before { + content: "\ee0e"; +} +.ri-heart-line:before { + content: "\ee0f"; +} +.ri-heart-pulse-fill:before { + content: "\ee10"; +} +.ri-heart-pulse-line:before { + content: "\ee11"; +} +.ri-hearts-fill:before { + content: "\ee12"; +} +.ri-hearts-line:before { + content: "\ee13"; +} +.ri-heavy-showers-fill:before { + content: "\ee14"; +} +.ri-heavy-showers-line:before { + content: "\ee15"; +} +.ri-history-fill:before { + content: "\ee16"; +} +.ri-history-line:before { + content: "\ee17"; +} +.ri-home-2-fill:before { + content: "\ee18"; +} +.ri-home-2-line:before { + content: "\ee19"; +} +.ri-home-3-fill:before { + content: "\ee1a"; +} +.ri-home-3-line:before { + content: "\ee1b"; +} +.ri-home-4-fill:before { + content: "\ee1c"; +} +.ri-home-4-line:before { + content: "\ee1d"; +} +.ri-home-5-fill:before { + content: "\ee1e"; +} +.ri-home-5-line:before { + content: "\ee1f"; +} +.ri-home-6-fill:before { + content: "\ee20"; +} +.ri-home-6-line:before { + content: "\ee21"; +} +.ri-home-7-fill:before { + content: "\ee22"; +} +.ri-home-7-line:before { + content: "\ee23"; +} +.ri-home-8-fill:before { + content: "\ee24"; +} +.ri-home-8-line:before { + content: "\ee25"; +} +.ri-home-fill:before { + content: "\ee26"; +} +.ri-home-gear-fill:before { + content: "\ee27"; +} +.ri-home-gear-line:before { + content: "\ee28"; +} +.ri-home-heart-fill:before { + content: "\ee29"; +} +.ri-home-heart-line:before { + content: "\ee2a"; +} +.ri-home-line:before { + content: "\ee2b"; +} +.ri-home-smile-2-fill:before { + content: "\ee2c"; +} +.ri-home-smile-2-line:before { + content: "\ee2d"; +} +.ri-home-smile-fill:before { + content: "\ee2e"; +} +.ri-home-smile-line:before { + content: "\ee2f"; +} +.ri-home-wifi-fill:before { + content: "\ee30"; +} +.ri-home-wifi-line:before { + content: "\ee31"; +} +.ri-honor-of-kings-fill:before { + content: "\ee32"; +} +.ri-honor-of-kings-line:before { + content: "\ee33"; +} +.ri-honour-fill:before { + content: "\ee34"; +} +.ri-honour-line:before { + content: "\ee35"; +} +.ri-hospital-fill:before { + content: "\ee36"; +} +.ri-hospital-line:before { + content: "\ee37"; +} +.ri-hotel-bed-fill:before { + content: "\ee38"; +} +.ri-hotel-bed-line:before { + content: "\ee39"; +} +.ri-hotel-fill:before { + content: "\ee3a"; +} +.ri-hotel-line:before { + content: "\ee3b"; +} +.ri-hotspot-fill:before { + content: "\ee3c"; +} +.ri-hotspot-line:before { + content: "\ee3d"; +} +.ri-hq-fill:before { + content: "\ee3e"; +} +.ri-hq-line:before { + content: "\ee3f"; +} +.ri-html5-fill:before { + content: "\ee40"; +} +.ri-html5-line:before { + content: "\ee41"; +} +.ri-ie-fill:before { + content: "\ee42"; +} +.ri-ie-line:before { + content: "\ee43"; +} +.ri-image-2-fill:before { + content: "\ee44"; +} +.ri-image-2-line:before { + content: "\ee45"; +} +.ri-image-add-fill:before { + content: "\ee46"; +} +.ri-image-add-line:before { + content: "\ee47"; +} +.ri-image-edit-fill:before { + content: "\ee48"; +} +.ri-image-edit-line:before { + content: "\ee49"; +} +.ri-image-fill:before { + content: "\ee4a"; +} +.ri-image-line:before { + content: "\ee4b"; +} +.ri-inbox-archive-fill:before { + content: "\ee4c"; +} +.ri-inbox-archive-line:before { + content: "\ee4d"; +} +.ri-inbox-fill:before { + content: "\ee4e"; +} +.ri-inbox-line:before { + content: "\ee4f"; +} +.ri-inbox-unarchive-fill:before { + content: "\ee50"; +} +.ri-inbox-unarchive-line:before { + content: "\ee51"; +} +.ri-increase-decrease-fill:before { + content: "\ee52"; +} +.ri-increase-decrease-line:before { + content: "\ee53"; +} +.ri-indent-decrease:before { + content: "\ee54"; +} +.ri-indent-increase:before { + content: "\ee55"; +} +.ri-indeterminate-circle-fill:before { + content: "\ee56"; +} +.ri-indeterminate-circle-line:before { + content: "\ee57"; +} +.ri-information-fill:before { + content: "\ee58"; +} +.ri-information-line:before { + content: "\ee59"; +} +.ri-infrared-thermometer-fill:before { + content: "\ee5a"; +} +.ri-infrared-thermometer-line:before { + content: "\ee5b"; +} +.ri-ink-bottle-fill:before { + content: "\ee5c"; +} +.ri-ink-bottle-line:before { + content: "\ee5d"; +} +.ri-input-cursor-move:before { + content: "\ee5e"; +} +.ri-input-method-fill:before { + content: "\ee5f"; +} +.ri-input-method-line:before { + content: "\ee60"; +} +.ri-insert-column-left:before { + content: "\ee61"; +} +.ri-insert-column-right:before { + content: "\ee62"; +} +.ri-insert-row-bottom:before { + content: "\ee63"; +} +.ri-insert-row-top:before { + content: "\ee64"; +} +.ri-instagram-fill:before { + content: "\ee65"; +} +.ri-instagram-line:before { + content: "\ee66"; +} +.ri-install-fill:before { + content: "\ee67"; +} +.ri-install-line:before { + content: "\ee68"; +} +.ri-invision-fill:before { + content: "\ee69"; +} +.ri-invision-line:before { + content: "\ee6a"; +} +.ri-italic:before { + content: "\ee6b"; +} +.ri-kakao-talk-fill:before { + content: "\ee6c"; +} +.ri-kakao-talk-line:before { + content: "\ee6d"; +} +.ri-key-2-fill:before { + content: "\ee6e"; +} +.ri-key-2-line:before { + content: "\ee6f"; +} +.ri-key-fill:before { + content: "\ee70"; +} +.ri-key-line:before { + content: "\ee71"; +} +.ri-keyboard-box-fill:before { + content: "\ee72"; +} +.ri-keyboard-box-line:before { + content: "\ee73"; +} +.ri-keyboard-fill:before { + content: "\ee74"; +} +.ri-keyboard-line:before { + content: "\ee75"; +} +.ri-keynote-fill:before { + content: "\ee76"; +} +.ri-keynote-line:before { + content: "\ee77"; +} +.ri-knife-blood-fill:before { + content: "\ee78"; +} +.ri-knife-blood-line:before { + content: "\ee79"; +} +.ri-knife-fill:before { + content: "\ee7a"; +} +.ri-knife-line:before { + content: "\ee7b"; +} +.ri-landscape-fill:before { + content: "\ee7c"; +} +.ri-landscape-line:before { + content: "\ee7d"; +} +.ri-layout-2-fill:before { + content: "\ee7e"; +} +.ri-layout-2-line:before { + content: "\ee7f"; +} +.ri-layout-3-fill:before { + content: "\ee80"; +} +.ri-layout-3-line:before { + content: "\ee81"; +} +.ri-layout-4-fill:before { + content: "\ee82"; +} +.ri-layout-4-line:before { + content: "\ee83"; +} +.ri-layout-5-fill:before { + content: "\ee84"; +} +.ri-layout-5-line:before { + content: "\ee85"; +} +.ri-layout-6-fill:before { + content: "\ee86"; +} +.ri-layout-6-line:before { + content: "\ee87"; +} +.ri-layout-bottom-2-fill:before { + content: "\ee88"; +} +.ri-layout-bottom-2-line:before { + content: "\ee89"; +} +.ri-layout-bottom-fill:before { + content: "\ee8a"; +} +.ri-layout-bottom-line:before { + content: "\ee8b"; +} +.ri-layout-column-fill:before { + content: "\ee8c"; +} +.ri-layout-column-line:before { + content: "\ee8d"; +} +.ri-layout-fill:before { + content: "\ee8e"; +} +.ri-layout-grid-fill:before { + content: "\ee8f"; +} +.ri-layout-grid-line:before { + content: "\ee90"; +} +.ri-layout-left-2-fill:before { + content: "\ee91"; +} +.ri-layout-left-2-line:before { + content: "\ee92"; +} +.ri-layout-left-fill:before { + content: "\ee93"; +} +.ri-layout-left-line:before { + content: "\ee94"; +} +.ri-layout-line:before { + content: "\ee95"; +} +.ri-layout-masonry-fill:before { + content: "\ee96"; +} +.ri-layout-masonry-line:before { + content: "\ee97"; +} +.ri-layout-right-2-fill:before { + content: "\ee98"; +} +.ri-layout-right-2-line:before { + content: "\ee99"; +} +.ri-layout-right-fill:before { + content: "\ee9a"; +} +.ri-layout-right-line:before { + content: "\ee9b"; +} +.ri-layout-row-fill:before { + content: "\ee9c"; +} +.ri-layout-row-line:before { + content: "\ee9d"; +} +.ri-layout-top-2-fill:before { + content: "\ee9e"; +} +.ri-layout-top-2-line:before { + content: "\ee9f"; +} +.ri-layout-top-fill:before { + content: "\eea0"; +} +.ri-layout-top-line:before { + content: "\eea1"; +} +.ri-leaf-fill:before { + content: "\eea2"; +} +.ri-leaf-line:before { + content: "\eea3"; +} +.ri-lifebuoy-fill:before { + content: "\eea4"; +} +.ri-lifebuoy-line:before { + content: "\eea5"; +} +.ri-lightbulb-fill:before { + content: "\eea6"; +} +.ri-lightbulb-flash-fill:before { + content: "\eea7"; +} +.ri-lightbulb-flash-line:before { + content: "\eea8"; +} +.ri-lightbulb-line:before { + content: "\eea9"; +} +.ri-line-chart-fill:before { + content: "\eeaa"; +} +.ri-line-chart-line:before { + content: "\eeab"; +} +.ri-line-fill:before { + content: "\eeac"; +} +.ri-line-height:before { + content: "\eead"; +} +.ri-line-line:before { + content: "\eeae"; +} +.ri-link-m:before { + content: "\eeaf"; +} +.ri-link-unlink-m:before { + content: "\eeb0"; +} +.ri-link-unlink:before { + content: "\eeb1"; +} +.ri-link:before { + content: "\eeb2"; +} +.ri-linkedin-box-fill:before { + content: "\eeb3"; +} +.ri-linkedin-box-line:before { + content: "\eeb4"; +} +.ri-linkedin-fill:before { + content: "\eeb5"; +} +.ri-linkedin-line:before { + content: "\eeb6"; +} +.ri-links-fill:before { + content: "\eeb7"; +} +.ri-links-line:before { + content: "\eeb8"; +} +.ri-list-check-2:before { + content: "\eeb9"; +} +.ri-list-check:before { + content: "\eeba"; +} +.ri-list-ordered:before { + content: "\eebb"; +} +.ri-list-settings-fill:before { + content: "\eebc"; +} +.ri-list-settings-line:before { + content: "\eebd"; +} +.ri-list-unordered:before { + content: "\eebe"; +} +.ri-live-fill:before { + content: "\eebf"; +} +.ri-live-line:before { + content: "\eec0"; +} +.ri-loader-2-fill:before { + content: "\eec1"; +} +.ri-loader-2-line:before { + content: "\eec2"; +} +.ri-loader-3-fill:before { + content: "\eec3"; +} +.ri-loader-3-line:before { + content: "\eec4"; +} +.ri-loader-4-fill:before { + content: "\eec5"; +} +.ri-loader-4-line:before { + content: "\eec6"; +} +.ri-loader-5-fill:before { + content: "\eec7"; +} +.ri-loader-5-line:before { + content: "\eec8"; +} +.ri-loader-fill:before { + content: "\eec9"; +} +.ri-loader-line:before { + content: "\eeca"; +} +.ri-lock-2-fill:before { + content: "\eecb"; +} +.ri-lock-2-line:before { + content: "\eecc"; +} +.ri-lock-fill:before { + content: "\eecd"; +} +.ri-lock-line:before { + content: "\eece"; +} +.ri-lock-password-fill:before { + content: "\eecf"; +} +.ri-lock-password-line:before { + content: "\eed0"; +} +.ri-lock-unlock-fill:before { + content: "\eed1"; +} +.ri-lock-unlock-line:before { + content: "\eed2"; +} +.ri-login-box-fill:before { + content: "\eed3"; +} +.ri-login-box-line:before { + content: "\eed4"; +} +.ri-login-circle-fill:before { + content: "\eed5"; +} +.ri-login-circle-line:before { + content: "\eed6"; +} +.ri-logout-box-fill:before { + content: "\eed7"; +} +.ri-logout-box-line:before { + content: "\eed8"; +} +.ri-logout-box-r-fill:before { + content: "\eed9"; +} +.ri-logout-box-r-line:before { + content: "\eeda"; +} +.ri-logout-circle-fill:before { + content: "\eedb"; +} +.ri-logout-circle-line:before { + content: "\eedc"; +} +.ri-logout-circle-r-fill:before { + content: "\eedd"; +} +.ri-logout-circle-r-line:before { + content: "\eede"; +} +.ri-luggage-cart-fill:before { + content: "\eedf"; +} +.ri-luggage-cart-line:before { + content: "\eee0"; +} +.ri-luggage-deposit-fill:before { + content: "\eee1"; +} +.ri-luggage-deposit-line:before { + content: "\eee2"; +} +.ri-lungs-fill:before { + content: "\eee3"; +} +.ri-lungs-line:before { + content: "\eee4"; +} +.ri-mac-fill:before { + content: "\eee5"; +} +.ri-mac-line:before { + content: "\eee6"; +} +.ri-macbook-fill:before { + content: "\eee7"; +} +.ri-macbook-line:before { + content: "\eee8"; +} +.ri-magic-fill:before { + content: "\eee9"; +} +.ri-magic-line:before { + content: "\eeea"; +} +.ri-mail-add-fill:before { + content: "\eeeb"; +} +.ri-mail-add-line:before { + content: "\eeec"; +} +.ri-mail-check-fill:before { + content: "\eeed"; +} +.ri-mail-check-line:before { + content: "\eeee"; +} +.ri-mail-close-fill:before { + content: "\eeef"; +} +.ri-mail-close-line:before { + content: "\eef0"; +} +.ri-mail-download-fill:before { + content: "\eef1"; +} +.ri-mail-download-line:before { + content: "\eef2"; +} +.ri-mail-fill:before { + content: "\eef3"; +} +.ri-mail-forbid-fill:before { + content: "\eef4"; +} +.ri-mail-forbid-line:before { + content: "\eef5"; +} +.ri-mail-line:before { + content: "\eef6"; +} +.ri-mail-lock-fill:before { + content: "\eef7"; +} +.ri-mail-lock-line:before { + content: "\eef8"; +} +.ri-mail-open-fill:before { + content: "\eef9"; +} +.ri-mail-open-line:before { + content: "\eefa"; +} +.ri-mail-send-fill:before { + content: "\eefb"; +} +.ri-mail-send-line:before { + content: "\eefc"; +} +.ri-mail-settings-fill:before { + content: "\eefd"; +} +.ri-mail-settings-line:before { + content: "\eefe"; +} +.ri-mail-star-fill:before { + content: "\eeff"; +} +.ri-mail-star-line:before { + content: "\ef00"; +} +.ri-mail-unread-fill:before { + content: "\ef01"; +} +.ri-mail-unread-line:before { + content: "\ef02"; +} +.ri-mail-volume-fill:before { + content: "\ef03"; +} +.ri-mail-volume-line:before { + content: "\ef04"; +} +.ri-map-2-fill:before { + content: "\ef05"; +} +.ri-map-2-line:before { + content: "\ef06"; +} +.ri-map-fill:before { + content: "\ef07"; +} +.ri-map-line:before { + content: "\ef08"; +} +.ri-map-pin-2-fill:before { + content: "\ef09"; +} +.ri-map-pin-2-line:before { + content: "\ef0a"; +} +.ri-map-pin-3-fill:before { + content: "\ef0b"; +} +.ri-map-pin-3-line:before { + content: "\ef0c"; +} +.ri-map-pin-4-fill:before { + content: "\ef0d"; +} +.ri-map-pin-4-line:before { + content: "\ef0e"; +} +.ri-map-pin-5-fill:before { + content: "\ef0f"; +} +.ri-map-pin-5-line:before { + content: "\ef10"; +} +.ri-map-pin-add-fill:before { + content: "\ef11"; +} +.ri-map-pin-add-line:before { + content: "\ef12"; +} +.ri-map-pin-fill:before { + content: "\ef13"; +} +.ri-map-pin-line:before { + content: "\ef14"; +} +.ri-map-pin-range-fill:before { + content: "\ef15"; +} +.ri-map-pin-range-line:before { + content: "\ef16"; +} +.ri-map-pin-time-fill:before { + content: "\ef17"; +} +.ri-map-pin-time-line:before { + content: "\ef18"; +} +.ri-map-pin-user-fill:before { + content: "\ef19"; +} +.ri-map-pin-user-line:before { + content: "\ef1a"; +} +.ri-mark-pen-fill:before { + content: "\ef1b"; +} +.ri-mark-pen-line:before { + content: "\ef1c"; +} +.ri-markdown-fill:before { + content: "\ef1d"; +} +.ri-markdown-line:before { + content: "\ef1e"; +} +.ri-markup-fill:before { + content: "\ef1f"; +} +.ri-markup-line:before { + content: "\ef20"; +} +.ri-mastercard-fill:before { + content: "\ef21"; +} +.ri-mastercard-line:before { + content: "\ef22"; +} +.ri-mastodon-fill:before { + content: "\ef23"; +} +.ri-mastodon-line:before { + content: "\ef24"; +} +.ri-medal-2-fill:before { + content: "\ef25"; +} +.ri-medal-2-line:before { + content: "\ef26"; +} +.ri-medal-fill:before { + content: "\ef27"; +} +.ri-medal-line:before { + content: "\ef28"; +} +.ri-medicine-bottle-fill:before { + content: "\ef29"; +} +.ri-medicine-bottle-line:before { + content: "\ef2a"; +} +.ri-medium-fill:before { + content: "\ef2b"; +} +.ri-medium-line:before { + content: "\ef2c"; +} +.ri-men-fill:before { + content: "\ef2d"; +} +.ri-men-line:before { + content: "\ef2e"; +} +.ri-mental-health-fill:before { + content: "\ef2f"; +} +.ri-mental-health-line:before { + content: "\ef30"; +} +.ri-menu-2-fill:before { + content: "\ef31"; +} +.ri-menu-2-line:before { + content: "\ef32"; +} +.ri-menu-3-fill:before { + content: "\ef33"; +} +.ri-menu-3-line:before { + content: "\ef34"; +} +.ri-menu-4-fill:before { + content: "\ef35"; +} +.ri-menu-4-line:before { + content: "\ef36"; +} +.ri-menu-5-fill:before { + content: "\ef37"; +} +.ri-menu-5-line:before { + content: "\ef38"; +} +.ri-menu-add-fill:before { + content: "\ef39"; +} +.ri-menu-add-line:before { + content: "\ef3a"; +} +.ri-menu-fill:before { + content: "\ef3b"; +} +.ri-menu-fold-fill:before { + content: "\ef3c"; +} +.ri-menu-fold-line:before { + content: "\ef3d"; +} +.ri-menu-line:before { + content: "\ef3e"; +} +.ri-menu-unfold-fill:before { + content: "\ef3f"; +} +.ri-menu-unfold-line:before { + content: "\ef40"; +} +.ri-merge-cells-horizontal:before { + content: "\ef41"; +} +.ri-merge-cells-vertical:before { + content: "\ef42"; +} +.ri-message-2-fill:before { + content: "\ef43"; +} +.ri-message-2-line:before { + content: "\ef44"; +} +.ri-message-3-fill:before { + content: "\ef45"; +} +.ri-message-3-line:before { + content: "\ef46"; +} +.ri-message-fill:before { + content: "\ef47"; +} +.ri-message-line:before { + content: "\ef48"; +} +.ri-messenger-fill:before { + content: "\ef49"; +} +.ri-messenger-line:before { + content: "\ef4a"; +} +.ri-meteor-fill:before { + content: "\ef4b"; +} +.ri-meteor-line:before { + content: "\ef4c"; +} +.ri-mic-2-fill:before { + content: "\ef4d"; +} +.ri-mic-2-line:before { + content: "\ef4e"; +} +.ri-mic-fill:before { + content: "\ef4f"; +} +.ri-mic-line:before { + content: "\ef50"; +} +.ri-mic-off-fill:before { + content: "\ef51"; +} +.ri-mic-off-line:before { + content: "\ef52"; +} +.ri-mickey-fill:before { + content: "\ef53"; +} +.ri-mickey-line:before { + content: "\ef54"; +} +.ri-microscope-fill:before { + content: "\ef55"; +} +.ri-microscope-line:before { + content: "\ef56"; +} +.ri-microsoft-fill:before { + content: "\ef57"; +} +.ri-microsoft-line:before { + content: "\ef58"; +} +.ri-mind-map:before { + content: "\ef59"; +} +.ri-mini-program-fill:before { + content: "\ef5a"; +} +.ri-mini-program-line:before { + content: "\ef5b"; +} +.ri-mist-fill:before { + content: "\ef5c"; +} +.ri-mist-line:before { + content: "\ef5d"; +} +.ri-money-cny-box-fill:before { + content: "\ef5e"; +} +.ri-money-cny-box-line:before { + content: "\ef5f"; +} +.ri-money-cny-circle-fill:before { + content: "\ef60"; +} +.ri-money-cny-circle-line:before { + content: "\ef61"; +} +.ri-money-dollar-box-fill:before { + content: "\ef62"; +} +.ri-money-dollar-box-line:before { + content: "\ef63"; +} +.ri-money-dollar-circle-fill:before { + content: "\ef64"; +} +.ri-money-dollar-circle-line:before { + content: "\ef65"; +} +.ri-money-euro-box-fill:before { + content: "\ef66"; +} +.ri-money-euro-box-line:before { + content: "\ef67"; +} +.ri-money-euro-circle-fill:before { + content: "\ef68"; +} +.ri-money-euro-circle-line:before { + content: "\ef69"; +} +.ri-money-pound-box-fill:before { + content: "\ef6a"; +} +.ri-money-pound-box-line:before { + content: "\ef6b"; +} +.ri-money-pound-circle-fill:before { + content: "\ef6c"; +} +.ri-money-pound-circle-line:before { + content: "\ef6d"; +} +.ri-moon-clear-fill:before { + content: "\ef6e"; +} +.ri-moon-clear-line:before { + content: "\ef6f"; +} +.ri-moon-cloudy-fill:before { + content: "\ef70"; +} +.ri-moon-cloudy-line:before { + content: "\ef71"; +} +.ri-moon-fill:before { + content: "\ef72"; +} +.ri-moon-foggy-fill:before { + content: "\ef73"; +} +.ri-moon-foggy-line:before { + content: "\ef74"; +} +.ri-moon-line:before { + content: "\ef75"; +} +.ri-more-2-fill:before { + content: "\ef76"; +} +.ri-more-2-line:before { + content: "\ef77"; +} +.ri-more-fill:before { + content: "\ef78"; +} +.ri-more-line:before { + content: "\ef79"; +} +.ri-motorbike-fill:before { + content: "\ef7a"; +} +.ri-motorbike-line:before { + content: "\ef7b"; +} +.ri-mouse-fill:before { + content: "\ef7c"; +} +.ri-mouse-line:before { + content: "\ef7d"; +} +.ri-movie-2-fill:before { + content: "\ef7e"; +} +.ri-movie-2-line:before { + content: "\ef7f"; +} +.ri-movie-fill:before { + content: "\ef80"; +} +.ri-movie-line:before { + content: "\ef81"; +} +.ri-music-2-fill:before { + content: "\ef82"; +} +.ri-music-2-line:before { + content: "\ef83"; +} +.ri-music-fill:before { + content: "\ef84"; +} +.ri-music-line:before { + content: "\ef85"; +} +.ri-mv-fill:before { + content: "\ef86"; +} +.ri-mv-line:before { + content: "\ef87"; +} +.ri-navigation-fill:before { + content: "\ef88"; +} +.ri-navigation-line:before { + content: "\ef89"; +} +.ri-netease-cloud-music-fill:before { + content: "\ef8a"; +} +.ri-netease-cloud-music-line:before { + content: "\ef8b"; +} +.ri-netflix-fill:before { + content: "\ef8c"; +} +.ri-netflix-line:before { + content: "\ef8d"; +} +.ri-newspaper-fill:before { + content: "\ef8e"; +} +.ri-newspaper-line:before { + content: "\ef8f"; +} +.ri-node-tree:before { + content: "\ef90"; +} +.ri-notification-2-fill:before { + content: "\ef91"; +} +.ri-notification-2-line:before { + content: "\ef92"; +} +.ri-notification-3-fill:before { + content: "\ef93"; +} +.ri-notification-3-line:before { + content: "\ef94"; +} +.ri-notification-4-fill:before { + content: "\ef95"; +} +.ri-notification-4-line:before { + content: "\ef96"; +} +.ri-notification-badge-fill:before { + content: "\ef97"; +} +.ri-notification-badge-line:before { + content: "\ef98"; +} +.ri-notification-fill:before { + content: "\ef99"; +} +.ri-notification-line:before { + content: "\ef9a"; +} +.ri-notification-off-fill:before { + content: "\ef9b"; +} +.ri-notification-off-line:before { + content: "\ef9c"; +} +.ri-npmjs-fill:before { + content: "\ef9d"; +} +.ri-npmjs-line:before { + content: "\ef9e"; +} +.ri-number-0:before { + content: "\ef9f"; +} +.ri-number-1:before { + content: "\efa0"; +} +.ri-number-2:before { + content: "\efa1"; +} +.ri-number-3:before { + content: "\efa2"; +} +.ri-number-4:before { + content: "\efa3"; +} +.ri-number-5:before { + content: "\efa4"; +} +.ri-number-6:before { + content: "\efa5"; +} +.ri-number-7:before { + content: "\efa6"; +} +.ri-number-8:before { + content: "\efa7"; +} +.ri-number-9:before { + content: "\efa8"; +} +.ri-numbers-fill:before { + content: "\efa9"; +} +.ri-numbers-line:before { + content: "\efaa"; +} +.ri-nurse-fill:before { + content: "\efab"; +} +.ri-nurse-line:before { + content: "\efac"; +} +.ri-oil-fill:before { + content: "\efad"; +} +.ri-oil-line:before { + content: "\efae"; +} +.ri-omega:before { + content: "\efaf"; +} +.ri-open-arm-fill:before { + content: "\efb0"; +} +.ri-open-arm-line:before { + content: "\efb1"; +} +.ri-open-source-fill:before { + content: "\efb2"; +} +.ri-open-source-line:before { + content: "\efb3"; +} +.ri-opera-fill:before { + content: "\efb4"; +} +.ri-opera-line:before { + content: "\efb5"; +} +.ri-order-play-fill:before { + content: "\efb6"; +} +.ri-order-play-line:before { + content: "\efb7"; +} +.ri-organization-chart:before { + content: "\efb8"; +} +.ri-outlet-2-fill:before { + content: "\efb9"; +} +.ri-outlet-2-line:before { + content: "\efba"; +} +.ri-outlet-fill:before { + content: "\efbb"; +} +.ri-outlet-line:before { + content: "\efbc"; +} +.ri-page-separator:before { + content: "\efbd"; +} +.ri-pages-fill:before { + content: "\efbe"; +} +.ri-pages-line:before { + content: "\efbf"; +} +.ri-paint-brush-fill:before { + content: "\efc0"; +} +.ri-paint-brush-line:before { + content: "\efc1"; +} +.ri-paint-fill:before { + content: "\efc2"; +} +.ri-paint-line:before { + content: "\efc3"; +} +.ri-palette-fill:before { + content: "\efc4"; +} +.ri-palette-line:before { + content: "\efc5"; +} +.ri-pantone-fill:before { + content: "\efc6"; +} +.ri-pantone-line:before { + content: "\efc7"; +} +.ri-paragraph:before { + content: "\efc8"; +} +.ri-parent-fill:before { + content: "\efc9"; +} +.ri-parent-line:before { + content: "\efca"; +} +.ri-parentheses-fill:before { + content: "\efcb"; +} +.ri-parentheses-line:before { + content: "\efcc"; +} +.ri-parking-box-fill:before { + content: "\efcd"; +} +.ri-parking-box-line:before { + content: "\efce"; +} +.ri-parking-fill:before { + content: "\efcf"; +} +.ri-parking-line:before { + content: "\efd0"; +} +.ri-passport-fill:before { + content: "\efd1"; +} +.ri-passport-line:before { + content: "\efd2"; +} +.ri-patreon-fill:before { + content: "\efd3"; +} +.ri-patreon-line:before { + content: "\efd4"; +} +.ri-pause-circle-fill:before { + content: "\efd5"; +} +.ri-pause-circle-line:before { + content: "\efd6"; +} +.ri-pause-fill:before { + content: "\efd7"; +} +.ri-pause-line:before { + content: "\efd8"; +} +.ri-pause-mini-fill:before { + content: "\efd9"; +} +.ri-pause-mini-line:before { + content: "\efda"; +} +.ri-paypal-fill:before { + content: "\efdb"; +} +.ri-paypal-line:before { + content: "\efdc"; +} +.ri-pen-nib-fill:before { + content: "\efdd"; +} +.ri-pen-nib-line:before { + content: "\efde"; +} +.ri-pencil-fill:before { + content: "\efdf"; +} +.ri-pencil-line:before { + content: "\efe0"; +} +.ri-pencil-ruler-2-fill:before { + content: "\efe1"; +} +.ri-pencil-ruler-2-line:before { + content: "\efe2"; +} +.ri-pencil-ruler-fill:before { + content: "\efe3"; +} +.ri-pencil-ruler-line:before { + content: "\efe4"; +} +.ri-percent-fill:before { + content: "\efe5"; +} +.ri-percent-line:before { + content: "\efe6"; +} +.ri-phone-camera-fill:before { + content: "\efe7"; +} +.ri-phone-camera-line:before { + content: "\efe8"; +} +.ri-phone-fill:before { + content: "\efe9"; +} +.ri-phone-find-fill:before { + content: "\efea"; +} +.ri-phone-find-line:before { + content: "\efeb"; +} +.ri-phone-line:before { + content: "\efec"; +} +.ri-phone-lock-fill:before { + content: "\efed"; +} +.ri-phone-lock-line:before { + content: "\efee"; +} +.ri-picture-in-picture-2-fill:before { + content: "\efef"; +} +.ri-picture-in-picture-2-line:before { + content: "\eff0"; +} +.ri-picture-in-picture-exit-fill:before { + content: "\eff1"; +} +.ri-picture-in-picture-exit-line:before { + content: "\eff2"; +} +.ri-picture-in-picture-fill:before { + content: "\eff3"; +} +.ri-picture-in-picture-line:before { + content: "\eff4"; +} +.ri-pie-chart-2-fill:before { + content: "\eff5"; +} +.ri-pie-chart-2-line:before { + content: "\eff6"; +} +.ri-pie-chart-box-fill:before { + content: "\eff7"; +} +.ri-pie-chart-box-line:before { + content: "\eff8"; +} +.ri-pie-chart-fill:before { + content: "\eff9"; +} +.ri-pie-chart-line:before { + content: "\effa"; +} +.ri-pin-distance-fill:before { + content: "\effb"; +} +.ri-pin-distance-line:before { + content: "\effc"; +} +.ri-ping-pong-fill:before { + content: "\effd"; +} +.ri-ping-pong-line:before { + content: "\effe"; +} +.ri-pinterest-fill:before { + content: "\efff"; +} +.ri-pinterest-line:before { + content: "\f000"; +} +.ri-pinyin-input:before { + content: "\f001"; +} +.ri-pixelfed-fill:before { + content: "\f002"; +} +.ri-pixelfed-line:before { + content: "\f003"; +} +.ri-plane-fill:before { + content: "\f004"; +} +.ri-plane-line:before { + content: "\f005"; +} +.ri-plant-fill:before { + content: "\f006"; +} +.ri-plant-line:before { + content: "\f007"; +} +.ri-play-circle-fill:before { + content: "\f008"; +} +.ri-play-circle-line:before { + content: "\f009"; +} +.ri-play-fill:before { + content: "\f00a"; +} +.ri-play-line:before { + content: "\f00b"; +} +.ri-play-list-2-fill:before { + content: "\f00c"; +} +.ri-play-list-2-line:before { + content: "\f00d"; +} +.ri-play-list-add-fill:before { + content: "\f00e"; +} +.ri-play-list-add-line:before { + content: "\f00f"; +} +.ri-play-list-fill:before { + content: "\f010"; +} +.ri-play-list-line:before { + content: "\f011"; +} +.ri-play-mini-fill:before { + content: "\f012"; +} +.ri-play-mini-line:before { + content: "\f013"; +} +.ri-playstation-fill:before { + content: "\f014"; +} +.ri-playstation-line:before { + content: "\f015"; +} +.ri-plug-2-fill:before { + content: "\f016"; +} +.ri-plug-2-line:before { + content: "\f017"; +} +.ri-plug-fill:before { + content: "\f018"; +} +.ri-plug-line:before { + content: "\f019"; +} +.ri-polaroid-2-fill:before { + content: "\f01a"; +} +.ri-polaroid-2-line:before { + content: "\f01b"; +} +.ri-polaroid-fill:before { + content: "\f01c"; +} +.ri-polaroid-line:before { + content: "\f01d"; +} +.ri-police-car-fill:before { + content: "\f01e"; +} +.ri-police-car-line:before { + content: "\f01f"; +} +.ri-price-tag-2-fill:before { + content: "\f020"; +} +.ri-price-tag-2-line:before { + content: "\f021"; +} +.ri-price-tag-3-fill:before { + content: "\f022"; +} +.ri-price-tag-3-line:before { + content: "\f023"; +} +.ri-price-tag-fill:before { + content: "\f024"; +} +.ri-price-tag-line:before { + content: "\f025"; +} +.ri-printer-cloud-fill:before { + content: "\f026"; +} +.ri-printer-cloud-line:before { + content: "\f027"; +} +.ri-printer-fill:before { + content: "\f028"; +} +.ri-printer-line:before { + content: "\f029"; +} +.ri-product-hunt-fill:before { + content: "\f02a"; +} +.ri-product-hunt-line:before { + content: "\f02b"; +} +.ri-profile-fill:before { + content: "\f02c"; +} +.ri-profile-line:before { + content: "\f02d"; +} +.ri-projector-2-fill:before { + content: "\f02e"; +} +.ri-projector-2-line:before { + content: "\f02f"; +} +.ri-projector-fill:before { + content: "\f030"; +} +.ri-projector-line:before { + content: "\f031"; +} +.ri-psychotherapy-fill:before { + content: "\f032"; +} +.ri-psychotherapy-line:before { + content: "\f033"; +} +.ri-pulse-fill:before { + content: "\f034"; +} +.ri-pulse-line:before { + content: "\f035"; +} +.ri-pushpin-2-fill:before { + content: "\f036"; +} +.ri-pushpin-2-line:before { + content: "\f037"; +} +.ri-pushpin-fill:before { + content: "\f038"; +} +.ri-pushpin-line:before { + content: "\f039"; +} +.ri-qq-fill:before { + content: "\f03a"; +} +.ri-qq-line:before { + content: "\f03b"; +} +.ri-qr-code-fill:before { + content: "\f03c"; +} +.ri-qr-code-line:before { + content: "\f03d"; +} +.ri-qr-scan-2-fill:before { + content: "\f03e"; +} +.ri-qr-scan-2-line:before { + content: "\f03f"; +} +.ri-qr-scan-fill:before { + content: "\f040"; +} +.ri-qr-scan-line:before { + content: "\f041"; +} +.ri-question-answer-fill:before { + content: "\f042"; +} +.ri-question-answer-line:before { + content: "\f043"; +} +.ri-question-fill:before { + content: "\f044"; +} +.ri-question-line:before { + content: "\f045"; +} +.ri-question-mark:before { + content: "\f046"; +} +.ri-questionnaire-fill:before { + content: "\f047"; +} +.ri-questionnaire-line:before { + content: "\f048"; +} +.ri-quill-pen-fill:before { + content: "\f049"; +} +.ri-quill-pen-line:before { + content: "\f04a"; +} +.ri-radar-fill:before { + content: "\f04b"; +} +.ri-radar-line:before { + content: "\f04c"; +} +.ri-radio-2-fill:before { + content: "\f04d"; +} +.ri-radio-2-line:before { + content: "\f04e"; +} +.ri-radio-button-fill:before { + content: "\f04f"; +} +.ri-radio-button-line:before { + content: "\f050"; +} +.ri-radio-fill:before { + content: "\f051"; +} +.ri-radio-line:before { + content: "\f052"; +} +.ri-rainbow-fill:before { + content: "\f053"; +} +.ri-rainbow-line:before { + content: "\f054"; +} +.ri-rainy-fill:before { + content: "\f055"; +} +.ri-rainy-line:before { + content: "\f056"; +} +.ri-reactjs-fill:before { + content: "\f057"; +} +.ri-reactjs-line:before { + content: "\f058"; +} +.ri-record-circle-fill:before { + content: "\f059"; +} +.ri-record-circle-line:before { + content: "\f05a"; +} +.ri-record-mail-fill:before { + content: "\f05b"; +} +.ri-record-mail-line:before { + content: "\f05c"; +} +.ri-recycle-fill:before { + content: "\f05d"; +} +.ri-recycle-line:before { + content: "\f05e"; +} +.ri-red-packet-fill:before { + content: "\f05f"; +} +.ri-red-packet-line:before { + content: "\f060"; +} +.ri-reddit-fill:before { + content: "\f061"; +} +.ri-reddit-line:before { + content: "\f062"; +} +.ri-refresh-fill:before { + content: "\f063"; +} +.ri-refresh-line:before { + content: "\f064"; +} +.ri-refund-2-fill:before { + content: "\f065"; +} +.ri-refund-2-line:before { + content: "\f066"; +} +.ri-refund-fill:before { + content: "\f067"; +} +.ri-refund-line:before { + content: "\f068"; +} +.ri-registered-fill:before { + content: "\f069"; +} +.ri-registered-line:before { + content: "\f06a"; +} +.ri-remixicon-fill:before { + content: "\f06b"; +} +.ri-remixicon-line:before { + content: "\f06c"; +} +.ri-remote-control-2-fill:before { + content: "\f06d"; +} +.ri-remote-control-2-line:before { + content: "\f06e"; +} +.ri-remote-control-fill:before { + content: "\f06f"; +} +.ri-remote-control-line:before { + content: "\f070"; +} +.ri-repeat-2-fill:before { + content: "\f071"; +} +.ri-repeat-2-line:before { + content: "\f072"; +} +.ri-repeat-fill:before { + content: "\f073"; +} +.ri-repeat-line:before { + content: "\f074"; +} +.ri-repeat-one-fill:before { + content: "\f075"; +} +.ri-repeat-one-line:before { + content: "\f076"; +} +.ri-reply-all-fill:before { + content: "\f077"; +} +.ri-reply-all-line:before { + content: "\f078"; +} +.ri-reply-fill:before { + content: "\f079"; +} +.ri-reply-line:before { + content: "\f07a"; +} +.ri-reserved-fill:before { + content: "\f07b"; +} +.ri-reserved-line:before { + content: "\f07c"; +} +.ri-rest-time-fill:before { + content: "\f07d"; +} +.ri-rest-time-line:before { + content: "\f07e"; +} +.ri-restart-fill:before { + content: "\f07f"; +} +.ri-restart-line:before { + content: "\f080"; +} +.ri-restaurant-2-fill:before { + content: "\f081"; +} +.ri-restaurant-2-line:before { + content: "\f082"; +} +.ri-restaurant-fill:before { + content: "\f083"; +} +.ri-restaurant-line:before { + content: "\f084"; +} +.ri-rewind-fill:before { + content: "\f085"; +} +.ri-rewind-line:before { + content: "\f086"; +} +.ri-rewind-mini-fill:before { + content: "\f087"; +} +.ri-rewind-mini-line:before { + content: "\f088"; +} +.ri-rhythm-fill:before { + content: "\f089"; +} +.ri-rhythm-line:before { + content: "\f08a"; +} +.ri-riding-fill:before { + content: "\f08b"; +} +.ri-riding-line:before { + content: "\f08c"; +} +.ri-road-map-fill:before { + content: "\f08d"; +} +.ri-road-map-line:before { + content: "\f08e"; +} +.ri-roadster-fill:before { + content: "\f08f"; +} +.ri-roadster-line:before { + content: "\f090"; +} +.ri-robot-fill:before { + content: "\f091"; +} +.ri-robot-line:before { + content: "\f092"; +} +.ri-rocket-2-fill:before { + content: "\f093"; +} +.ri-rocket-2-line:before { + content: "\f094"; +} +.ri-rocket-fill:before { + content: "\f095"; +} +.ri-rocket-line:before { + content: "\f096"; +} +.ri-rotate-lock-fill:before { + content: "\f097"; +} +.ri-rotate-lock-line:before { + content: "\f098"; +} +.ri-rounded-corner:before { + content: "\f099"; +} +.ri-route-fill:before { + content: "\f09a"; +} +.ri-route-line:before { + content: "\f09b"; +} +.ri-router-fill:before { + content: "\f09c"; +} +.ri-router-line:before { + content: "\f09d"; +} +.ri-rss-fill:before { + content: "\f09e"; +} +.ri-rss-line:before { + content: "\f09f"; +} +.ri-ruler-2-fill:before { + content: "\f0a0"; +} +.ri-ruler-2-line:before { + content: "\f0a1"; +} +.ri-ruler-fill:before { + content: "\f0a2"; +} +.ri-ruler-line:before { + content: "\f0a3"; +} +.ri-run-fill:before { + content: "\f0a4"; +} +.ri-run-line:before { + content: "\f0a5"; +} +.ri-safari-fill:before { + content: "\f0a6"; +} +.ri-safari-line:before { + content: "\f0a7"; +} +.ri-safe-2-fill:before { + content: "\f0a8"; +} +.ri-safe-2-line:before { + content: "\f0a9"; +} +.ri-safe-fill:before { + content: "\f0aa"; +} +.ri-safe-line:before { + content: "\f0ab"; +} +.ri-sailboat-fill:before { + content: "\f0ac"; +} +.ri-sailboat-line:before { + content: "\f0ad"; +} +.ri-save-2-fill:before { + content: "\f0ae"; +} +.ri-save-2-line:before { + content: "\f0af"; +} +.ri-save-3-fill:before { + content: "\f0b0"; +} +.ri-save-3-line:before { + content: "\f0b1"; +} +.ri-save-fill:before { + content: "\f0b2"; +} +.ri-save-line:before { + content: "\f0b3"; +} +.ri-scales-2-fill:before { + content: "\f0b4"; +} +.ri-scales-2-line:before { + content: "\f0b5"; +} +.ri-scales-3-fill:before { + content: "\f0b6"; +} +.ri-scales-3-line:before { + content: "\f0b7"; +} +.ri-scales-fill:before { + content: "\f0b8"; +} +.ri-scales-line:before { + content: "\f0b9"; +} +.ri-scan-2-fill:before { + content: "\f0ba"; +} +.ri-scan-2-line:before { + content: "\f0bb"; +} +.ri-scan-fill:before { + content: "\f0bc"; +} +.ri-scan-line:before { + content: "\f0bd"; +} +.ri-scissors-2-fill:before { + content: "\f0be"; +} +.ri-scissors-2-line:before { + content: "\f0bf"; +} +.ri-scissors-cut-fill:before { + content: "\f0c0"; +} +.ri-scissors-cut-line:before { + content: "\f0c1"; +} +.ri-scissors-fill:before { + content: "\f0c2"; +} +.ri-scissors-line:before { + content: "\f0c3"; +} +.ri-screenshot-2-fill:before { + content: "\f0c4"; +} +.ri-screenshot-2-line:before { + content: "\f0c5"; +} +.ri-screenshot-fill:before { + content: "\f0c6"; +} +.ri-screenshot-line:before { + content: "\f0c7"; +} +.ri-sd-card-fill:before { + content: "\f0c8"; +} +.ri-sd-card-line:before { + content: "\f0c9"; +} +.ri-sd-card-mini-fill:before { + content: "\f0ca"; +} +.ri-sd-card-mini-line:before { + content: "\f0cb"; +} +.ri-search-2-fill:before { + content: "\f0cc"; +} +.ri-search-2-line:before { + content: "\f0cd"; +} +.ri-search-eye-fill:before { + content: "\f0ce"; +} +.ri-search-eye-line:before { + content: "\f0cf"; +} +.ri-search-fill:before { + content: "\f0d0"; +} +.ri-search-line:before { + content: "\f0d1"; +} +.ri-secure-payment-fill:before { + content: "\f0d2"; +} +.ri-secure-payment-line:before { + content: "\f0d3"; +} +.ri-seedling-fill:before { + content: "\f0d4"; +} +.ri-seedling-line:before { + content: "\f0d5"; +} +.ri-send-backward:before { + content: "\f0d6"; +} +.ri-send-plane-2-fill:before { + content: "\f0d7"; +} +.ri-send-plane-2-line:before { + content: "\f0d8"; +} +.ri-send-plane-fill:before { + content: "\f0d9"; +} +.ri-send-plane-line:before { + content: "\f0da"; +} +.ri-send-to-back:before { + content: "\f0db"; +} +.ri-sensor-fill:before { + content: "\f0dc"; +} +.ri-sensor-line:before { + content: "\f0dd"; +} +.ri-separator:before { + content: "\f0de"; +} +.ri-server-fill:before { + content: "\f0df"; +} +.ri-server-line:before { + content: "\f0e0"; +} +.ri-service-fill:before { + content: "\f0e1"; +} +.ri-service-line:before { + content: "\f0e2"; +} +.ri-settings-2-fill:before { + content: "\f0e3"; +} +.ri-settings-2-line:before { + content: "\f0e4"; +} +.ri-settings-3-fill:before { + content: "\f0e5"; +} +.ri-settings-3-line:before { + content: "\f0e6"; +} +.ri-settings-4-fill:before { + content: "\f0e7"; +} +.ri-settings-4-line:before { + content: "\f0e8"; +} +.ri-settings-5-fill:before { + content: "\f0e9"; +} +.ri-settings-5-line:before { + content: "\f0ea"; +} +.ri-settings-6-fill:before { + content: "\f0eb"; +} +.ri-settings-6-line:before { + content: "\f0ec"; +} +.ri-settings-fill:before { + content: "\f0ed"; +} +.ri-settings-line:before { + content: "\f0ee"; +} +.ri-shape-2-fill:before { + content: "\f0ef"; +} +.ri-shape-2-line:before { + content: "\f0f0"; +} +.ri-shape-fill:before { + content: "\f0f1"; +} +.ri-shape-line:before { + content: "\f0f2"; +} +.ri-share-box-fill:before { + content: "\f0f3"; +} +.ri-share-box-line:before { + content: "\f0f4"; +} +.ri-share-circle-fill:before { + content: "\f0f5"; +} +.ri-share-circle-line:before { + content: "\f0f6"; +} +.ri-share-fill:before { + content: "\f0f7"; +} +.ri-share-forward-2-fill:before { + content: "\f0f8"; +} +.ri-share-forward-2-line:before { + content: "\f0f9"; +} +.ri-share-forward-box-fill:before { + content: "\f0fa"; +} +.ri-share-forward-box-line:before { + content: "\f0fb"; +} +.ri-share-forward-fill:before { + content: "\f0fc"; +} +.ri-share-forward-line:before { + content: "\f0fd"; +} +.ri-share-line:before { + content: "\f0fe"; +} +.ri-shield-check-fill:before { + content: "\f0ff"; +} +.ri-shield-check-line:before { + content: "\f100"; +} +.ri-shield-cross-fill:before { + content: "\f101"; +} +.ri-shield-cross-line:before { + content: "\f102"; +} +.ri-shield-fill:before { + content: "\f103"; +} +.ri-shield-flash-fill:before { + content: "\f104"; +} +.ri-shield-flash-line:before { + content: "\f105"; +} +.ri-shield-keyhole-fill:before { + content: "\f106"; +} +.ri-shield-keyhole-line:before { + content: "\f107"; +} +.ri-shield-line:before { + content: "\f108"; +} +.ri-shield-star-fill:before { + content: "\f109"; +} +.ri-shield-star-line:before { + content: "\f10a"; +} +.ri-shield-user-fill:before { + content: "\f10b"; +} +.ri-shield-user-line:before { + content: "\f10c"; +} +.ri-ship-2-fill:before { + content: "\f10d"; +} +.ri-ship-2-line:before { + content: "\f10e"; +} +.ri-ship-fill:before { + content: "\f10f"; +} +.ri-ship-line:before { + content: "\f110"; +} +.ri-shirt-fill:before { + content: "\f111"; +} +.ri-shirt-line:before { + content: "\f112"; +} +.ri-shopping-bag-2-fill:before { + content: "\f113"; +} +.ri-shopping-bag-2-line:before { + content: "\f114"; +} +.ri-shopping-bag-3-fill:before { + content: "\f115"; +} +.ri-shopping-bag-3-line:before { + content: "\f116"; +} +.ri-shopping-bag-fill:before { + content: "\f117"; +} +.ri-shopping-bag-line:before { + content: "\f118"; +} +.ri-shopping-basket-2-fill:before { + content: "\f119"; +} +.ri-shopping-basket-2-line:before { + content: "\f11a"; +} +.ri-shopping-basket-fill:before { + content: "\f11b"; +} +.ri-shopping-basket-line:before { + content: "\f11c"; +} +.ri-shopping-cart-2-fill:before { + content: "\f11d"; +} +.ri-shopping-cart-2-line:before { + content: "\f11e"; +} +.ri-shopping-cart-fill:before { + content: "\f11f"; +} +.ri-shopping-cart-line:before { + content: "\f120"; +} +.ri-showers-fill:before { + content: "\f121"; +} +.ri-showers-line:before { + content: "\f122"; +} +.ri-shuffle-fill:before { + content: "\f123"; +} +.ri-shuffle-line:before { + content: "\f124"; +} +.ri-shut-down-fill:before { + content: "\f125"; +} +.ri-shut-down-line:before { + content: "\f126"; +} +.ri-side-bar-fill:before { + content: "\f127"; +} +.ri-side-bar-line:before { + content: "\f128"; +} +.ri-signal-tower-fill:before { + content: "\f129"; +} +.ri-signal-tower-line:before { + content: "\f12a"; +} +.ri-signal-wifi-1-fill:before { + content: "\f12b"; +} +.ri-signal-wifi-1-line:before { + content: "\f12c"; +} +.ri-signal-wifi-2-fill:before { + content: "\f12d"; +} +.ri-signal-wifi-2-line:before { + content: "\f12e"; +} +.ri-signal-wifi-3-fill:before { + content: "\f12f"; +} +.ri-signal-wifi-3-line:before { + content: "\f130"; +} +.ri-signal-wifi-error-fill:before { + content: "\f131"; +} +.ri-signal-wifi-error-line:before { + content: "\f132"; +} +.ri-signal-wifi-fill:before { + content: "\f133"; +} +.ri-signal-wifi-line:before { + content: "\f134"; +} +.ri-signal-wifi-off-fill:before { + content: "\f135"; +} +.ri-signal-wifi-off-line:before { + content: "\f136"; +} +.ri-sim-card-2-fill:before { + content: "\f137"; +} +.ri-sim-card-2-line:before { + content: "\f138"; +} +.ri-sim-card-fill:before { + content: "\f139"; +} +.ri-sim-card-line:before { + content: "\f13a"; +} +.ri-single-quotes-l:before { + content: "\f13b"; +} +.ri-single-quotes-r:before { + content: "\f13c"; +} +.ri-sip-fill:before { + content: "\f13d"; +} +.ri-sip-line:before { + content: "\f13e"; +} +.ri-skip-back-fill:before { + content: "\f13f"; +} +.ri-skip-back-line:before { + content: "\f140"; +} +.ri-skip-back-mini-fill:before { + content: "\f141"; +} +.ri-skip-back-mini-line:before { + content: "\f142"; +} +.ri-skip-forward-fill:before { + content: "\f143"; +} +.ri-skip-forward-line:before { + content: "\f144"; +} +.ri-skip-forward-mini-fill:before { + content: "\f145"; +} +.ri-skip-forward-mini-line:before { + content: "\f146"; +} +.ri-skull-2-fill:before { + content: "\f147"; +} +.ri-skull-2-line:before { + content: "\f148"; +} +.ri-skull-fill:before { + content: "\f149"; +} +.ri-skull-line:before { + content: "\f14a"; +} +.ri-skype-fill:before { + content: "\f14b"; +} +.ri-skype-line:before { + content: "\f14c"; +} +.ri-slack-fill:before { + content: "\f14d"; +} +.ri-slack-line:before { + content: "\f14e"; +} +.ri-slice-fill:before { + content: "\f14f"; +} +.ri-slice-line:before { + content: "\f150"; +} +.ri-slideshow-2-fill:before { + content: "\f151"; +} +.ri-slideshow-2-line:before { + content: "\f152"; +} +.ri-slideshow-3-fill:before { + content: "\f153"; +} +.ri-slideshow-3-line:before { + content: "\f154"; +} +.ri-slideshow-4-fill:before { + content: "\f155"; +} +.ri-slideshow-4-line:before { + content: "\f156"; +} +.ri-slideshow-fill:before { + content: "\f157"; +} +.ri-slideshow-line:before { + content: "\f158"; +} +.ri-smartphone-fill:before { + content: "\f159"; +} +.ri-smartphone-line:before { + content: "\f15a"; +} +.ri-snapchat-fill:before { + content: "\f15b"; +} +.ri-snapchat-line:before { + content: "\f15c"; +} +.ri-snowy-fill:before { + content: "\f15d"; +} +.ri-snowy-line:before { + content: "\f15e"; +} +.ri-sort-asc:before { + content: "\f15f"; +} +.ri-sort-desc:before { + content: "\f160"; +} +.ri-sound-module-fill:before { + content: "\f161"; +} +.ri-sound-module-line:before { + content: "\f162"; +} +.ri-soundcloud-fill:before { + content: "\f163"; +} +.ri-soundcloud-line:before { + content: "\f164"; +} +.ri-space-ship-fill:before { + content: "\f165"; +} +.ri-space-ship-line:before { + content: "\f166"; +} +.ri-space:before { + content: "\f167"; +} +.ri-spam-2-fill:before { + content: "\f168"; +} +.ri-spam-2-line:before { + content: "\f169"; +} +.ri-spam-3-fill:before { + content: "\f16a"; +} +.ri-spam-3-line:before { + content: "\f16b"; +} +.ri-spam-fill:before { + content: "\f16c"; +} +.ri-spam-line:before { + content: "\f16d"; +} +.ri-speaker-2-fill:before { + content: "\f16e"; +} +.ri-speaker-2-line:before { + content: "\f16f"; +} +.ri-speaker-3-fill:before { + content: "\f170"; +} +.ri-speaker-3-line:before { + content: "\f171"; +} +.ri-speaker-fill:before { + content: "\f172"; +} +.ri-speaker-line:before { + content: "\f173"; +} +.ri-spectrum-fill:before { + content: "\f174"; +} +.ri-spectrum-line:before { + content: "\f175"; +} +.ri-speed-fill:before { + content: "\f176"; +} +.ri-speed-line:before { + content: "\f177"; +} +.ri-speed-mini-fill:before { + content: "\f178"; +} +.ri-speed-mini-line:before { + content: "\f179"; +} +.ri-split-cells-horizontal:before { + content: "\f17a"; +} +.ri-split-cells-vertical:before { + content: "\f17b"; +} +.ri-spotify-fill:before { + content: "\f17c"; +} +.ri-spotify-line:before { + content: "\f17d"; +} +.ri-spy-fill:before { + content: "\f17e"; +} +.ri-spy-line:before { + content: "\f17f"; +} +.ri-stack-fill:before { + content: "\f180"; +} +.ri-stack-line:before { + content: "\f181"; +} +.ri-stack-overflow-fill:before { + content: "\f182"; +} +.ri-stack-overflow-line:before { + content: "\f183"; +} +.ri-stackshare-fill:before { + content: "\f184"; +} +.ri-stackshare-line:before { + content: "\f185"; +} +.ri-star-fill:before { + content: "\f186"; +} +.ri-star-half-fill:before { + content: "\f187"; +} +.ri-star-half-line:before { + content: "\f188"; +} +.ri-star-half-s-fill:before { + content: "\f189"; +} +.ri-star-half-s-line:before { + content: "\f18a"; +} +.ri-star-line:before { + content: "\f18b"; +} +.ri-star-s-fill:before { + content: "\f18c"; +} +.ri-star-s-line:before { + content: "\f18d"; +} +.ri-star-smile-fill:before { + content: "\f18e"; +} +.ri-star-smile-line:before { + content: "\f18f"; +} +.ri-steam-fill:before { + content: "\f190"; +} +.ri-steam-line:before { + content: "\f191"; +} +.ri-steering-2-fill:before { + content: "\f192"; +} +.ri-steering-2-line:before { + content: "\f193"; +} +.ri-steering-fill:before { + content: "\f194"; +} +.ri-steering-line:before { + content: "\f195"; +} +.ri-stethoscope-fill:before { + content: "\f196"; +} +.ri-stethoscope-line:before { + content: "\f197"; +} +.ri-sticky-note-2-fill:before { + content: "\f198"; +} +.ri-sticky-note-2-line:before { + content: "\f199"; +} +.ri-sticky-note-fill:before { + content: "\f19a"; +} +.ri-sticky-note-line:before { + content: "\f19b"; +} +.ri-stock-fill:before { + content: "\f19c"; +} +.ri-stock-line:before { + content: "\f19d"; +} +.ri-stop-circle-fill:before { + content: "\f19e"; +} +.ri-stop-circle-line:before { + content: "\f19f"; +} +.ri-stop-fill:before { + content: "\f1a0"; +} +.ri-stop-line:before { + content: "\f1a1"; +} +.ri-stop-mini-fill:before { + content: "\f1a2"; +} +.ri-stop-mini-line:before { + content: "\f1a3"; +} +.ri-store-2-fill:before { + content: "\f1a4"; +} +.ri-store-2-line:before { + content: "\f1a5"; +} +.ri-store-3-fill:before { + content: "\f1a6"; +} +.ri-store-3-line:before { + content: "\f1a7"; +} +.ri-store-fill:before { + content: "\f1a8"; +} +.ri-store-line:before { + content: "\f1a9"; +} +.ri-strikethrough-2:before { + content: "\f1aa"; +} +.ri-strikethrough:before { + content: "\f1ab"; +} +.ri-subscript-2:before { + content: "\f1ac"; +} +.ri-subscript:before { + content: "\f1ad"; +} +.ri-subtract-fill:before { + content: "\f1ae"; +} +.ri-subtract-line:before { + content: "\f1af"; +} +.ri-subway-fill:before { + content: "\f1b0"; +} +.ri-subway-line:before { + content: "\f1b1"; +} +.ri-subway-wifi-fill:before { + content: "\f1b2"; +} +.ri-subway-wifi-line:before { + content: "\f1b3"; +} +.ri-suitcase-2-fill:before { + content: "\f1b4"; +} +.ri-suitcase-2-line:before { + content: "\f1b5"; +} +.ri-suitcase-3-fill:before { + content: "\f1b6"; +} +.ri-suitcase-3-line:before { + content: "\f1b7"; +} +.ri-suitcase-fill:before { + content: "\f1b8"; +} +.ri-suitcase-line:before { + content: "\f1b9"; +} +.ri-sun-cloudy-fill:before { + content: "\f1ba"; +} +.ri-sun-cloudy-line:before { + content: "\f1bb"; +} +.ri-sun-fill:before { + content: "\f1bc"; +} +.ri-sun-foggy-fill:before { + content: "\f1bd"; +} +.ri-sun-foggy-line:before { + content: "\f1be"; +} +.ri-sun-line:before { + content: "\f1bf"; +} +.ri-superscript-2:before { + content: "\f1c0"; +} +.ri-superscript:before { + content: "\f1c1"; +} +.ri-surgical-mask-fill:before { + content: "\f1c2"; +} +.ri-surgical-mask-line:before { + content: "\f1c3"; +} +.ri-surround-sound-fill:before { + content: "\f1c4"; +} +.ri-surround-sound-line:before { + content: "\f1c5"; +} +.ri-survey-fill:before { + content: "\f1c6"; +} +.ri-survey-line:before { + content: "\f1c7"; +} +.ri-swap-box-fill:before { + content: "\f1c8"; +} +.ri-swap-box-line:before { + content: "\f1c9"; +} +.ri-swap-fill:before { + content: "\f1ca"; +} +.ri-swap-line:before { + content: "\f1cb"; +} +.ri-switch-fill:before { + content: "\f1cc"; +} +.ri-switch-line:before { + content: "\f1cd"; +} +.ri-sword-fill:before { + content: "\f1ce"; +} +.ri-sword-line:before { + content: "\f1cf"; +} +.ri-syringe-fill:before { + content: "\f1d0"; +} +.ri-syringe-line:before { + content: "\f1d1"; +} +.ri-t-box-fill:before { + content: "\f1d2"; +} +.ri-t-box-line:before { + content: "\f1d3"; +} +.ri-t-shirt-2-fill:before { + content: "\f1d4"; +} +.ri-t-shirt-2-line:before { + content: "\f1d5"; +} +.ri-t-shirt-air-fill:before { + content: "\f1d6"; +} +.ri-t-shirt-air-line:before { + content: "\f1d7"; +} +.ri-t-shirt-fill:before { + content: "\f1d8"; +} +.ri-t-shirt-line:before { + content: "\f1d9"; +} +.ri-table-2:before { + content: "\f1da"; +} +.ri-table-alt-fill:before { + content: "\f1db"; +} +.ri-table-alt-line:before { + content: "\f1dc"; +} +.ri-table-fill:before { + content: "\f1dd"; +} +.ri-table-line:before { + content: "\f1de"; +} +.ri-tablet-fill:before { + content: "\f1df"; +} +.ri-tablet-line:before { + content: "\f1e0"; +} +.ri-takeaway-fill:before { + content: "\f1e1"; +} +.ri-takeaway-line:before { + content: "\f1e2"; +} +.ri-taobao-fill:before { + content: "\f1e3"; +} +.ri-taobao-line:before { + content: "\f1e4"; +} +.ri-tape-fill:before { + content: "\f1e5"; +} +.ri-tape-line:before { + content: "\f1e6"; +} +.ri-task-fill:before { + content: "\f1e7"; +} +.ri-task-line:before { + content: "\f1e8"; +} +.ri-taxi-fill:before { + content: "\f1e9"; +} +.ri-taxi-line:before { + content: "\f1ea"; +} +.ri-taxi-wifi-fill:before { + content: "\f1eb"; +} +.ri-taxi-wifi-line:before { + content: "\f1ec"; +} +.ri-team-fill:before { + content: "\f1ed"; +} +.ri-team-line:before { + content: "\f1ee"; +} +.ri-telegram-fill:before { + content: "\f1ef"; +} +.ri-telegram-line:before { + content: "\f1f0"; +} +.ri-temp-cold-fill:before { + content: "\f1f1"; +} +.ri-temp-cold-line:before { + content: "\f1f2"; +} +.ri-temp-hot-fill:before { + content: "\f1f3"; +} +.ri-temp-hot-line:before { + content: "\f1f4"; +} +.ri-terminal-box-fill:before { + content: "\f1f5"; +} +.ri-terminal-box-line:before { + content: "\f1f6"; +} +.ri-terminal-fill:before { + content: "\f1f7"; +} +.ri-terminal-line:before { + content: "\f1f8"; +} +.ri-terminal-window-fill:before { + content: "\f1f9"; +} +.ri-terminal-window-line:before { + content: "\f1fa"; +} +.ri-test-tube-fill:before { + content: "\f1fb"; +} +.ri-test-tube-line:before { + content: "\f1fc"; +} +.ri-text-direction-l:before { + content: "\f1fd"; +} +.ri-text-direction-r:before { + content: "\f1fe"; +} +.ri-text-spacing:before { + content: "\f1ff"; +} +.ri-text-wrap:before { + content: "\f200"; +} +.ri-text:before { + content: "\f201"; +} +.ri-thermometer-fill:before { + content: "\f202"; +} +.ri-thermometer-line:before { + content: "\f203"; +} +.ri-thumb-down-fill:before { + content: "\f204"; +} +.ri-thumb-down-line:before { + content: "\f205"; +} +.ri-thumb-up-fill:before { + content: "\f206"; +} +.ri-thumb-up-line:before { + content: "\f207"; +} +.ri-thunderstorms-fill:before { + content: "\f208"; +} +.ri-thunderstorms-line:before { + content: "\f209"; +} +.ri-ticket-2-fill:before { + content: "\f20a"; +} +.ri-ticket-2-line:before { + content: "\f20b"; +} +.ri-ticket-fill:before { + content: "\f20c"; +} +.ri-ticket-line:before { + content: "\f20d"; +} +.ri-time-fill:before { + content: "\f20e"; +} +.ri-time-line:before { + content: "\f20f"; +} +.ri-timer-2-fill:before { + content: "\f210"; +} +.ri-timer-2-line:before { + content: "\f211"; +} +.ri-timer-fill:before { + content: "\f212"; +} +.ri-timer-flash-fill:before { + content: "\f213"; +} +.ri-timer-flash-line:before { + content: "\f214"; +} +.ri-timer-line:before { + content: "\f215"; +} +.ri-todo-fill:before { + content: "\f216"; +} +.ri-todo-line:before { + content: "\f217"; +} +.ri-toggle-fill:before { + content: "\f218"; +} +.ri-toggle-line:before { + content: "\f219"; +} +.ri-tools-fill:before { + content: "\f21a"; +} +.ri-tools-line:before { + content: "\f21b"; +} +.ri-tornado-fill:before { + content: "\f21c"; +} +.ri-tornado-line:before { + content: "\f21d"; +} +.ri-trademark-fill:before { + content: "\f21e"; +} +.ri-trademark-line:before { + content: "\f21f"; +} +.ri-traffic-light-fill:before { + content: "\f220"; +} +.ri-traffic-light-line:before { + content: "\f221"; +} +.ri-train-fill:before { + content: "\f222"; +} +.ri-train-line:before { + content: "\f223"; +} +.ri-train-wifi-fill:before { + content: "\f224"; +} +.ri-train-wifi-line:before { + content: "\f225"; +} +.ri-translate-2:before { + content: "\f226"; +} +.ri-translate:before { + content: "\f227"; +} +.ri-travesti-fill:before { + content: "\f228"; +} +.ri-travesti-line:before { + content: "\f229"; +} +.ri-treasure-map-fill:before { + content: "\f22a"; +} +.ri-treasure-map-line:before { + content: "\f22b"; +} +.ri-trello-fill:before { + content: "\f22c"; +} +.ri-trello-line:before { + content: "\f22d"; +} +.ri-trophy-fill:before { + content: "\f22e"; +} +.ri-trophy-line:before { + content: "\f22f"; +} +.ri-truck-fill:before { + content: "\f230"; +} +.ri-truck-line:before { + content: "\f231"; +} +.ri-tumblr-fill:before { + content: "\f232"; +} +.ri-tumblr-line:before { + content: "\f233"; +} +.ri-tv-2-fill:before { + content: "\f234"; +} +.ri-tv-2-line:before { + content: "\f235"; +} +.ri-tv-fill:before { + content: "\f236"; +} +.ri-tv-line:before { + content: "\f237"; +} +.ri-twitch-fill:before { + content: "\f238"; +} +.ri-twitch-line:before { + content: "\f239"; +} +.ri-twitter-fill:before { + content: "\f23a"; +} +.ri-twitter-line:before { + content: "\f23b"; +} +.ri-typhoon-fill:before { + content: "\f23c"; +} +.ri-typhoon-line:before { + content: "\f23d"; +} +.ri-u-disk-fill:before { + content: "\f23e"; +} +.ri-u-disk-line:before { + content: "\f23f"; +} +.ri-ubuntu-fill:before { + content: "\f240"; +} +.ri-ubuntu-line:before { + content: "\f241"; +} +.ri-umbrella-fill:before { + content: "\f242"; +} +.ri-umbrella-line:before { + content: "\f243"; +} +.ri-underline:before { + content: "\f244"; +} +.ri-uninstall-fill:before { + content: "\f245"; +} +.ri-uninstall-line:before { + content: "\f246"; +} +.ri-unsplash-fill:before { + content: "\f247"; +} +.ri-unsplash-line:before { + content: "\f248"; +} +.ri-upload-2-fill:before { + content: "\f249"; +} +.ri-upload-2-line:before { + content: "\f24a"; +} +.ri-upload-cloud-2-fill:before { + content: "\f24b"; +} +.ri-upload-cloud-2-line:before { + content: "\f24c"; +} +.ri-upload-cloud-fill:before { + content: "\f24d"; +} +.ri-upload-cloud-line:before { + content: "\f24e"; +} +.ri-upload-fill:before { + content: "\f24f"; +} +.ri-upload-line:before { + content: "\f250"; +} +.ri-usb-fill:before { + content: "\f251"; +} +.ri-usb-line:before { + content: "\f252"; +} +.ri-user-2-fill:before { + content: "\f253"; +} +.ri-user-2-line:before { + content: "\f254"; +} +.ri-user-3-fill:before { + content: "\f255"; +} +.ri-user-3-line:before { + content: "\f256"; +} +.ri-user-4-fill:before { + content: "\f257"; +} +.ri-user-4-line:before { + content: "\f258"; +} +.ri-user-5-fill:before { + content: "\f259"; +} +.ri-user-5-line:before { + content: "\f25a"; +} +.ri-user-6-fill:before { + content: "\f25b"; +} +.ri-user-6-line:before { + content: "\f25c"; +} +.ri-user-add-fill:before { + content: "\f25d"; +} +.ri-user-add-line:before { + content: "\f25e"; +} +.ri-user-fill:before { + content: "\f25f"; +} +.ri-user-follow-fill:before { + content: "\f260"; +} +.ri-user-follow-line:before { + content: "\f261"; +} +.ri-user-heart-fill:before { + content: "\f262"; +} +.ri-user-heart-line:before { + content: "\f263"; +} +.ri-user-line:before { + content: "\f264"; +} +.ri-user-location-fill:before { + content: "\f265"; +} +.ri-user-location-line:before { + content: "\f266"; +} +.ri-user-received-2-fill:before { + content: "\f267"; +} +.ri-user-received-2-line:before { + content: "\f268"; +} +.ri-user-received-fill:before { + content: "\f269"; +} +.ri-user-received-line:before { + content: "\f26a"; +} +.ri-user-search-fill:before { + content: "\f26b"; +} +.ri-user-search-line:before { + content: "\f26c"; +} +.ri-user-settings-fill:before { + content: "\f26d"; +} +.ri-user-settings-line:before { + content: "\f26e"; +} +.ri-user-shared-2-fill:before { + content: "\f26f"; +} +.ri-user-shared-2-line:before { + content: "\f270"; +} +.ri-user-shared-fill:before { + content: "\f271"; +} +.ri-user-shared-line:before { + content: "\f272"; +} +.ri-user-smile-fill:before { + content: "\f273"; +} +.ri-user-smile-line:before { + content: "\f274"; +} +.ri-user-star-fill:before { + content: "\f275"; +} +.ri-user-star-line:before { + content: "\f276"; +} +.ri-user-unfollow-fill:before { + content: "\f277"; +} +.ri-user-unfollow-line:before { + content: "\f278"; +} +.ri-user-voice-fill:before { + content: "\f279"; +} +.ri-user-voice-line:before { + content: "\f27a"; +} +.ri-video-add-fill:before { + content: "\f27b"; +} +.ri-video-add-line:before { + content: "\f27c"; +} +.ri-video-chat-fill:before { + content: "\f27d"; +} +.ri-video-chat-line:before { + content: "\f27e"; +} +.ri-video-download-fill:before { + content: "\f27f"; +} +.ri-video-download-line:before { + content: "\f280"; +} +.ri-video-fill:before { + content: "\f281"; +} +.ri-video-line:before { + content: "\f282"; +} +.ri-video-upload-fill:before { + content: "\f283"; +} +.ri-video-upload-line:before { + content: "\f284"; +} +.ri-vidicon-2-fill:before { + content: "\f285"; +} +.ri-vidicon-2-line:before { + content: "\f286"; +} +.ri-vidicon-fill:before { + content: "\f287"; +} +.ri-vidicon-line:before { + content: "\f288"; +} +.ri-vimeo-fill:before { + content: "\f289"; +} +.ri-vimeo-line:before { + content: "\f28a"; +} +.ri-vip-crown-2-fill:before { + content: "\f28b"; +} +.ri-vip-crown-2-line:before { + content: "\f28c"; +} +.ri-vip-crown-fill:before { + content: "\f28d"; +} +.ri-vip-crown-line:before { + content: "\f28e"; +} +.ri-vip-diamond-fill:before { + content: "\f28f"; +} +.ri-vip-diamond-line:before { + content: "\f290"; +} +.ri-vip-fill:before { + content: "\f291"; +} +.ri-vip-line:before { + content: "\f292"; +} +.ri-virus-fill:before { + content: "\f293"; +} +.ri-virus-line:before { + content: "\f294"; +} +.ri-visa-fill:before { + content: "\f295"; +} +.ri-visa-line:before { + content: "\f296"; +} +.ri-voice-recognition-fill:before { + content: "\f297"; +} +.ri-voice-recognition-line:before { + content: "\f298"; +} +.ri-voiceprint-fill:before { + content: "\f299"; +} +.ri-voiceprint-line:before { + content: "\f29a"; +} +.ri-volume-down-fill:before { + content: "\f29b"; +} +.ri-volume-down-line:before { + content: "\f29c"; +} +.ri-volume-mute-fill:before { + content: "\f29d"; +} +.ri-volume-mute-line:before { + content: "\f29e"; +} +.ri-volume-off-vibrate-fill:before { + content: "\f29f"; +} +.ri-volume-off-vibrate-line:before { + content: "\f2a0"; +} +.ri-volume-up-fill:before { + content: "\f2a1"; +} +.ri-volume-up-line:before { + content: "\f2a2"; +} +.ri-volume-vibrate-fill:before { + content: "\f2a3"; +} +.ri-volume-vibrate-line:before { + content: "\f2a4"; +} +.ri-vuejs-fill:before { + content: "\f2a5"; +} +.ri-vuejs-line:before { + content: "\f2a6"; +} +.ri-walk-fill:before { + content: "\f2a7"; +} +.ri-walk-line:before { + content: "\f2a8"; +} +.ri-wallet-2-fill:before { + content: "\f2a9"; +} +.ri-wallet-2-line:before { + content: "\f2aa"; +} +.ri-wallet-3-fill:before { + content: "\f2ab"; +} +.ri-wallet-3-line:before { + content: "\f2ac"; +} +.ri-wallet-fill:before { + content: "\f2ad"; +} +.ri-wallet-line:before { + content: "\f2ae"; +} +.ri-water-flash-fill:before { + content: "\f2af"; +} +.ri-water-flash-line:before { + content: "\f2b0"; +} +.ri-webcam-fill:before { + content: "\f2b1"; +} +.ri-webcam-line:before { + content: "\f2b2"; +} +.ri-wechat-2-fill:before { + content: "\f2b3"; +} +.ri-wechat-2-line:before { + content: "\f2b4"; +} +.ri-wechat-fill:before { + content: "\f2b5"; +} +.ri-wechat-line:before { + content: "\f2b6"; +} +.ri-wechat-pay-fill:before { + content: "\f2b7"; +} +.ri-wechat-pay-line:before { + content: "\f2b8"; +} +.ri-weibo-fill:before { + content: "\f2b9"; +} +.ri-weibo-line:before { + content: "\f2ba"; +} +.ri-whatsapp-fill:before { + content: "\f2bb"; +} +.ri-whatsapp-line:before { + content: "\f2bc"; +} +.ri-wheelchair-fill:before { + content: "\f2bd"; +} +.ri-wheelchair-line:before { + content: "\f2be"; +} +.ri-wifi-fill:before { + content: "\f2bf"; +} +.ri-wifi-line:before { + content: "\f2c0"; +} +.ri-wifi-off-fill:before { + content: "\f2c1"; +} +.ri-wifi-off-line:before { + content: "\f2c2"; +} +.ri-window-2-fill:before { + content: "\f2c3"; +} +.ri-window-2-line:before { + content: "\f2c4"; +} +.ri-window-fill:before { + content: "\f2c5"; +} +.ri-window-line:before { + content: "\f2c6"; +} +.ri-windows-fill:before { + content: "\f2c7"; +} +.ri-windows-line:before { + content: "\f2c8"; +} +.ri-windy-fill:before { + content: "\f2c9"; +} +.ri-windy-line:before { + content: "\f2ca"; +} +.ri-wireless-charging-fill:before { + content: "\f2cb"; +} +.ri-wireless-charging-line:before { + content: "\f2cc"; +} +.ri-women-fill:before { + content: "\f2cd"; +} +.ri-women-line:before { + content: "\f2ce"; +} +.ri-wubi-input:before { + content: "\f2cf"; +} +.ri-xbox-fill:before { + content: "\f2d0"; +} +.ri-xbox-line:before { + content: "\f2d1"; +} +.ri-xing-fill:before { + content: "\f2d2"; +} +.ri-xing-line:before { + content: "\f2d3"; +} +.ri-youtube-fill:before { + content: "\f2d4"; +} +.ri-youtube-line:before { + content: "\f2d5"; +} +.ri-zcool-fill:before { + content: "\f2d6"; +} +.ri-zcool-line:before { + content: "\f2d7"; +} +.ri-zhihu-fill:before { + content: "\f2d8"; +} +.ri-zhihu-line:before { + content: "\f2d9"; +} +.ri-zoom-in-fill:before { + content: "\f2da"; +} +.ri-zoom-in-line:before { + content: "\f2db"; +} +.ri-zoom-out-fill:before { + content: "\f2dc"; +} +.ri-zoom-out-line:before { + content: "\f2dd"; +} +.ri-zzz-fill:before { + content: "\f2de"; +} +.ri-zzz-line:before { + content: "\f2df"; +} diff --git a/public/images/android.svg b/public/images/android.svg new file mode 100644 index 0000000..e007f3b --- /dev/null +++ b/public/images/android.svg @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/apple.svg b/public/images/apple.svg new file mode 100644 index 0000000..f7ada0e --- /dev/null +++ b/public/images/apple.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/images/avatar/1.jpg b/public/images/avatar/1.jpg new file mode 100644 index 0000000..b9696f3 Binary files /dev/null and b/public/images/avatar/1.jpg differ diff --git a/public/images/avatar/10.jpg b/public/images/avatar/10.jpg new file mode 100644 index 0000000..b9696f3 Binary files /dev/null and b/public/images/avatar/10.jpg differ diff --git a/public/images/avatar/11.jpg b/public/images/avatar/11.jpg new file mode 100644 index 0000000..b9696f3 Binary files /dev/null and b/public/images/avatar/11.jpg differ diff --git a/public/images/avatar/2.jpg b/public/images/avatar/2.jpg new file mode 100644 index 0000000..b9696f3 Binary files /dev/null and b/public/images/avatar/2.jpg differ diff --git a/public/images/avatar/3.jpg b/public/images/avatar/3.jpg new file mode 100644 index 0000000..b9696f3 Binary files /dev/null and b/public/images/avatar/3.jpg differ diff --git a/public/images/avatar/4.jpg b/public/images/avatar/4.jpg new file mode 100644 index 0000000..b9696f3 Binary files /dev/null and b/public/images/avatar/4.jpg differ diff --git a/public/images/avatar/5.jpg b/public/images/avatar/5.jpg new file mode 100644 index 0000000..b9696f3 Binary files /dev/null and b/public/images/avatar/5.jpg differ diff --git a/public/images/avatar/6.jpg b/public/images/avatar/6.jpg new file mode 100644 index 0000000..3b0a9b1 Binary files /dev/null and b/public/images/avatar/6.jpg differ diff --git a/public/images/avatar/7.jpg b/public/images/avatar/7.jpg new file mode 100644 index 0000000..b9696f3 Binary files /dev/null and b/public/images/avatar/7.jpg differ diff --git a/public/images/avatar/8.jpg b/public/images/avatar/8.jpg new file mode 100644 index 0000000..b9696f3 Binary files /dev/null and b/public/images/avatar/8.jpg differ diff --git a/public/images/avatar/9.jpg b/public/images/avatar/9.jpg new file mode 100644 index 0000000..b9696f3 Binary files /dev/null and b/public/images/avatar/9.jpg differ diff --git a/public/images/cc/amazon.png b/public/images/cc/amazon.png new file mode 100644 index 0000000..f512aee Binary files /dev/null and b/public/images/cc/amazon.png differ diff --git a/public/images/cc/american-express.png b/public/images/cc/american-express.png new file mode 100644 index 0000000..9f2c18f Binary files /dev/null and b/public/images/cc/american-express.png differ diff --git a/public/images/cc/ebay.png b/public/images/cc/ebay.png new file mode 100644 index 0000000..764a35d Binary files /dev/null and b/public/images/cc/ebay.png differ diff --git a/public/images/cc/mastercard.png b/public/images/cc/mastercard.png new file mode 100644 index 0000000..f8ac0eb Binary files /dev/null and b/public/images/cc/mastercard.png differ diff --git a/public/images/cc/payoneer.png b/public/images/cc/payoneer.png new file mode 100644 index 0000000..24a1d9e Binary files /dev/null and b/public/images/cc/payoneer.png differ diff --git a/public/images/cc/paypal.png b/public/images/cc/paypal.png new file mode 100644 index 0000000..b7de303 Binary files /dev/null and b/public/images/cc/paypal.png differ diff --git a/public/images/cc/visa.png b/public/images/cc/visa.png new file mode 100644 index 0000000..0cef1ef Binary files /dev/null and b/public/images/cc/visa.png differ diff --git a/public/images/demo/create-invoice.jpg b/public/images/demo/create-invoice.jpg new file mode 100644 index 0000000..ebb545b Binary files /dev/null and b/public/images/demo/create-invoice.jpg differ diff --git a/public/images/demo/dashboard.jpg b/public/images/demo/dashboard.jpg new file mode 100644 index 0000000..dce56fb Binary files /dev/null and b/public/images/demo/dashboard.jpg differ diff --git a/public/images/demo/email-verification.jpg b/public/images/demo/email-verification.jpg new file mode 100644 index 0000000..d75f6bc Binary files /dev/null and b/public/images/demo/email-verification.jpg differ diff --git a/public/images/demo/intez.jpg b/public/images/demo/intez.jpg new file mode 100644 index 0000000..51bf7be Binary files /dev/null and b/public/images/demo/intez.jpg differ diff --git a/public/images/demo/invoice.jpg b/public/images/demo/invoice.jpg new file mode 100644 index 0000000..b51ecf5 Binary files /dev/null and b/public/images/demo/invoice.jpg differ diff --git a/public/images/demo/locked.jpg b/public/images/demo/locked.jpg new file mode 100644 index 0000000..181b69e Binary files /dev/null and b/public/images/demo/locked.jpg differ diff --git a/public/images/demo/notification.jpg b/public/images/demo/notification.jpg new file mode 100644 index 0000000..0d81b45 Binary files /dev/null and b/public/images/demo/notification.jpg differ diff --git a/public/images/demo/otp-1.jpg b/public/images/demo/otp-1.jpg new file mode 100644 index 0000000..0cd14c3 Binary files /dev/null and b/public/images/demo/otp-1.jpg differ diff --git a/public/images/demo/otp-2.jpg b/public/images/demo/otp-2.jpg new file mode 100644 index 0000000..88ae915 Binary files /dev/null and b/public/images/demo/otp-2.jpg differ diff --git a/public/images/demo/page-404.jpg b/public/images/demo/page-404.jpg new file mode 100644 index 0000000..85c20b7 Binary files /dev/null and b/public/images/demo/page-404.jpg differ diff --git a/public/images/demo/payment.jpg b/public/images/demo/payment.jpg new file mode 100644 index 0000000..a7d4c6d Binary files /dev/null and b/public/images/demo/payment.jpg differ diff --git a/public/images/demo/profile.jpg b/public/images/demo/profile.jpg new file mode 100644 index 0000000..379df3c Binary files /dev/null and b/public/images/demo/profile.jpg differ diff --git a/public/images/demo/reset.jpg b/public/images/demo/reset.jpg new file mode 100644 index 0000000..f553ae5 Binary files /dev/null and b/public/images/demo/reset.jpg differ diff --git a/public/images/demo/settings-activity.jpg b/public/images/demo/settings-activity.jpg new file mode 100644 index 0000000..c29808d Binary files /dev/null and b/public/images/demo/settings-activity.jpg differ diff --git a/public/images/demo/settings-api.jpg b/public/images/demo/settings-api.jpg new file mode 100644 index 0000000..a9907b3 Binary files /dev/null and b/public/images/demo/settings-api.jpg differ diff --git a/public/images/demo/settings-application.jpg b/public/images/demo/settings-application.jpg new file mode 100644 index 0000000..efee5a7 Binary files /dev/null and b/public/images/demo/settings-application.jpg differ diff --git a/public/images/demo/settings-payment-method.jpg b/public/images/demo/settings-payment-method.jpg new file mode 100644 index 0000000..8a0ca76 Binary files /dev/null and b/public/images/demo/settings-payment-method.jpg differ diff --git a/public/images/demo/settings-profile.jpg b/public/images/demo/settings-profile.jpg new file mode 100644 index 0000000..f1db802 Binary files /dev/null and b/public/images/demo/settings-profile.jpg differ diff --git a/public/images/demo/settings-security.jpg b/public/images/demo/settings-security.jpg new file mode 100644 index 0000000..e8b3497 Binary files /dev/null and b/public/images/demo/settings-security.jpg differ diff --git a/public/images/demo/signin.jpg b/public/images/demo/signin.jpg new file mode 100644 index 0000000..2f18d7f Binary files /dev/null and b/public/images/demo/signin.jpg differ diff --git a/public/images/demo/signup.jpg b/public/images/demo/signup.jpg new file mode 100644 index 0000000..4aa0372 Binary files /dev/null and b/public/images/demo/signup.jpg differ diff --git a/public/images/demo/wallet.jpg b/public/images/demo/wallet.jpg new file mode 100644 index 0000000..1aba008 Binary files /dev/null and b/public/images/demo/wallet.jpg differ diff --git a/public/images/favicon.png b/public/images/favicon.png new file mode 100644 index 0000000..5935364 Binary files /dev/null and b/public/images/favicon.png differ diff --git a/public/images/kerala/keralawater.png b/public/images/kerala/keralawater.png new file mode 100644 index 0000000..0ef3ac9 Binary files /dev/null and b/public/images/kerala/keralawater.png differ diff --git a/public/images/kerala/small_logo.png b/public/images/kerala/small_logo.png new file mode 100644 index 0000000..c6647c9 Binary files /dev/null and b/public/images/kerala/small_logo.png differ diff --git a/public/images/kerala/support.png b/public/images/kerala/support.png new file mode 100644 index 0000000..b078860 Binary files /dev/null and b/public/images/kerala/support.png differ diff --git a/public/images/kerala/tap.jpg b/public/images/kerala/tap.jpg new file mode 100644 index 0000000..ef189f5 Binary files /dev/null and b/public/images/kerala/tap.jpg differ diff --git a/public/images/kerala/water.png b/public/images/kerala/water.png new file mode 100644 index 0000000..65dfab2 Binary files /dev/null and b/public/images/kerala/water.png differ diff --git a/public/images/login/auth.jpg b/public/images/login/auth.jpg new file mode 100644 index 0000000..a056dcd Binary files /dev/null and b/public/images/login/auth.jpg differ diff --git a/public/images/logo-white.png b/public/images/logo-white.png new file mode 100644 index 0000000..8ca8525 Binary files /dev/null and b/public/images/logo-white.png differ diff --git a/public/images/logo.png b/public/images/logo.png new file mode 100644 index 0000000..8557795 Binary files /dev/null and b/public/images/logo.png differ diff --git a/public/images/logoi.png b/public/images/logoi.png new file mode 100644 index 0000000..051a51f Binary files /dev/null and b/public/images/logoi.png differ diff --git a/public/images/profile/1.png b/public/images/profile/1.png new file mode 100644 index 0000000..d4e3f80 Binary files /dev/null and b/public/images/profile/1.png differ diff --git a/public/images/profile/2.png b/public/images/profile/2.png new file mode 100644 index 0000000..d4e3f80 Binary files /dev/null and b/public/images/profile/2.png differ diff --git a/public/images/profile/3.png b/public/images/profile/3.png new file mode 100644 index 0000000..d4e3f80 Binary files /dev/null and b/public/images/profile/3.png differ diff --git a/public/images/profile/4.png b/public/images/profile/4.png new file mode 100644 index 0000000..d4e3f80 Binary files /dev/null and b/public/images/profile/4.png differ diff --git a/public/images/profile/5.png b/public/images/profile/5.png new file mode 100644 index 0000000..d8c976b Binary files /dev/null and b/public/images/profile/5.png differ diff --git a/public/images/profile/pic.jpg b/public/images/profile/pic.jpg new file mode 100644 index 0000000..d32875a Binary files /dev/null and b/public/images/profile/pic.jpg differ diff --git a/public/images/routing.png b/public/images/routing.png new file mode 100644 index 0000000..f19db1b Binary files /dev/null and b/public/images/routing.png differ diff --git a/public/images/social/dropbox.png b/public/images/social/dropbox.png new file mode 100644 index 0000000..d53148c Binary files /dev/null and b/public/images/social/dropbox.png differ diff --git a/public/images/social/envato.png b/public/images/social/envato.png new file mode 100644 index 0000000..f6983dc Binary files /dev/null and b/public/images/social/envato.png differ diff --git a/public/images/social/facebook.png b/public/images/social/facebook.png new file mode 100644 index 0000000..3470b60 Binary files /dev/null and b/public/images/social/facebook.png differ diff --git a/public/images/social/google-plus.png b/public/images/social/google-plus.png new file mode 100644 index 0000000..d61227f Binary files /dev/null and b/public/images/social/google-plus.png differ diff --git a/public/images/social/skype.png b/public/images/social/skype.png new file mode 100644 index 0000000..c92794d Binary files /dev/null and b/public/images/social/skype.png differ diff --git a/public/images/social/spotify.png b/public/images/social/spotify.png new file mode 100644 index 0000000..469d9f0 Binary files /dev/null and b/public/images/social/spotify.png differ diff --git a/public/images/social/twitter.png b/public/images/social/twitter.png new file mode 100644 index 0000000..ca388e1 Binary files /dev/null and b/public/images/social/twitter.png differ diff --git a/public/images/social/youtube.png b/public/images/social/youtube.png new file mode 100644 index 0000000..20a2d72 Binary files /dev/null and b/public/images/social/youtube.png differ diff --git a/public/scss/abstract/_abstract.scss b/public/scss/abstract/_abstract.scss new file mode 100644 index 0000000..a5a0101 --- /dev/null +++ b/public/scss/abstract/_abstract.scss @@ -0,0 +1,3 @@ +@import "./variable"; +@import "./mixins"; +@import "./maps"; diff --git a/public/scss/abstract/_maps.scss b/public/scss/abstract/_maps.scss new file mode 100644 index 0000000..e18dcba --- /dev/null +++ b/public/scss/abstract/_maps.scss @@ -0,0 +1,15 @@ +// $theme_backgrounds: ( +// "color_1": $color_background_1, +// "color_2": $color_background_2, +// "color_3": $color_background_3, +// "color_4": $color_background_4, +// "color_5": $color_background_5 +// ); + +// $theme_primary_color: ( +// "color_1": $color_primary_1, +// "color_2": $color_primary_2, +// "color_3": $color_primary_3, +// "color_4": $color_primary_4, +// "color_5": $color_primary_5 +// ); \ No newline at end of file diff --git a/public/scss/abstract/_mixins.scss b/public/scss/abstract/_mixins.scss new file mode 100644 index 0000000..192449d --- /dev/null +++ b/public/scss/abstract/_mixins.scss @@ -0,0 +1,60 @@ +//MEDIA QUERY MANAGER +// 0 - 600: Phone +// 600 - 900: Tablet portrait +// 900 - 1200: Tablet landscape +// 1200 - 1800: Normal styles +// 1800+ : Big Desktop +// 1em = 16px +// The smaller device rules always should write below the bigger device rules +// Fixing Order => Base + Typography >> General Layout + Grid >> Page Layout + Component +@mixin respond($breakpoint) { + @if($breakpoint=="phone") { + @media only screen and (max-width: 575px) { + @content; + } + } + @if($breakpoint=="phone-land") { + @media only screen and (max-width: 767px) { + @content; + } + } + @if($breakpoint=="tab-port") { + @media only screen and (max-width: 991px) { + @content; + } + } + @if($breakpoint=="tab-land") { + @media only screen and (max-width: 1199px) { + @content; + } + } + @if ($breakpoint=="desktop") { + @media only screen and (min-width: 1200px) { + @content; + } + } + @if($breakpoint=="big-desktop") { + @media only screen and (min-width: 1800px) { + @content; + } + } +} + +//don't use it untill you need this too much +@mixin custommq($min: null, $max: null) { + @if ($min !=null and $max !=null) { + @media only screen and (min-width: $min) and (max-width: $max) { + @content; + } + } + @if ($min==null and $max !=null) { + @media only screen and (max-width: $max) { + @content; + } + } + @if ($min !=null and $max==null) { + @media only screen and (min-width: $min) { + @content; + } + } +} \ No newline at end of file diff --git a/public/scss/abstract/_variable.scss b/public/scss/abstract/_variable.scss new file mode 100644 index 0000000..7b05a43 --- /dev/null +++ b/public/scss/abstract/_variable.scss @@ -0,0 +1,48 @@ +// stylelint-disable-next-line scss/dollar-variable-default +$primary : #1652F0; +$secondary: #f73164 !default; +$success : #51BB25 !default; +$info : #A927F9 !default; +$warning : #F8D62B !default; +$danger : #DC3545 !default; +$light : #F7F6FF !default; +$dark : #070707; +$purple : #5848BB; + +// Body +$body-bg : #f0f0f0; +$body-color: #a2a5b9; + +// Typography +$font-family-base: "Roboto", +sans-serif; +$headings-font-weight : 600; +$font-size-base : 0.875rem !default; +$font-weight-base : 400 !default; +// $line-height-base : 1.6; +$headings-line-height : 1.6; +$h1-font-size : 2.25rem; +$h2-font-size : 1.875rem; +$h3-font-size : 1.5rem; +$h4-font-size : 1.125rem; +$h5-font-size : 1rem; +$h6-font-size : 1rem; + +$text-muted: #7184ad; + +$heading-primary-size : 1.8rem; +$sub-heading-size : 1.6rem !default; +$grid-gutter-width : 30px; +$dropdown-lik-color : $body-color; +$border-color : #e5e5e5; +$headings-color : #212529 !default; +$table-striped-bg : $body-bg; +$border-radius : 6px !default; +$input-btn-focus-width: 0rem !default; + +// custom +$radius : $border-radius; +$shadow : 0 0 20px rgba(89, 102, 122, 0.05); +$shadow-sm : 0 0.125rem 0.25rem rgba(227, 230, 236, 0.9); +$shadow-lg : 0 1rem 3rem rgba(35, 38, 45, 0.275); +$sidebar-width : 80px; \ No newline at end of file diff --git a/public/scss/base/_base.scss b/public/scss/base/_base.scss new file mode 100644 index 0000000..7b1d9ae --- /dev/null +++ b/public/scss/base/_base.scss @@ -0,0 +1,8 @@ +@import "./reset"; +@import "./fonts"; +@import "./color"; +@import "./preloader"; +@import "./shortcode"; + + + diff --git a/public/scss/base/_color.scss b/public/scss/base/_color.scss new file mode 100644 index 0000000..afab683 --- /dev/null +++ b/public/scss/base/_color.scss @@ -0,0 +1,15 @@ +// .bg-gradient-primary { +// background: linear-gradient(50deg, #6e00ff 0, #bb00ff 100%) !important; +// } + + + + +.bg-purple { + background-color: $purple !important +} + + +.bg-transparent { + background-color: transparent !important +} \ No newline at end of file diff --git a/public/scss/base/_fonts.scss b/public/scss/base/_fonts.scss new file mode 100644 index 0000000..5c4e29b --- /dev/null +++ b/public/scss/base/_fonts.scss @@ -0,0 +1,8 @@ +// Google Font +@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600&display=swap'); +@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap'); +// // Line Awesome + + +@import url('../icons/bootstrap-icons/bootstrap-icons.css'); +@import url('../icons/remix-icon/remixicon.css'); \ No newline at end of file diff --git a/public/scss/base/_preloader.scss b/public/scss/base/_preloader.scss new file mode 100644 index 0000000..e842ffa --- /dev/null +++ b/public/scss/base/_preloader.scss @@ -0,0 +1,123 @@ +#preloader { + position : fixed; + width : 100%; + height : 100%; + left : 0; + top : 0; + background-color: $white; + z-index : 999999999; + + + i { + display : block; + width : 16px; + height : 16px; + background : black; + border-radius : 16px; + position : absolute; + top : 50%; + left : 50%; + margin : -8px 0 0 -8px; + opacity : 1; + -webkit-transform: translate3d(60px, 0, 0); + overflow : hidden; + text-indent : -9999px; + border : 1px solid white; + + &:nth-child(1) { + background : $primary; // Red + -webkit-animation: googleDotA 1.75s ease-in-out infinite; + } + + &:nth-child(2) { + background : $success; // Yellow + -webkit-animation: googleDotB 1.75s ease-in-out infinite; + } + + &:nth-child(3) { + background : $warning; // Blue + -webkit-animation: googleDotC 1.75s ease-in-out infinite; + } + } +} + +@-webkit-keyframes googleDotA { + 0% { + opacity : 0; + transform : translate3d(60px, 0, 0); + -webkit-transform: translate3d(60px, 0, 0); + } + + 30% { + opacity : 1; + transform : translate3d(0, 0, 0); + -webkit-transform: translate3d(0, 0, 0); + } + + 70% { + opacity : 1; + transform : translate3d(0, 0, 0); + -webkit-transform: translate3d(0, 0, 0); + } + + 100% { + opacity : 0; + transform : translate3d(-300px, 0, 0); + -webkit-transform: translate3d(-300px, 0, 0); + } +} + +@-webkit-keyframes googleDotB { + 0% { + opacity : 0; + transform : translate3d(180px, 0, 0); + -webkit-transform: translate3d(180px, 0, 0); + } + + 35% { + opacity : 1; + transform : translate3d(0, 0, 0); + -webkit-transform: translate3d(0, 0, 0); + } + + 77% { + opacity : 1; + transform : translate3d(0, 0, 0); + -webkit-transform: translate3d(0, 0, 0); + } + + 100% { + opacity : 0; + transform : translate3d(-180px, 0, 0); + -webkit-transform: translate3d(-180px, 0, 0); + } +} + +@-webkit-keyframes googleDotC { + 0% { + opacity : 0; + transform : translate3d(300px, 0, 0); + -webkit-transform: translate3d(300px, 0, 0); + } + + 40% { + opacity : 1; + transform : translate3d(0, 0, 0); + -webkit-transform: translate3d(0, 0, 0); + } + + 80% { + opacity : 1; + transform : translate3d(0, 0, 0); + -webkit-transform: translate3d(0, 0, 0); + } + + 100% { + opacity : 0; + transform : translate3d(-60px, 0, 0); + -webkit-transform: translate3d(-60px, 0, 0); + } +} + + + diff --git a/public/scss/base/_reset.scss b/public/scss/base/_reset.scss new file mode 100644 index 0000000..0bd6094 --- /dev/null +++ b/public/scss/base/_reset.scss @@ -0,0 +1,160 @@ +// @import "../vendor/animate/animate.min.css"; +// @import "../vendor/waves/waves.min.css"; +// @import "../vendor/perfect-scrollbar/perfect-scrollbar.css"; +// @import "../vendor/basic-table/basictable.css"; + +* { + outline: none; + padding: 0; + + &::after { + margin : 0; + padding: 0; + } + + &::before { + margin : 0; + padding: 0; + } +} + +body { + // &.dashboard { + // background: $light; + // font-size : 14px; + // } +} + +#main-wrapper { + // opacity : 0; + transition : all 0.25s ease-in; + // overflow : hidden; + position : relative; + z-index : 1; + // height: 100vh; + margin-top : 110px; + + // &::before { + // content : ""; + // height : 300px; + // top : 0; + // left : 0; + // width : 100%; + // position : absolute; + // z-index : -9; + // background: $primary; + // } + + &.show { + opacity: 1; + } +} + +.content-body { + margin-left : $sidebar-width; + // margin-right : $map-width +30px; + // padding-top : 100px; + margin-top : 30px; + margin-bottom : 50px; + + @include media-breakpoint-up(sm) { + margin-left : 0px; + margin-bottom: 50px; + } +} + +.details { + .content-body { + margin-left: 0px; + } +} + +.dashboard { + .content-body { + margin-left : $sidebar-width; + margin-right: 0px; + margin-top : 0px; + + // @include media-breakpoint-up(sm) { + // margin-left : 0px; + // margin-bottom: 50px; + // } + + // @include respond("tab-port") { + // margin-left: 100px; + // } + + @include respond("phone-land") { + margin-left: 0px; + } + } +} + +ul { + padding: 0; + margin : 0; +} + +li { + list-style: none; +} + +a { + color : $primary; + text-decoration: none; + outline : none; + + &:hover, + &:focus, + &.active { + text-decoration: none; + outline : none; + color : $primary; + } +} + +b, +strong { + color: $headings-color; +} + +h1, +.h1, +h2, +.h2, +h3, +.h3, +h4, +.h4, +h5, +.h5, +h6, +.h6 { + font-family: 'Montserrat', sans-serif; + font-weight: 600; +} + +// h4, +// .h4, +// h5, +// .h5, +// h6, +// .h6 { +// font-family: 'Montserrat', sans-serif; +// font-weight: 500; +// } + +/* Editable */ + +// @include media-breakpoint-up(xxl) { +// .container-fluid { +// max-width: 80%; +// } +// } + +// #map { +// height : 100%; +// width : 100%; +// margin : 0; +// z-index: 990; +// } \ No newline at end of file diff --git a/public/scss/base/_shortcode.scss b/public/scss/base/_shortcode.scss new file mode 100644 index 0000000..51a9be2 --- /dev/null +++ b/public/scss/base/_shortcode.scss @@ -0,0 +1,173 @@ +.section-padding { + padding: 100px 0; + + @include respond('tab-land') { + padding: 80px 0; + } + + @include respond('tab-port') { + padding: 75px 0; + } + + @include respond('phone-land') { + padding: 60px 0; + } + + @include respond('phone') { + padding: 50px 0; + } +} + +.mt-80 { + margin-top: 80px; +} + +.mb-80 { + margin-bottom: 80px; +} + +// .vertical-line { +// position : relative; +// min-height : 1000px; +// border-left: 1px solid $border-color; +// z-index : 03; + +// &::before { +// content : ""; +// position : absolute; +// top : -84px; +// background : $border-color; +// width : 1px; +// height : 100px; +// left : -1px; +// // border-left : 1px solid #f00; +// } + +// &::after { +// content : ""; +// position : absolute; +// bottom : -84px; +// background: $border-color; +// width : 1px; +// height : 100px; +// left : -1px; +// } +// } + +.page-title { + margin-bottom : 30px; + background : transparent; + border-radius : $radius; + // padding : 10px; + + .page-title-content { + // margin-top: 15px; + + + h3 { + font-size : 24px; + margin-bottom: 0px; + } + } +} + + + +.breadcrumbs { + a { + color : $text-muted; + display : inline-block; + // margin-left: 15px; + font-size : 14px; + + + } + + + &.active { + a { + color: $white; + } + } + + i { + margin : 0px 10px; + font-size : 20px; + line-height: 0; + position : relative; + top : 5px; + } +} + +.flex-grow-2 { + flex-grow: 2; +} + + +// Scrollbar +::-webkit-scrollbar { + width: 5px; +} + + +/* Track */ + +::-webkit-scrollbar-track { + box-shadow : inset 0 0 5px grey; + border-radius: 10px; +} + + +/* Handle */ + +::-webkit-scrollbar-thumb { + background : #999; + border-radius: 10px; +} + + +/* Handle on hover */ + +::-webkit-scrollbar-thumb:hover { + background: #777; +} + + +.c-pointer { + cursor: pointer; +} + +.trade-balance { + position: relative; + height : 380px; +} + +.position-value { + position: relative; + height : 320px; +} + +.shadow-sm { + box-shadow: $shadow-sm; +} + +.shadow-lg { + box-shadow: $shadow-lg; +} + + + +.section-title { + margin-bottom: 75px; + + h2 { + text-align : center; + font-weight: 600 + } +} + +.auth-bg{ + font-size: 100px; + background: url("./../../images/login/auth.jpg"); + display: none; + } \ No newline at end of file diff --git a/public/scss/components/_button.scss b/public/scss/components/_button.scss new file mode 100644 index 0000000..919348b --- /dev/null +++ b/public/scss/components/_button.scss @@ -0,0 +1,43 @@ +button, +.btn { + color : #fff; + padding : 8px 30px; + // line-height: 0px; + font-weight : 700; + // display : inline-block; + border-radius : 12px; + + &:hover, + &:focus, + &:active { + // background: $white; + color: #fff; + } + +} + +.btn-outline-primary, +.btn-outline-secondary, +.btn-outline-success, +.btn-outline-info, +.btn-outline-warning, +.btn-outline-danger, +.btn-outline-light { + color: $dark; + + &:hover, + &:focus, + &:active { + color: $white; + } +} + +.btn-outline-dark { + color: $dark; + + &:hover, + &:focus, + &:active { + color: $white; + } +} \ No newline at end of file diff --git a/public/scss/components/_card.scss b/public/scss/components/_card.scss new file mode 100644 index 0000000..ce568a6 --- /dev/null +++ b/public/scss/components/_card.scss @@ -0,0 +1,84 @@ +.card { + border : 1px solid $border-color; + margin-bottom: 30px; + border-radius: $radius; + // box-shadow : $shadow; + background : $white; + + // &::before { + // content : ""; + // position : absolute; + // top : 22px; + // left : 18px; + // right : 18px; + // bottom : -40px; + // z-index : -2; + // background : #E3E6EC; + // opacity : 0.91; + // -webkit-filter: blur(86.985px); + // filter : blur(86.985px); + // border-radius : 24px; + // } + + &-header { + display : flex; + justify-content: space-between; + align-items : center; + border-bottom : 0px solid $border-color; + background : transparent; + padding : 20px 20px 0px; + + // margin : 0px 35px; + @include respond("phone-land") { + flex-direction: column; + align-items : start; + } + + // @include custommq($min: 1200px, $max: 1350px) { + // padding: 30px 0px; + // } + } + + &-title { + font-size : 16px; + margin-bottom: 0px; + color : $headings-color; + } + + &.transparent { + background: transparent; + box-shadow: none; + border : 0px; + + .card-header { + border : 0px; + padding: 0px; + } + + .card-body { + padding: 0px; + } + + } + + .card-body { + padding : 20px; + background : transparent; + // border-radius: 15px; + + // @include respond("desktop") { + // padding: 30px; + // } + + // @include custommq($min: 1200px, $max: 1350px) { + // padding: 30px 0px !important; + // } + } + + + + .card-footer { + padding : 20px; + background: $white; + } +} \ No newline at end of file diff --git a/public/scss/components/_component.scss b/public/scss/components/_component.scss new file mode 100644 index 0000000..60206eb --- /dev/null +++ b/public/scss/components/_component.scss @@ -0,0 +1,4 @@ +@import "./card"; +@import "./form"; +@import "./button"; +@import "./table"; \ No newline at end of file diff --git a/public/scss/components/_form.scss b/public/scss/components/_form.scss new file mode 100644 index 0000000..98ea139 --- /dev/null +++ b/public/scss/components/_form.scss @@ -0,0 +1,126 @@ +.form-label { + font-weight: $headings-font-weight; +} + +.form-control { + border-radius : 5px; + height : 45px; + border : 1px solid $border-color; + padding : 0px 22px; + font-size : 14px; + // font-weight : 500; + color : $dark; + // transition : all 0.3s ease-in-out; + background : $white; + + + + span { + margin-top: 0; + } + + &::-webkit-input-placeholder { + color: $body-color; + } + + &:-ms-input-placeholder { + color: $body-color; + } + + &::placeholder { + color: $body-color; + } + + &:hover { + box-shadow : none !important; + outline : none; + border-color: $border-color; + color : $dark; + background : $white; + } + + &:focus, + &:active, + &.active { + box-shadow : none !important; + outline : none; + border-color: $primary; + color : $dark; + background : $white; + } +} + + +.form-select { + border-radius : 5px; + height : 45px; + border : 1px solid $border-color; + padding : 0px 22px; + font-size : 14px; + // font-weight : 500; + color : $dark; + // transition : all 0.3s ease-in-out; + + + + &:hover { + box-shadow : none !important; + outline : none; + border-color: $border-color; + color : $dark; + } + + &:focus, + &:active, + &.active { + box-shadow : none !important; + outline : none; + border-color: $primary; + color : $dark; + } +} + +textarea.form-control { + min-height: 100px; +} + +input:-internal-autofill-selected { + background : lighten($body-bg, 2%) !important; + background-image: none !important; + color : -internal-light-dark-color(black, white) !important; +} + + +.input-group-text { + padding : 11px 15px; + background : $white; + margin-bottom: 0px !important; + color : $dark; + border-color : $border-color; + border-radius: 0px; +} + +.input-group-append { + .input-group-text { + border-top-right-radius : 5px; + border-bottom-right-radius: 5px; + } +} + +.input-group-prepend { + .input-group-text { + border-top-left-radius : 5px; + border-bottom-left-radius: 5px; + } +} + + +// Validation Error +label.error { + color : $danger; + position : absolute; + bottom : 0; + margin-bottom: -22px; + font-size : 12px; + font-weight : 400; +} \ No newline at end of file diff --git a/public/scss/components/_table.scss b/public/scss/components/_table.scss new file mode 100644 index 0000000..588546e --- /dev/null +++ b/public/scss/components/_table.scss @@ -0,0 +1,80 @@ +.table { + + th { + color : $headings-color; + border-bottom: 1px solid $border-color !important; + } +} + +.table-responsive-sm { + min-width: 48rem; +} + +.table { + + // border-collapse: separate; + // border-spacing: 0 1rem; + margin-bottom: 0px; + + tr { + &:last-child { + td { + border-bottom: 0px solid $border-color; + } + } + + td, + th { + // background: rgba(0, 0, 0, 0.15); + border-bottom : 1px solid $border-color; + vertical-align: middle; + padding : 18px; + + &:last-child{ + text-align: right; + } + } + } +} + +.table-striped { + tr { + + td, + th { + border: 0px !important; + } + } +} + +.table-striped>tbody>tr:nth-of-type(odd) { + td { + &:first-child { + border-top-left-radius : 7px; + border-bottom-left-radius: 7px; + } + &:last-child { + border-top-right-radius : 7px; + border-bottom-right-radius: 7px; + } + } +} + +.api-table{ + span{ + i{ + font-size:20px; + &:hover{ + color: $danger; + } + } + } +} + +.table-icon{ + span{ + i{ + font-size: 16px; + } + } +} \ No newline at end of file diff --git a/public/scss/element/_credit-card.scss b/public/scss/element/_credit-card.scss new file mode 100644 index 0000000..5167e56 --- /dev/null +++ b/public/scss/element/_credit-card.scss @@ -0,0 +1,179 @@ +.credit-card { + background : #126AFF; + padding : 20px; + border-radius : $radius; + // max-width : 400px; + margin-bottom : 30px; + position : relative; + overflow : hidden; + + // &::before { + // content : ""; + // position : absolute; + // top : 22px; + // left : 18px; + // right : 18px; + // bottom : -40px; + // z-index : -2; + // background : #E3E6EC; + // opacity : 0.91; + // -webkit-filter: blur(86.985px); + // filter : blur(86.985px); + // border-radius : 24px; + // } + + // &::after { + // content : ''; + // position : absolute; + // left : 0; + // right : 0; + // top : 0; + // bottom : 0; + // background: #fff; + // opacity : 0; + // transition: all 0.15s ease-in-out; + // } + + // &:hover { + // &::after { + // opacity: 0.85; + // } + + // .cc-info { + // bottom: 0; + // } + // } + + .type-brand { + display : flex; + justify-content: space-between; + align-items : center; + + h4 { + color : $body-color; + // opacity: 0.75; + font-size : 14px; + } + + img { + // filter: brightness(100); + height : 30px; + background : #fff; + padding : 4px 6px; + border-radius: 8px; + } + } + + .cc-number { + padding: 20px 0px; + + h6 { + display : inline-block; + margin-right: 20px; + color : $white; + font-size : 20px; + } + } + + .cc-holder-exp { + display : flex; + justify-content: space-between; + + h5 { + color : $white; + margin-bottom: 0px; + } + + .exp { + color: $white; + + strong { + color: $white; + } + } + } + + &.visa { + background: $dark; + + &:hover { + .cc-info { + background: $dark; + } + } + } + + &.master { + background: $primary; + + &:hover { + .cc-info { + background: $primary; + } + } + } + + &.payoneer { + background: $white; + + .type-brand { + h4 { + color: $body-color; + } + } + + .cc-number { + h6 { + color: $dark; + } + } + + .cc-holder-exp { + h5 { + color: $dark; + } + + .exp { + color: $dark; + + strong { + color: $dark; + } + } + } + + &:hover { + .cc-info { + background: $white; + } + } + } +} + + +.cc-info { + // background : #070707; + padding : 15px 20px 20px; + // margin-bottom: 30px; + border-radius : 0px; + // margin-top : 30px; + // margin: 10px; + position : absolute; + bottom : -100%; + left : 0; + right : 0; + z-index : 1; + transition : all 0.15s ease-in-out; + + p { + margin-bottom: 0px; + margin-top : 5px; + color : rgba(255, 255, 255, 0.5); + + strong { + color : $white; + opacity: 1; + } + } + +} \ No newline at end of file diff --git a/public/scss/element/_cta.scss b/public/scss/element/_cta.scss new file mode 100644 index 0000000..00d978c --- /dev/null +++ b/public/scss/element/_cta.scss @@ -0,0 +1,19 @@ +.cta1 { + border-top: 1px solid $border-color; + + // background: darken($primary, 10%); + h2 { + // color: $white; + margin-bottom: 15px; + } + + p { + // color: $white; + } + + .btn { + padding : 7px 20px; + margin-top: 30px; + + } +} \ No newline at end of file diff --git a/public/scss/element/_element.scss b/public/scss/element/_element.scss new file mode 100644 index 0000000..e346266 --- /dev/null +++ b/public/scss/element/_element.scss @@ -0,0 +1,3 @@ +@import "./testimonial"; +@import "./credit-card"; +// @import "./bottom"; \ No newline at end of file diff --git a/public/scss/element/_testimonial.scss b/public/scss/element/_testimonial.scss new file mode 100644 index 0000000..e69de29 diff --git a/public/scss/layout/_bottom.scss b/public/scss/layout/_bottom.scss new file mode 100644 index 0000000..9235e98 --- /dev/null +++ b/public/scss/layout/_bottom.scss @@ -0,0 +1,38 @@ +.bottom { + background: $dark; + + .bottom-logo { + + p { + color : $body-color; + line-height: 30px; + font-weight: 400; + } + } + + .bottom-widget { + @include respond("tab-port") { + margin-bottom: 30px; + } + + .widget-title { + font-size : 18px; + font-weight : 600; + color : #fff; + margin-bottom: 20px; + } + + ul { + li { + a { + color : $body-color; + font-weight : 400; + margin-bottom: 10px; + display : inline-block; + } + } + } + } + + +} \ No newline at end of file diff --git a/public/scss/layout/_footer.scss b/public/scss/layout/_footer.scss new file mode 100644 index 0000000..2706186 --- /dev/null +++ b/public/scss/layout/_footer.scss @@ -0,0 +1,47 @@ +.footer { + // border-top: 1px solid rgba(255, 255, 255, 0.2); + background: $body-bg; + padding : 20px 0px; + + position : fixed; + bottom : 0; + left : $sidebar-width + 30px; + // right : $map-width + 30px; + + border-radius: $radius; + + .copyright { + position : relative; + text-align: left; + + p { + margin : 0; + font-size: 14px; + color : $body-color; + + a { + color : $primary; + font-weight: 700; + } + } + } + + .footer-social { + text-align: right; + + li { + display: inline-block; + + a { + color : $dark; + padding: 0px 10px; + } + } + } +} + +.details { + .footer { + left: 0px; + } +} \ No newline at end of file diff --git a/public/scss/layout/_header.scss b/public/scss/layout/_header.scss new file mode 100644 index 0000000..006c0c2 --- /dev/null +++ b/public/scss/layout/_header.scss @@ -0,0 +1,580 @@ +.header { + padding : 20px 0px; + position : fixed; + top : 0; + left : $sidebar-width; + right : 0; + z-index : 02; + // transition: all 0.3s ease-in; + background : $body-bg; + + &.bg-primary { + border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important; + } + + @include respond("tab-port") { + // left : 100px; + // margin: 0px; + } + + @include respond("phone-land") { + left : 0; + padding : 10px 0px; + background: $white; + } + + .brand-logo { + display: none; + + @include respond("tab-port") { + display: none; + margin : 0px 20px 0px 0px; + } + + @include respond("phone-land") { + display: block; + + img { + // max-width: 35px; + filter: none; + } + + span { + display: none; + } + } + } + + &.landing { + padding : 20px 0px; + left : 0px; + // border-bottom: 1px solid $border-color; + // position: relative; + + a { + display : flex; + align-items : center; + justify-content: center; + } + + .brand-logo { + display : block; + margin-top : 0px; + margin-left: 0px; + + img { + filter : none; + margin-right: 10px; + } + + span { + display: block; + top : 0; + } + } + } +} + +.header-content, +.header-left, +.header-right { + display : flex; + justify-content: space-between; + align-items : center; +} + +.notification { + cursor: pointer; + + .notify-bell { + margin-right: 15px; + + @include respond("phone-land") { + margin-right : 15px; + // margin-left : 15px; + } + + } + + + .dropdown-menu { + border : 0px; + padding : 15px 20px 10px; + margin : 0px; + top : 25px !important; + width : 330px; + box-shadow : 0 36px 48px rgba($color: #1b1994, $alpha: 0.08); + border-radius : 5px; + // background-color: #423A6F; + + h4 { + border-bottom : 1px solid $border-color; + padding-bottom: 15px; + font-size : 16px; + } + + a { + display : block; + border-bottom: 1px solid $border-color; + padding : 10px 0px; + + &:last-child { + border : 0px; + display : flex; + justify-content: flex-end; + align-items : center; + color : $dark; + + i { + margin-left: 5px; + font-size : 18px; + } + } + + p { + margin-bottom: 0px; + color : $headings-color; + font-weight : $headings-font-weight; + font-size : 14px; + } + + span { + font-size: 13px; + color : $body-color; + } + + span { + &.icon { + height : 40px; + width : 40px; + color : $white; + display : flex; + align-items : center; + justify-content: center; + border-radius : 50px; + + i { + font-size: 20px; + } + } + + &.success { + background: $success; + } + + &.fail { + background: $danger; + } + + &.pending { + background: $warning; + } + } + } + + } +} + +.dropdown-toggle::after { + border-top : 0px; + margin-left : 10.2px; + display : inline-block; + font-style : normal; + font-variant : normal; + text-rendering : auto; + -webkit-font-smoothing: antialiased; + font-family : "Font Awesome 5 Pro", "Font Awesome 5 Free"; + font-weight : 700; + content : "\f107"; +} + +.profile_log { + cursor: pointer; + + .user { + display : flex; + align-items: center; + + .thumb { + height : 35px; + width : 35px; + border-radius: 50px; + color : #fff; + text-align : center; + + img { + max-width: 35px; + } + } + + // .arrow { + + // // color: $white; + // i { + // font-weight: bold; + // font-size : 14px; + // line-height: 16px; + // margin-top : 6px; + // display : inline-block; + // } + + // @include respond("tab-land") { + // display: none; + // } + // } + + } + + + .dropdown-menu { + border : 0px; + padding : 0px; + margin : 0px; + top : 25px !important; + box-shadow : 0 1.5rem 4rem rgba(22, 28, 45, 0.15); + border-radius : 5px; + background-color: $white; + min-width : 240px; + + .user-email { + padding: 10px 20px 10px; + + .thumb { + margin-right: 10px; + } + + .user-info { + margin: 0px; + } + + h5 { + margin-bottom: 0px; + } + + span { + font-size: 14px; + + i { + font-size: 22px; + color : $dark; + } + } + } + + .user-balance { + display : flex; + justify-content: space-around; + margin-bottom : 15px; + + p { + margin-bottom: 0px; + font-weight : 500; + color : $headings-color; + } + } + + .dropdown-item { + padding : 10px 20px; + border-top : 1px solid $border-color; + // font-size : 14px; + // color : $body-color; + font-weight : 400; + display : flex; + align-items : center; + + &:first-child { + border: 0px; + } + + &.logout { + color: $danger; + + i { + color: $danger; + } + } + + i { + margin-right: 10px; + font-size : 18px; + color : $primary; + font-weight : bold; + } + + &:hover, + &:focus, + &.active { + background-color: $primary; + color : $white; + + i { + color: $white; + } + } + } + + } +} + +.dark-light-toggle { + margin-right: 20px; + cursor : pointer; + display : none; + + @include respond("phone-land") { + margin-right: 0px; + margin-left : 15px; + } + + i { + font-size: 20px; + } + + .light { + display: none; + } +} + +.dark-theme { + .dark { + display: none; + } + + .light { + display: block; + color : $warning; + } +} + +// Landing page + +.navigation { + .navbar { + background-color: transparent !important; + padding : 0px; + + ul { + align-items: center; + margin-left: auto; + + @include respond("tab-port") { + margin-top: 15px; + } + + &>li { + display : inline-block; + padding : 0px 7px; + // margin-left: 15px; + width : 100%; + + @include respond("tab-port") { + border-bottom: 1px solid $border-color; + margin : 0 15px; + padding : 7px 15px; + // background: $primary; + } + + &>a { + font-size : 16px; + font-weight: $headings-font-weight; + color : $dark; + + @include respond("tab-port") { + &::after { + position: absolute; + right : 15px; + top : 25px; + } + } + } + } + + @media only screen and (min-width: 991px) { + .dropdown { + &>a { + position : relative; + transition: all 0.2s ease-in-out; + } + } + + .dropdown-menu { + background: $white; + padding : 15px 0; + display : block; + opacity : 0; + visibility: hidden; + z-index : 1030; + transition: all 0.2s ease-in-out; + box-shadow: 0 1.5rem 4rem rgba(22, 28, 45, 0.15); + border : 0px; + margin-top: 10px; + z-index : 998; + min-width : 10rem; + + a { + display: inline-block; + color : $body-color; + + &:hover, + &:focus, + &:active, + &.active { + color : $primary; + background: transparent; + } + } + } + + li.dropdown { + &:hover { + a { + &::before { + opacity: 1; + bottom : -9px; + } + } + + .dropdown-menu { + // display: block; + opacity : 1; + visibility : visible; + // transform: translate3d(-50%,0,0); + margin-top : 0px; + } + } + } + } + + @include respond("tab-port") { + .dropdown-menu { + border : 0px; + padding: 0px; + + a { + border-bottom: 1px solid $border-color; + padding : 15px; + color : $body-color; + + // background: #323232; + &:last-child { + border: 0px; + } + + i, + h6 { + color: $primary; + } + + p { + color : $body-color; + margin-bottom: 0; + } + } + } + } + } + } +} + +.signin-btn { + min-width: 100px; + + // .btn-primary { + // border-radius: 100px; + // } +} + +.logo-white { + display: none; +} + +.light { + .logo-primary { + display: none; + } + + .logo-white { + display: block; + } + + .navigation { + .navbar { + ul { + &>li { + &>a { + color: rgba(255, 255, 255, 0.85); + + &:hover, + &:focus, + &.active, + &:active { + color: rgba(255, 255, 255, 1); + } + } + } + } + } + } + + .signin-btn { + .btn-primary { + background: $white; + color : $dark; + } + } +} + +.search { + min-width: 450px; + + + @include respond("phone-land") { + min-width : auto; + margin-right: 15px; + } + + .form-control { + border-bottom-left-radius: $radius; + border-top-left-radius : $radius; + } + + .input-group-text { + border-top-right-radius : $radius; + border-bottom-right-radius: $radius; + background : $primary; + + i { + color: $white; + } + } +} + +.icon-menu { + height : 40px; + width : 40px; + display : flex; + justify-content: center; + align-items : center; + border-radius : 50%; + background : #fff; + + &:hover, + &:focus, + &:active, + &.active { + background: $primary; + box-shadow: $shadow; + + i { + color: $white; + } + + } + + span { + i { + font-size: 20px; + color : $body-color; + } + } +} \ No newline at end of file diff --git a/public/scss/layout/_layout.scss b/public/scss/layout/_layout.scss new file mode 100644 index 0000000..f13a90a --- /dev/null +++ b/public/scss/layout/_layout.scss @@ -0,0 +1,5 @@ +@import "./header"; +@import "./bottom"; +@import "./footer"; +@import "./sidebar"; +@import "./theme-bg"; \ No newline at end of file diff --git a/public/scss/layout/_sidebar.scss b/public/scss/layout/_sidebar.scss new file mode 100644 index 0000000..f275c4b --- /dev/null +++ b/public/scss/layout/_sidebar.scss @@ -0,0 +1,238 @@ +.sidebar { + background : darken($primary, 10%); + position : fixed; + left : 0px; + height : calc(100% - 20px); + width : $sidebar-width; + top : 0px; + z-index : 3; + bottom : 0px; + border-radius : 0px; + box-shadow : $shadow; + // border-right : 1px solid $border-color; + + + // @include respond("tab-port") { + // width: $sidebar-width; + // } + + @include respond("phone-land") { + top : auto; + bottom : 0; + width : 100%; + height : 50px; + left : 0; + border-radius: 0px; + + } + + + +} + +.brand-logo { + text-align: center; + margin : 20px 20px 20px; + + img { + // max-width: 35px; + // filter: brightness(100); + } + + // .mini-logo { + // display: none; + // } + + // @include respond("tab-port") { + // text-align: center; + + // .full-logo { + // display: none; + // } + + // .mini-logo { + // display: block; + // } + // } + + @include respond("phone-land") { + display: none; + } +} + +.menu { + margin-top: 30px; + padding : 20px; + position : relative; + + @include respond("phone-land") { + margin-top: 0px; + padding : 0px; + background: $primary; + } + + ul { + @include respond("phone-land") { + display : flex; + justify-content: space-around; + align-items : center; + } + + li { + // text-align: center; + margin-bottom: 8px; + border-radius: $radius; + + + + &:hover, + &:focus, + &:active { + + // background: lighten($dark, 0%); + a { + color: $white; + + .nav-text { + display : block; + background: white; + color : $primary; + + @include respond("tab-port") { + display: none; + + } + } + } + + i { + color : $white; + opacity: 1; + } + } + + &.active { + // background: $white; + + i { + color : $white; + opacity: 1; + } + + span { + color: $white; + } + } + + i { + color : $white; + font-size : 20px; + opacity : 0.6; + margin-right: 15px; + line-height : 0px; + + + @include respond("tab-port") { + margin-right: 0px; + + } + } + + a { + padding : 5px 8px; + display : flex; + align-items : center; + min-height : 3.5rem; + // font-weight : 600; + color : $body-color; + // justify-content: center; + + @include respond("tab-port") { + justify-content: center; + } + + .nav-text { + display : none; + padding : 3px 8px; + border-radius: 4px; + box-shadow : $shadow; + + @include respond("tab-port") { + display: none; + + } + } + + + } + + &.logout { + position: fixed; + bottom : 50px; + left : 0; + right : 0; + width : 80px; + + a { + padding-left: 30px; + } + + @include respond("tab-port") { + right : auto; + justify-content: center; + left : 10px; + width : auto; + } + + @include respond("phone-land") { + position: relative; + bottom : 0; + left : auto; + right : auto; + width : auto; + + a { + padding-left: 0px; + } + } + } + } + } + +} + +.card-limit-progress { + display: none; + + @include respond("tab-land") { + display: none; + } + + // background : lighten($secondary, 5%); + background : url('/images/bg/6.jpg'); + position : absolute; + bottom : 150px; + padding : 15px 20px; + margin : 20px; + left : 0; + right : 0; + border-radius: $radius; + + h5 { + font-size: 14px; + color : $white; + } + + p { + font-size: 12px; + + strong { + color: $white; + } + } + + .progress { + height : 6px; + background-color: darken($light, 10%); + } +} \ No newline at end of file diff --git a/public/scss/layout/_theme-bg.scss b/public/scss/layout/_theme-bg.scss new file mode 100644 index 0000000..fa8d0bb --- /dev/null +++ b/public/scss/layout/_theme-bg.scss @@ -0,0 +1,226 @@ +$dbg : darken($primary, 37%); +$dcolor : lighten($primary, 25%); +$dcard : darken($primary, 30%); +$dborder : rgba(255, 255, 255, 0.08); +// $dborder: darken($primary, 37%); + +.dark-theme { + + h1, + .h1, + h2, + .h2, + h3, + .h3, + h4, + .h4, + h5, + .h5, + h6, + .h6 { + color: $white; + } + + b, + strong { + color: $white; + } + + + background-color: $dbg; + color : $dcolor; + + .header { + background-color: $dbg; + } + + .dropdown-menu { + background-color: $dcard; + + h4 { + border-color: $dborder; + } + + p { + color: $white !important; + } + + a { + border-color: $dborder; + + + + span { + color: $dcolor !important; + + i { + color: $white; + } + } + } + } + + .notification .notify-bell i { + color: $white; + } + + .notification .dropdown-menu a:last-child { + color: $white; + } + + .profile_log .dropdown-menu .dropdown-item { + border-top: 1px solid $dborder; + color : $dcolor; + } + + .user-info, + .user-balance { + span { + color: $dcolor; + } + } + + + + .card { + background: $dcard !important; + + .card-header { + border-bottom: 1px solid $dborder; + + .card-title { + color: $white; + } + } + } + + .trade-form { + p { + color: $white; + } + } + + .balance-widget li .icon-title span { + color: $white; + } + + .form-control, + .form-select { + background : $dbg; + border-color: $dborder; + color : $dcolor; + + &::-webkit-input-placeholder { + color: $dcolor; + } + + &:-ms-input-placeholder { + color: $dcolor; + } + + &::placeholder { + color: $dcolor; + } + + &:hover { + border-color: $dborder; + color : $dcolor; + background : $dbg; + } + + &:focus, + &:active, + &.active { + border-color: $dborder; + color : $dcolor; + background : $dbg; + } + } + + .form-file-text { + background-color: $dbg; + border-color : $dborder; + color : $dcolor; + } + + .form-file-button { + border-color: $dborder; + background : $primary; + color : $white; + } + + .input-group-text { + background : $dcard; + color : $white; + border-color: $dborder; + } + + .btn-outline-primary, + .btn-outline-secondary, + .btn-outline-success, + .btn-outline-info, + .btn-outline-warning, + .btn-outline-danger, + .btn-outline-light { + color: $white; + } + + .balance-widget li { + border-bottom: 1px solid $dborder; + } + + .table { + color: $dcolor; + + th { + color : $white; + border-bottom: 1px solid $dborder !important; + } + + td { + border-color: $dborder; + + } + } + + .table-striped>tbody>tr:nth-of-type(odd) { + --bs-table-accent-bg: $dbg; + background-color : $dbg; + color : $dcolor; + } + + .settings-menu { + a { + color: $dcolor; + + &:hover, + &:focus, + &:active, + &.active { + color : $white; + // opacity: 1; + } + } + } + + .modal-content { + background-color: $dcard; + + .modal-header { + border-color: $dborder; + + .btn-close { + color: $white; + } + + } + } + + .qr-img { + background: $white; + } + + .chart-stat { + border-color: $dborder; + } +} \ No newline at end of file diff --git a/public/scss/pages/_auth.scss b/public/scss/pages/_auth.scss new file mode 100644 index 0000000..4f48174 --- /dev/null +++ b/public/scss/pages/_auth.scss @@ -0,0 +1,44 @@ +.auth-form { + padding: 30px 20px 10px; +} + + +.privacy-link { + a { + display : inline-block; + font-size : 14px; + line-height: 28px; + color : $dark; + } +} + +.identity-content { + text-align: center; + + .icon { + display : flex; + width : 75px; + height : 75px; + border-radius : 100px; + margin : 0 auto; + background : $white; + color : $primary; + font-size : 30px; + padding : 10px; + align-items : center; + justify-content: center; + margin-bottom : 30px; + border : 1px solid $primary; + } + + h4 { + max-width: 350px; + margin : 0 auto 15px; + } + + p { + max-width: 350px; + margin : 0 auto 30px; + } +} + diff --git a/public/scss/pages/_balance.scss b/public/scss/pages/_balance.scss new file mode 100644 index 0000000..d4ee45a --- /dev/null +++ b/public/scss/pages/_balance.scss @@ -0,0 +1,72 @@ +.total-balance { + p { + margin-bottom: 0px; + } +} + +.balance-stats { + background : #F5F6FA; + margin-top : 15px; + // border : 1px solid $border-color; + padding : 21px; + border-radius : $radius; + + &:hover, + &:focus, + &.active { + + border-color: $primary; + background : $primary; + + p { + color : $white; + opacity: 0.75; + } + + h3 { + color: $white; + } + } + + p { + color : $body-color; + font-size : 14px; + font-weight : 400; + margin-bottom: 0px; + } + + h3 { + margin-bottom: 0px; + font-size : 18px; + } +} + +.bills-widget-content { + border : 1px solid $border-color; + padding : 15px 20px; + border-radius: $radius; + margin-bottom: 18px; + + &:hover, + &:focus, + &.active { + border-color: $primary; + } + + &:last-child { + margin-bottom: 0px; + } + + + p { + margin-bottom: 5px; + } + + h4 { + margin-bottom: 0px; + } +} + +#transaction-graph { + height: 300px !important; +} \ No newline at end of file diff --git a/public/scss/pages/_bill.scss b/public/scss/pages/_bill.scss new file mode 100644 index 0000000..6b3c81b --- /dev/null +++ b/public/scss/pages/_bill.scss @@ -0,0 +1,29 @@ +#chart-1 { + height: 365px !important; +} + +.unpaid-content { + li { + padding : 15px 0px; + display : flex; + justify-content: space-between; + border-bottom : 1px solid $border-color; + + &:first-child { + padding-top: 0px; + } + + &:last-child { + padding-bottom: 0px; + border : 0px; + } + + h5 { + font-size: 14px; + } + } +} + +#activityBar { + height: 287px !important; +} \ No newline at end of file diff --git a/public/scss/pages/_dashboard.scss b/public/scss/pages/_dashboard.scss new file mode 100644 index 0000000..1eef968 --- /dev/null +++ b/public/scss/pages/_dashboard.scss @@ -0,0 +1,176 @@ +.stat-widget { + background : #f5f6fa; + padding : 20px; + border-radius: $radius; + margin : 15px 0px; + position : relative; + + // &::before { + // content : ""; + // position : absolute; + // top : 22px; + // left : 18px; + // right : 18px; + // bottom : -40px; + // z-index : -2; + // background : #E3E6EC; + // opacity : 0.91; + // -webkit-filter: blur(86.985px); + // filter : blur(86.985px); + // border-radius : 24px; + // } + + .widget-icon { + // background : rgba(0, 0, 0, 0.15); + width : 50px; + height : 50px; + display : flex; + align-items : center; + justify-content: center; + border-radius : 100%; + font-size : 20px; + color : $white; + + i { + line-height: 0px; + } + } + + .widget-content { + // text-align: right; + + p { + color : $body-color; + opacity : 0.85; + font-size : 14px; + font-weight : 400; + margin-bottom: 0px; + } + + h3 { + // color: $dark; + font-size : 20px; + margin-bottom: 0px; + } + + // p { + // // background : $dark; + // display : inline-block; + // padding : 3px 7px; + // border-radius: $radius - 16px; + // } + } + + +} + + + +// invoice-content + +.invoice-content { + // margin: 0px -15px; + + li { + margin-bottom : 7px; + display : block; + padding : 12px 0px; + // border-radius: $radius; + position : relative; + border-bottom : 1px solid $border-color; + + // &:hover, + // &:focus, + // &.active { + // background: $primary; + + // h5 { + // color: $white; + // } + + // p { + // color : $white; + // opacity: 0.75; + // } + + + // } + + &:last-child { + // margin-bottom: 0px; + border: 0px; + } + + + span { + // position : absolute; + right : 15px; + display : block; + font-size : 12px; + background : $white; + padding : 2px 10px; + border-radius: 16px; + display : inline-block; + + } + } + + .invoice-user-img { + img { + border-radius: $radius + 50px; + } + } + + .invoice-info { + position: relative; + display : block; + + + + p { + margin-bottom : 5px; + // font-weight : 600; + // color : $body-color; + // font-size : 18px; + + + } + } +} + +#most-selling-items { + height: 295px !important; +} + +#activity { + height: 245px !important; +} + +#user-activity { + .btn { + padding: 5px 15px; + + @include respond("phone-land") { + margin-top: 10px; + } + } +} + + +.budget-content { + li { + margin-bottom: 32px; + + h5 { + font-size: 15px; + } + + .progress { + height: 10px; + } + + &:last-child { + margin-bottom: 0px; + } + } +} \ No newline at end of file diff --git a/public/scss/pages/_demo.scss b/public/scss/pages/_demo.scss new file mode 100644 index 0000000..a62ae98 --- /dev/null +++ b/public/scss/pages/_demo.scss @@ -0,0 +1,32 @@ +.demo_img { + text-align : center; + margin-bottom: 60px; + + .img-wrap { + // max-height: 175px; + overflow : hidden; + margin-bottom: 15px; + box-shadow : 0 0.75rem 1.5rem rgba(18, 38, 63, 0.03); + background : $white; + padding : 10px; + border-radius: 16px; + border : 1px solid #EFF2F7; + } + + img { + border-radius: 5px; + } +} + +.intro-demo_img { + // box-shadow: 0px 20px 25px rgba(22, 28, 45, 0.05); + background : $white; + box-shadow : 0px 36px 48px rgba(31, 66, 135, 0.04); + padding : 10px; + border-radius: 16px; + + img { + border-radius: 5px; + } + +} \ No newline at end of file diff --git a/public/scss/pages/_invoice.scss b/public/scss/pages/_invoice.scss new file mode 100644 index 0000000..e69de29 diff --git a/public/scss/pages/_notification.scss b/public/scss/pages/_notification.scss new file mode 100644 index 0000000..c2e6730 --- /dev/null +++ b/public/scss/pages/_notification.scss @@ -0,0 +1,64 @@ +.all-notification { + + + + a { + display : block; + border-bottom: 1px solid $border-color; + padding : 10px 0px; + + &:last-child { + border : 0px; + display : flex; + justify-content: flex-end; + align-items : center; + color : $dark; + padding-bottom : 0px; + + i { + margin-left: 5px; + font-size : 18px; + } + } + + p { + margin-bottom: 0px; + color : $headings-color; + font-weight : $headings-font-weight; + font-size : 14px; + } + + span { + font-size: 13px; + color : $body-color; + } + + span { + &.icon { + height : 40px; + width : 40px; + color : $white; + display : flex; + align-items : center; + justify-content: center; + border-radius : 50px; + + i { + font-size: 20px; + } + } + + &.success { + background: $success; + } + + &.fail { + background: $danger; + } + + &.pending { + background: $warning; + } + } + } +} \ No newline at end of file diff --git a/public/scss/pages/_pages.scss b/public/scss/pages/_pages.scss new file mode 100644 index 0000000..076fb81 --- /dev/null +++ b/public/scss/pages/_pages.scss @@ -0,0 +1,10 @@ +@import "./dashboard"; +@import "./auth"; +@import "./settings"; +@import "./profile"; +@import "./wallet"; +@import "./balance"; +@import "./bill"; +@import "./notification"; +@import "./profile"; +@import "./demo"; \ No newline at end of file diff --git a/public/scss/pages/_profile.scss b/public/scss/pages/_profile.scss new file mode 100644 index 0000000..5b4c1be --- /dev/null +++ b/public/scss/pages/_profile.scss @@ -0,0 +1,96 @@ +.app-link { + p { + margin-bottom: 30px; + } + + .btn { + min-width: 150px; + } +} + +.user-info { + margin: 15px 0px; + + span { + margin-bottom: 5px; + display : inline-block; + } +} + + +.welcome-profile { + // background: $primary !important; + + .card-body { + // background: $primary !important; + + img { + border : 4px solid $white; + border-radius: 100px; + width : 60px; + } + + // text-align: center; + + h4 { + // color : $white; + margin-top: 10px; + font-size : 18px; + } + + p { + // color : $white; + opacity : 0.75; + // max-width : 300px; + // margin : 0 auto; + + } + + ul { + text-align: left; + + li { + padding : 15px 0px; + border-bottom: 1px solid $border-color; + + &:last-child { + border : 0px; + padding-bottom: 0px; + } + + a { + // color : darken($white, 5%); + display : flex; + align-items: center; + transition : all 0.25 ease-in-out; + + span { + // background : $primary; + padding : 5px; + border-radius : 50px; + width : 30px; + height : 30px; + display : inline-flex; + align-items : center; + justify-content: center; + margin-right : 10px; + transition : all 0.25 ease-in-out; + + &.verified { + background: $success; + color : $white; + } + + &.not-verified { + background: $primary; + color : $white; + } + } + } + } + } + } +} + + +///// \ No newline at end of file diff --git a/public/scss/pages/_settings.scss b/public/scss/pages/_settings.scss new file mode 100644 index 0000000..d6f8e67 --- /dev/null +++ b/public/scss/pages/_settings.scss @@ -0,0 +1,71 @@ +.settings-menu { + margin-bottom: 30px; + display : flex; + + @include respond('phone-land') { + display: inline-block; + } + + li { + + @include respond('phone-land') { + display: inline-block; + padding: 5px 0px; + } + + &:hover, + &:focus, + &:active, + &.active { + a { + color : $primary; + // opacity: 1; + } + } + } + + a { + display : inline-block; + margin-right : 20px; + color : $body-color; + // font-weight : $headings-font-weight; + font-size : 16px; + // opacity : 0.75; + + + } +} + + + +.verify-content { + display : flex; + justify-content: space-between; + align-items : center; + + @include respond('phone-land') { + display: block; + + .btn { + margin-left: 65px; + margin-top : 15px; + } + } +} + +.icon-circle { + height : 50px; + min-width : 50px; + font-size : 22px; + display : flex; + justify-content: center; + align-items : center; + border-radius : 50px; +} + +.card { + .card { + box-shadow: none; + background: transparent; + } +} \ No newline at end of file diff --git a/public/scss/pages/_wallet.scss b/public/scss/pages/_wallet.scss new file mode 100644 index 0000000..7f93ed6 --- /dev/null +++ b/public/scss/pages/_wallet.scss @@ -0,0 +1,29 @@ +.invoice-stats{ + background: $white; + border-radius: 16px; + padding: 30px; + margin-bottom: 30px; + .invoice-stats-content{ + p{ + margin-bottom: 0; + } + } + .invoice-stats-icon{ + span{ + display: flex; + height: 75px; + width: 75px; + align-items: center; + justify-content: center; + border: 1px solid rgba(53, 70, 171, 0.12); + border-radius: 50%; + margin-left:1rem; + i{ + + font-size: 32px; + line-height: 0px; + // padding: 5px; + } + }; + } +} \ No newline at end of file diff --git a/public/scss/style.css b/public/scss/style.css new file mode 100644 index 0000000..554f6f5 --- /dev/null +++ b/public/scss/style.css @@ -0,0 +1,13922 @@ +@charset "UTF-8"; +/* + Name: Intez + Author: Quixlab + Author Portfolio : https://themeforest.net/user/quixlab/portfolio + Email: quixlab.com@gmail.com + + + Table of Content: + + 1. Abstract + 2. Bootstrap CSS + 3. Base + 4. Layout + 5. Component + 6. Pages + +*/ +/*! + * Bootstrap v5.3.2 (https://getbootstrap.com/) + * Copyright 2011-2023 The Bootstrap Authors + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) + */ +@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600&display=swap"); +@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap"); +@import url("../icons/bootstrap-icons/bootstrap-icons.css"); +@import url("../icons/remix-icon/remixicon.css"); +:root, +[data-bs-theme=light] { + --bs-blue: #0d6efd; + --bs-indigo: #6610f2; + --bs-purple: #5848BB; + --bs-pink: #d63384; + --bs-red: #dc3545; + --bs-orange: #fd7e14; + --bs-yellow: #ffc107; + --bs-green: #198754; + --bs-teal: #20c997; + --bs-cyan: #0dcaf0; + --bs-black: #000; + --bs-white: #fff; + --bs-gray: #6c757d; + --bs-gray-dark: #343a40; + --bs-gray-100: #f8f9fa; + --bs-gray-200: #e9ecef; + --bs-gray-300: #dee2e6; + --bs-gray-400: #ced4da; + --bs-gray-500: #adb5bd; + --bs-gray-600: #6c757d; + --bs-gray-700: #495057; + --bs-gray-800: #343a40; + --bs-gray-900: #212529; + --bs-primary: #1652F0; + --bs-secondary: #f73164; + --bs-success: #51BB25; + --bs-info: #A927F9; + --bs-warning: #F8D62B; + --bs-danger: #DC3545; + --bs-light: #F7F6FF; + --bs-dark: #070707; + --bs-primary-rgb: 22, 82, 240; + --bs-secondary-rgb: 247, 49, 100; + --bs-success-rgb: 81, 187, 37; + --bs-info-rgb: 169, 39, 249; + --bs-warning-rgb: 248, 214, 43; + --bs-danger-rgb: 220, 53, 69; + --bs-light-rgb: 247, 246, 255; + --bs-dark-rgb: 7, 7, 7; + --bs-primary-text-emphasis: #092160; + --bs-secondary-text-emphasis: #631428; + --bs-success-text-emphasis: #204b0f; + --bs-info-text-emphasis: #441064; + --bs-warning-text-emphasis: #635611; + --bs-danger-text-emphasis: #58151c; + --bs-light-text-emphasis: #495057; + --bs-dark-text-emphasis: #495057; + --bs-primary-bg-subtle: #d0dcfc; + --bs-secondary-bg-subtle: #fdd6e0; + --bs-success-bg-subtle: #dcf1d3; + --bs-info-bg-subtle: #eed4fe; + --bs-warning-bg-subtle: #fef7d5; + --bs-danger-bg-subtle: #f8d7da; + --bs-light-bg-subtle: #fcfcfd; + --bs-dark-bg-subtle: #ced4da; + --bs-primary-border-subtle: #a2baf9; + --bs-secondary-border-subtle: #fcadc1; + --bs-success-border-subtle: #b9e4a8; + --bs-info-border-subtle: #dda9fd; + --bs-warning-border-subtle: #fcefaa; + --bs-danger-border-subtle: #f1aeb5; + --bs-light-border-subtle: #e9ecef; + --bs-dark-border-subtle: #adb5bd; + --bs-white-rgb: 255, 255, 255; + --bs-black-rgb: 0, 0, 0; + --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, 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)); + --bs-body-font-family: "Roboto", sans-serif; + --bs-body-font-size: 0.875rem; + --bs-body-font-weight: 400; + --bs-body-line-height: 1.5; + --bs-body-color: #a2a5b9; + --bs-body-color-rgb: 162, 165, 185; + --bs-body-bg: #f0f0f0; + --bs-body-bg-rgb: 240, 240, 240; + --bs-emphasis-color: #000; + --bs-emphasis-color-rgb: 0, 0, 0; + --bs-secondary-color: rgba(162, 165, 185, 0.75); + --bs-secondary-color-rgb: 162, 165, 185; + --bs-secondary-bg: #e9ecef; + --bs-secondary-bg-rgb: 233, 236, 239; + --bs-tertiary-color: rgba(162, 165, 185, 0.5); + --bs-tertiary-color-rgb: 162, 165, 185; + --bs-tertiary-bg: #f8f9fa; + --bs-tertiary-bg-rgb: 248, 249, 250; + --bs-heading-color: #212529; + --bs-link-color: #1652F0; + --bs-link-color-rgb: 22, 82, 240; + --bs-link-decoration: underline; + --bs-link-hover-color: #1242c0; + --bs-link-hover-color-rgb: 18, 66, 192; + --bs-code-color: #d63384; + --bs-highlight-color: #a2a5b9; + --bs-highlight-bg: #fff3cd; + --bs-border-width: 1px; + --bs-border-style: solid; + --bs-border-color: #e5e5e5; + --bs-border-color-translucent: rgba(0, 0, 0, 0.175); + --bs-border-radius: 6px; + --bs-border-radius-sm: 0.25rem; + --bs-border-radius-lg: 0.5rem; + --bs-border-radius-xl: 1rem; + --bs-border-radius-xxl: 2rem; + --bs-border-radius-2xl: var(--bs-border-radius-xxl); + --bs-border-radius-pill: 50rem; + --bs-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15); + --bs-box-shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075); + --bs-box-shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175); + --bs-box-shadow-inset: inset 0 1px 2px rgba(0, 0, 0, 0.075); + --bs-focus-ring-width: 0.25rem; + --bs-focus-ring-opacity: 0.25; + --bs-focus-ring-color: rgba(22, 82, 240, 0.25); + --bs-form-valid-color: #51BB25; + --bs-form-valid-border-color: #51BB25; + --bs-form-invalid-color: #DC3545; + --bs-form-invalid-border-color: #DC3545; +} + +[data-bs-theme=dark] { + color-scheme: dark; + --bs-body-color: #dee2e6; + --bs-body-color-rgb: 222, 226, 230; + --bs-body-bg: #212529; + --bs-body-bg-rgb: 33, 37, 41; + --bs-emphasis-color: #fff; + --bs-emphasis-color-rgb: 255, 255, 255; + --bs-secondary-color: rgba(222, 226, 230, 0.75); + --bs-secondary-color-rgb: 222, 226, 230; + --bs-secondary-bg: #343a40; + --bs-secondary-bg-rgb: 52, 58, 64; + --bs-tertiary-color: rgba(222, 226, 230, 0.5); + --bs-tertiary-color-rgb: 222, 226, 230; + --bs-tertiary-bg: #2b3035; + --bs-tertiary-bg-rgb: 43, 48, 53; + --bs-primary-text-emphasis: #7397f6; + --bs-secondary-text-emphasis: #fa83a2; + --bs-success-text-emphasis: #97d67c; + --bs-info-text-emphasis: #cb7dfb; + --bs-warning-text-emphasis: #fbe680; + --bs-danger-text-emphasis: #ea868f; + --bs-light-text-emphasis: #f8f9fa; + --bs-dark-text-emphasis: #dee2e6; + --bs-primary-bg-subtle: #041030; + --bs-secondary-bg-subtle: #310a14; + --bs-success-bg-subtle: #102507; + --bs-info-bg-subtle: #220832; + --bs-warning-bg-subtle: #322b09; + --bs-danger-bg-subtle: #2c0b0e; + --bs-light-bg-subtle: #343a40; + --bs-dark-bg-subtle: #1a1d20; + --bs-primary-border-subtle: #0d3190; + --bs-secondary-border-subtle: #941d3c; + --bs-success-border-subtle: #317016; + --bs-info-border-subtle: #651795; + --bs-warning-border-subtle: #95801a; + --bs-danger-border-subtle: #842029; + --bs-light-border-subtle: #495057; + --bs-dark-border-subtle: #343a40; + --bs-heading-color: inherit; + --bs-link-color: #7397f6; + --bs-link-hover-color: #8facf8; + --bs-link-color-rgb: 115, 151, 246; + --bs-link-hover-color-rgb: 143, 172, 248; + --bs-code-color: #e685b5; + --bs-highlight-color: #dee2e6; + --bs-highlight-bg: #664d03; + --bs-border-color: #495057; + --bs-border-color-translucent: rgba(255, 255, 255, 0.15); + --bs-form-valid-color: #75b798; + --bs-form-valid-border-color: #75b798; + --bs-form-invalid-color: #ea868f; + --bs-form-invalid-border-color: #ea868f; +} + +*, +*::before, +*::after { + box-sizing: border-box; +} + +@media (prefers-reduced-motion: no-preference) { + :root { + scroll-behavior: smooth; + } +} + +body { + margin: 0; + font-family: var(--bs-body-font-family); + font-size: var(--bs-body-font-size); + font-weight: var(--bs-body-font-weight); + line-height: var(--bs-body-line-height); + color: var(--bs-body-color); + text-align: var(--bs-body-text-align); + background-color: var(--bs-body-bg); + -webkit-text-size-adjust: 100%; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); +} + +hr { + margin: 1rem 0; + color: inherit; + border: 0; + border-top: var(--bs-border-width) solid; + opacity: 0.25; +} + +h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 { + margin-top: 0; + margin-bottom: 0.5rem; + font-weight: 600; + line-height: 1.6; + color: var(--bs-heading-color); +} + +h1, .h1 { + font-size: calc(1.35rem + 1.2vw); +} +@media (min-width: 1200px) { + h1, .h1 { + font-size: 2.25rem; + } +} + +h2, .h2 { + font-size: calc(1.3125rem + 0.75vw); +} +@media (min-width: 1200px) { + h2, .h2 { + font-size: 1.875rem; + } +} + +h3, .h3 { + font-size: calc(1.275rem + 0.3vw); +} +@media (min-width: 1200px) { + h3, .h3 { + font-size: 1.5rem; + } +} + +h4, .h4 { + font-size: 1.125rem; +} + +h5, .h5 { + font-size: 1rem; +} + +h6, .h6 { + font-size: 1rem; +} + +p { + margin-top: 0; + margin-bottom: 1rem; +} + +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; +} + +ol, +ul, +dl { + margin-top: 0; + margin-bottom: 1rem; +} + +ol ol, +ul ul, +ol ul, +ul ol { + margin-bottom: 0; +} + +dt { + font-weight: 700; +} + +dd { + margin-bottom: 0.5rem; + margin-left: 0; +} + +blockquote { + margin: 0 0 1rem; +} + +b, +strong { + font-weight: bolder; +} + +small, .small { + font-size: 0.875em; +} + +mark, .mark { + padding: 0.1875em; + color: var(--bs-highlight-color); + background-color: var(--bs-highlight-bg); +} + +sub, +sup { + position: relative; + font-size: 0.75em; + line-height: 0; + vertical-align: baseline; +} + +sub { + bottom: -0.25em; +} + +sup { + top: -0.5em; +} + +a { + color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1)); + text-decoration: underline; +} +a:hover { + --bs-link-color-rgb: var(--bs-link-hover-color-rgb); +} + +a:not([href]):not([class]), a:not([href]):not([class]):hover { + color: inherit; + text-decoration: none; +} + +pre, +code, +kbd, +samp { + font-family: var(--bs-font-monospace); + font-size: 1em; +} + +pre { + display: block; + margin-top: 0; + margin-bottom: 1rem; + overflow: auto; + font-size: 0.875em; +} +pre code { + font-size: inherit; + color: inherit; + word-break: normal; +} + +code { + font-size: 0.875em; + color: var(--bs-code-color); + word-wrap: break-word; +} +a > code { + color: inherit; +} + +kbd { + padding: 0.1875rem 0.375rem; + font-size: 0.875em; + color: var(--bs-body-bg); + background-color: var(--bs-body-color); + border-radius: 0.25rem; +} +kbd kbd { + padding: 0; + font-size: 1em; +} + +figure { + margin: 0 0 1rem; +} + +img, +svg { + vertical-align: middle; +} + +table { + caption-side: bottom; + border-collapse: collapse; +} + +caption { + padding-top: 0.5rem; + padding-bottom: 0.5rem; + color: var(--bs-secondary-color); + text-align: left; +} + +th { + text-align: inherit; + text-align: -webkit-match-parent; +} + +thead, +tbody, +tfoot, +tr, +td, +th { + border-color: inherit; + border-style: solid; + border-width: 0; +} + +label { + display: inline-block; +} + +button { + border-radius: 0; +} + +button:focus:not(:focus-visible) { + outline: 0; +} + +input, +button, +select, +optgroup, +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]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator { + display: none !important; +} + +button, +[type=button], +[type=reset], +[type=submit] { + -webkit-appearance: button; +} +button:not(:disabled), +[type=button]:not(:disabled), +[type=reset]:not(:disabled), +[type=submit]: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: 0.5rem; + font-size: calc(1.275rem + 0.3vw); + line-height: inherit; +} +@media (min-width: 1200px) { + legend { + font-size: 1.5rem; + } +} +legend + * { + clear: left; +} + +::-webkit-datetime-edit-fields-wrapper, +::-webkit-datetime-edit-text, +::-webkit-datetime-edit-minute, +::-webkit-datetime-edit-hour-field, +::-webkit-datetime-edit-day-field, +::-webkit-datetime-edit-month-field, +::-webkit-datetime-edit-year-field { + padding: 0; +} + +::-webkit-inner-spin-button { + height: auto; +} + +[type=search] { + -webkit-appearance: textfield; + outline-offset: -2px; +} + +/* rtl:raw: +[type="tel"], +[type="url"], +[type="email"], +[type="number"] { + direction: ltr; +} +*/ +::-webkit-search-decoration { + -webkit-appearance: none; +} + +::-webkit-color-swatch-wrapper { + padding: 0; +} + +::file-selector-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.09375rem; + font-weight: 300; +} + +.display-1 { + font-size: calc(1.625rem + 4.5vw); + font-weight: 300; + line-height: 1.6; +} +@media (min-width: 1200px) { + .display-1 { + font-size: 5rem; + } +} + +.display-2 { + font-size: calc(1.575rem + 3.9vw); + font-weight: 300; + line-height: 1.6; +} +@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.6; +} +@media (min-width: 1200px) { + .display-3 { + font-size: 4rem; + } +} + +.display-4 { + font-size: calc(1.475rem + 2.7vw); + font-weight: 300; + line-height: 1.6; +} +@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.6; +} +@media (min-width: 1200px) { + .display-5 { + font-size: 3rem; + } +} + +.display-6 { + font-size: calc(1.375rem + 1.5vw); + font-weight: 300; + line-height: 1.6; +} +@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: 0.5rem; +} + +.initialism { + font-size: 0.875em; + text-transform: uppercase; +} + +.blockquote { + margin-bottom: 1rem; + font-size: 1.09375rem; +} +.blockquote > :last-child { + margin-bottom: 0; +} + +.blockquote-footer { + margin-top: -1rem; + margin-bottom: 1rem; + font-size: 0.875em; + color: #6c757d; +} +.blockquote-footer::before { + content: "— "; +} + +.img-fluid { + max-width: 100%; + height: auto; +} + +.img-thumbnail { + padding: 0.25rem; + background-color: var(--bs-body-bg); + border: var(--bs-border-width) solid var(--bs-border-color); + border-radius: var(--bs-border-radius); + max-width: 100%; + height: auto; +} + +.figure { + display: inline-block; +} + +.figure-img { + margin-bottom: 0.5rem; + line-height: 1; +} + +.figure-caption { + font-size: 0.875em; + color: var(--bs-secondary-color); +} + +.container, +.container-fluid, +.container-xxl, +.container-xl, +.container-lg, +.container-md, +.container-sm { + --bs-gutter-x: 30px; + --bs-gutter-y: 0; + width: 100%; + padding-right: calc(var(--bs-gutter-x) * 0.5); + padding-left: calc(var(--bs-gutter-x) * 0.5); + margin-right: auto; + margin-left: auto; +} + +@media (min-width: 576px) { + .container-sm, .container { + max-width: 540px; + } +} +@media (min-width: 768px) { + .container-md, .container-sm, .container { + max-width: 720px; + } +} +@media (min-width: 992px) { + .container-lg, .container-md, .container-sm, .container { + max-width: 960px; + } +} +@media (min-width: 1200px) { + .container-xl, .container-lg, .container-md, .container-sm, .container { + max-width: 1140px; + } +} +@media (min-width: 1400px) { + .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container { + max-width: 1320px; + } +} +:root { + --bs-breakpoint-xs: 0; + --bs-breakpoint-sm: 576px; + --bs-breakpoint-md: 768px; + --bs-breakpoint-lg: 992px; + --bs-breakpoint-xl: 1200px; + --bs-breakpoint-xxl: 1400px; +} + +.row { + --bs-gutter-x: 30px; + --bs-gutter-y: 0; + display: flex; + flex-wrap: wrap; + margin-top: calc(-1 * var(--bs-gutter-y)); + margin-right: calc(-0.5 * var(--bs-gutter-x)); + margin-left: calc(-0.5 * var(--bs-gutter-x)); +} +.row > * { + flex-shrink: 0; + width: 100%; + max-width: 100%; + padding-right: calc(var(--bs-gutter-x) * 0.5); + padding-left: calc(var(--bs-gutter-x) * 0.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.33333333%; +} + +.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.66666667%; +} + +.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 { + 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.33333333%; + } + .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.66666667%; + } + .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 { + 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.33333333%; + } + .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.66666667%; + } + .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 { + 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.33333333%; + } + .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.66666667%; + } + .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 { + 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.33333333%; + } + .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.66666667%; + } + .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 { + 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.33333333%; + } + .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.66666667%; + } + .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-color-type: initial; + --bs-table-bg-type: initial; + --bs-table-color-state: initial; + --bs-table-bg-state: initial; + --bs-table-color: var(--bs-emphasis-color); + --bs-table-bg: var(--bs-body-bg); + --bs-table-border-color: var(--bs-border-color); + --bs-table-accent-bg: transparent; + --bs-table-striped-color: var(--bs-emphasis-color); + --bs-table-striped-bg: #f0f0f0; + --bs-table-active-color: var(--bs-emphasis-color); + --bs-table-active-bg: rgba(var(--bs-emphasis-color-rgb), 0.1); + --bs-table-hover-color: var(--bs-emphasis-color); + --bs-table-hover-bg: rgba(var(--bs-emphasis-color-rgb), 0.075); + width: 100%; + margin-bottom: 1rem; + vertical-align: top; + border-color: var(--bs-table-border-color); +} +.table > :not(caption) > * > * { + padding: 0.5rem 0.5rem; + color: var(--bs-table-color-state, var(--bs-table-color-type, var(--bs-table-color))); + background-color: var(--bs-table-bg); + border-bottom-width: var(--bs-border-width); + box-shadow: inset 0 0 0 9999px var(--bs-table-bg-state, var(--bs-table-bg-type, var(--bs-table-accent-bg))); +} +.table > tbody { + vertical-align: inherit; +} +.table > thead { + vertical-align: bottom; +} + +.table-group-divider { + border-top: calc(var(--bs-border-width) * 2) solid currentcolor; +} + +.caption-top { + caption-side: top; +} + +.table-sm > :not(caption) > * > * { + padding: 0.25rem 0.25rem; +} + +.table-bordered > :not(caption) > * { + border-width: var(--bs-border-width) 0; +} +.table-bordered > :not(caption) > * > * { + border-width: 0 var(--bs-border-width); +} + +.table-borderless > :not(caption) > * > * { + border-bottom-width: 0; +} +.table-borderless > :not(:first-child) { + border-top-width: 0; +} + +.table-striped > tbody > tr:nth-of-type(odd) > * { + --bs-table-color-type: var(--bs-table-striped-color); + --bs-table-bg-type: var(--bs-table-striped-bg); +} + +.table-striped-columns > :not(caption) > tr > :nth-child(even) { + --bs-table-color-type: var(--bs-table-striped-color); + --bs-table-bg-type: var(--bs-table-striped-bg); +} + +.table-active { + --bs-table-color-state: var(--bs-table-active-color); + --bs-table-bg-state: var(--bs-table-active-bg); +} + +.table-hover > tbody > tr:hover > * { + --bs-table-color-state: var(--bs-table-hover-color); + --bs-table-bg-state: var(--bs-table-hover-bg); +} + +.table-primary { + --bs-table-color: #000; + --bs-table-bg: #d0dcfc; + --bs-table-border-color: #a6b0ca; + --bs-table-striped-bg: #c6d1ef; + --bs-table-striped-color: #000; + --bs-table-active-bg: #bbc6e3; + --bs-table-active-color: #000; + --bs-table-hover-bg: #c0cce9; + --bs-table-hover-color: #000; + color: var(--bs-table-color); + border-color: var(--bs-table-border-color); +} + +.table-secondary { + --bs-table-color: #000; + --bs-table-bg: #fdd6e0; + --bs-table-border-color: #caabb3; + --bs-table-striped-bg: #f0cbd5; + --bs-table-striped-color: #000; + --bs-table-active-bg: #e4c1ca; + --bs-table-active-color: #000; + --bs-table-hover-bg: #eac6cf; + --bs-table-hover-color: #000; + color: var(--bs-table-color); + border-color: var(--bs-table-border-color); +} + +.table-success { + --bs-table-color: #000; + --bs-table-bg: #dcf1d3; + --bs-table-border-color: #b0c1a9; + --bs-table-striped-bg: #d1e5c8; + --bs-table-striped-color: #000; + --bs-table-active-bg: #c6d9be; + --bs-table-active-color: #000; + --bs-table-hover-bg: #ccdfc3; + --bs-table-hover-color: #000; + color: var(--bs-table-color); + border-color: var(--bs-table-border-color); +} + +.table-info { + --bs-table-color: #000; + --bs-table-bg: #eed4fe; + --bs-table-border-color: #beaacb; + --bs-table-striped-bg: #e2c9f1; + --bs-table-striped-color: #000; + --bs-table-active-bg: #d6bfe5; + --bs-table-active-color: #000; + --bs-table-hover-bg: #dcc4eb; + --bs-table-hover-color: #000; + color: var(--bs-table-color); + border-color: var(--bs-table-border-color); +} + +.table-warning { + --bs-table-color: #000; + --bs-table-bg: #fef7d5; + --bs-table-border-color: #cbc6aa; + --bs-table-striped-bg: #f1ebca; + --bs-table-striped-color: #000; + --bs-table-active-bg: #e5dec0; + --bs-table-active-color: #000; + --bs-table-hover-bg: #ebe4c5; + --bs-table-hover-color: #000; + color: var(--bs-table-color); + border-color: var(--bs-table-border-color); +} + +.table-danger { + --bs-table-color: #000; + --bs-table-bg: #f8d7da; + --bs-table-border-color: #c6acae; + --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: var(--bs-table-color); + border-color: var(--bs-table-border-color); +} + +.table-light { + --bs-table-color: #000; + --bs-table-bg: #F7F6FF; + --bs-table-border-color: #c6c5cc; + --bs-table-striped-bg: #ebeaf2; + --bs-table-striped-color: #000; + --bs-table-active-bg: #dedde6; + --bs-table-active-color: #000; + --bs-table-hover-bg: #e4e4ec; + --bs-table-hover-color: #000; + color: var(--bs-table-color); + border-color: var(--bs-table-border-color); +} + +.table-dark { + --bs-table-color: #fff; + --bs-table-bg: #070707; + --bs-table-border-color: #393939; + --bs-table-striped-bg: #131313; + --bs-table-striped-color: #fff; + --bs-table-active-bg: #202020; + --bs-table-active-color: #fff; + --bs-table-hover-bg: #1a1a1a; + --bs-table-hover-color: #fff; + color: var(--bs-table-color); + border-color: var(--bs-table-border-color); +} + +.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: 0.5rem; +} + +.col-form-label { + padding-top: calc(0.375rem + var(--bs-border-width)); + padding-bottom: calc(0.375rem + var(--bs-border-width)); + margin-bottom: 0; + font-size: inherit; + line-height: 1.5; +} + +.col-form-label-lg { + padding-top: calc(0.5rem + var(--bs-border-width)); + padding-bottom: calc(0.5rem + var(--bs-border-width)); + font-size: 1.09375rem; +} + +.col-form-label-sm { + padding-top: calc(0.25rem + var(--bs-border-width)); + padding-bottom: calc(0.25rem + var(--bs-border-width)); + font-size: 0.765625rem; +} + +.form-text { + margin-top: 0.25rem; + font-size: 0.875em; + color: var(--bs-secondary-color); +} + +.form-control { + display: block; + width: 100%; + padding: 0.375rem 0.75rem; + font-size: 0.875rem; + font-weight: 400; + line-height: 1.5; + color: var(--bs-body-color); + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; + background-color: var(--bs-body-bg); + background-clip: padding-box; + border: var(--bs-border-width) solid var(--bs-border-color); + border-radius: var(--bs-border-radius); + transition: border-color 0.15s ease-in-out, box-shadow 0.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: var(--bs-body-color); + background-color: var(--bs-body-bg); + border-color: #8ba9f8; + outline: 0; + box-shadow: 0 0 0 0.25rem rgba(22, 82, 240, 0.25); +} +.form-control::-webkit-date-and-time-value { + min-width: 85px; + height: 1.5em; + margin: 0; +} +.form-control::-webkit-datetime-edit { + display: block; + padding: 0; +} +.form-control::-moz-placeholder { + color: var(--bs-secondary-color); + opacity: 1; +} +.form-control::placeholder { + color: var(--bs-secondary-color); + opacity: 1; +} +.form-control:disabled { + background-color: var(--bs-secondary-bg); + opacity: 1; +} +.form-control::file-selector-button { + padding: 0.375rem 0.75rem; + margin: -0.375rem -0.75rem; + margin-inline-end: 0.75rem; + color: var(--bs-body-color); + background-color: var(--bs-tertiary-bg); + pointer-events: none; + border-color: inherit; + border-style: solid; + border-width: 0; + border-inline-end-width: var(--bs-border-width); + border-radius: 0; + transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.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: var(--bs-secondary-bg); +} + +.form-control-plaintext { + display: block; + width: 100%; + padding: 0.375rem 0; + margin-bottom: 0; + line-height: 1.5; + color: var(--bs-body-color); + background-color: transparent; + border: solid transparent; + border-width: var(--bs-border-width) 0; +} +.form-control-plaintext:focus { + outline: 0; +} +.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg { + padding-right: 0; + padding-left: 0; +} + +.form-control-sm { + min-height: calc(1.5em + 0.5rem + calc(var(--bs-border-width) * 2)); + padding: 0.25rem 0.5rem; + font-size: 0.765625rem; + border-radius: var(--bs-border-radius-sm); +} +.form-control-sm::file-selector-button { + padding: 0.25rem 0.5rem; + margin: -0.25rem -0.5rem; + margin-inline-end: 0.5rem; +} + +.form-control-lg { + min-height: calc(1.5em + 1rem + calc(var(--bs-border-width) * 2)); + padding: 0.5rem 1rem; + font-size: 1.09375rem; + border-radius: var(--bs-border-radius-lg); +} +.form-control-lg::file-selector-button { + padding: 0.5rem 1rem; + margin: -0.5rem -1rem; + margin-inline-end: 1rem; +} + +textarea.form-control { + min-height: calc(1.5em + 0.75rem + calc(var(--bs-border-width) * 2)); +} +textarea.form-control-sm { + min-height: calc(1.5em + 0.5rem + calc(var(--bs-border-width) * 2)); +} +textarea.form-control-lg { + min-height: calc(1.5em + 1rem + calc(var(--bs-border-width) * 2)); +} + +.form-control-color { + width: 3rem; + height: calc(1.5em + 0.75rem + calc(var(--bs-border-width) * 2)); + padding: 0.375rem; +} +.form-control-color:not(:disabled):not([readonly]) { + cursor: pointer; +} +.form-control-color::-moz-color-swatch { + border: 0 !important; + border-radius: var(--bs-border-radius); +} +.form-control-color::-webkit-color-swatch { + border: 0 !important; + border-radius: var(--bs-border-radius); +} +.form-control-color.form-control-sm { + height: calc(1.5em + 0.5rem + calc(var(--bs-border-width) * 2)); +} +.form-control-color.form-control-lg { + height: calc(1.5em + 1rem + calc(var(--bs-border-width) * 2)); +} + +.form-select { + --bs-form-select-bg-img: 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 5 6 6 6-6'/%3e%3c/svg%3e"); + display: block; + width: 100%; + padding: 0.375rem 2.25rem 0.375rem 0.75rem; + font-size: 0.875rem; + font-weight: 400; + line-height: 1.5; + color: var(--bs-body-color); + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; + background-color: var(--bs-body-bg); + background-image: var(--bs-form-select-bg-img), var(--bs-form-select-bg-icon, none); + background-repeat: no-repeat; + background-position: right 0.75rem center; + background-size: 16px 12px; + border: var(--bs-border-width) solid var(--bs-border-color); + border-radius: var(--bs-border-radius); + transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; +} +@media (prefers-reduced-motion: reduce) { + .form-select { + transition: none; + } +} +.form-select:focus { + border-color: #8ba9f8; + outline: 0; + box-shadow: 0 0 0 0rem rgba(22, 82, 240, 0.25); +} +.form-select[multiple], .form-select[size]:not([size="1"]) { + padding-right: 0.75rem; + background-image: none; +} +.form-select:disabled { + background-color: var(--bs-secondary-bg); +} +.form-select:-moz-focusring { + color: transparent; + text-shadow: 0 0 0 var(--bs-body-color); +} + +.form-select-sm { + padding-top: 0.25rem; + padding-bottom: 0.25rem; + padding-left: 0.5rem; + font-size: 0.765625rem; + border-radius: var(--bs-border-radius-sm); +} + +.form-select-lg { + padding-top: 0.5rem; + padding-bottom: 0.5rem; + padding-left: 1rem; + font-size: 1.09375rem; + border-radius: var(--bs-border-radius-lg); +} + +[data-bs-theme=dark] .form-select { + --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23dee2e6' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e"); +} + +.form-check { + display: block; + min-height: 1.3125rem; + padding-left: 1.5em; + margin-bottom: 0.125rem; +} +.form-check .form-check-input { + float: left; + margin-left: -1.5em; +} + +.form-check-reverse { + padding-right: 1.5em; + padding-left: 0; + text-align: right; +} +.form-check-reverse .form-check-input { + float: right; + margin-right: -1.5em; + margin-left: 0; +} + +.form-check-input { + --bs-form-check-bg: var(--bs-body-bg); + flex-shrink: 0; + width: 1em; + height: 1em; + margin-top: 0.25em; + vertical-align: top; + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; + background-color: var(--bs-form-check-bg); + background-image: var(--bs-form-check-bg-image); + background-repeat: no-repeat; + background-position: center; + background-size: contain; + border: var(--bs-border-width) solid var(--bs-border-color); + -webkit-print-color-adjust: exact; + print-color-adjust: exact; +} +.form-check-input[type=checkbox] { + border-radius: 0.25em; +} +.form-check-input[type=radio] { + border-radius: 50%; +} +.form-check-input:active { + filter: brightness(90%); +} +.form-check-input:focus { + border-color: #8ba9f8; + outline: 0; + box-shadow: 0 0 0 0.25rem rgba(22, 82, 240, 0.25); +} +.form-check-input:checked { + background-color: #1652F0; + border-color: #1652F0; +} +.form-check-input:checked[type=checkbox] { + --bs-form-check-bg-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 10 3 3 6-6'/%3e%3c/svg%3e"); +} +.form-check-input:checked[type=radio] { + --bs-form-check-bg-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: #1652F0; + border-color: #1652F0; + --bs-form-check-bg-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: 0.5; +} +.form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label { + cursor: default; + opacity: 0.5; +} + +.form-switch { + padding-left: 2.5em; +} +.form-switch .form-check-input { + --bs-form-switch-bg: 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"); + width: 2em; + margin-left: -2.5em; + background-image: var(--bs-form-switch-bg); + background-position: left center; + border-radius: 2em; + transition: background-position 0.15s ease-in-out; +} +@media (prefers-reduced-motion: reduce) { + .form-switch .form-check-input { + transition: none; + } +} +.form-switch .form-check-input:focus { + --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%238ba9f8'/%3e%3c/svg%3e"); +} +.form-switch .form-check-input:checked { + background-position: right center; + --bs-form-switch-bg: 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-switch.form-check-reverse { + padding-right: 2.5em; + padding-left: 0; +} +.form-switch.form-check-reverse .form-check-input { + margin-right: -2.5em; + margin-left: 0; +} + +.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: 0.65; +} + +[data-bs-theme=dark] .form-switch .form-check-input:not(:checked):not(:focus) { + --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%28255, 255, 255, 0.25%29'/%3e%3c/svg%3e"); +} + +.form-range { + width: 100%; + height: 1rem; + padding: 0; + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; + background-color: transparent; +} +.form-range:focus { + outline: 0; +} +.form-range:focus::-webkit-slider-thumb { + box-shadow: 0 0 0 1px #f0f0f0, 0 0 0 0.25rem rgba(22, 82, 240, 0.25); +} +.form-range:focus::-moz-range-thumb { + box-shadow: 0 0 0 1px #f0f0f0, 0 0 0 0.25rem rgba(22, 82, 240, 0.25); +} +.form-range::-moz-focus-outer { + border: 0; +} +.form-range::-webkit-slider-thumb { + width: 1rem; + height: 1rem; + margin-top: -0.25rem; + -webkit-appearance: none; + appearance: none; + background-color: #1652F0; + border: 0; + border-radius: 1rem; + -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; +} +@media (prefers-reduced-motion: reduce) { + .form-range::-webkit-slider-thumb { + -webkit-transition: none; + transition: none; + } +} +.form-range::-webkit-slider-thumb:active { + background-color: #b9cbfb; +} +.form-range::-webkit-slider-runnable-track { + width: 100%; + height: 0.5rem; + color: transparent; + cursor: pointer; + background-color: var(--bs-secondary-bg); + border-color: transparent; + border-radius: 1rem; +} +.form-range::-moz-range-thumb { + width: 1rem; + height: 1rem; + -moz-appearance: none; + appearance: none; + background-color: #1652F0; + border: 0; + border-radius: 1rem; + -moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; +} +@media (prefers-reduced-motion: reduce) { + .form-range::-moz-range-thumb { + -moz-transition: none; + transition: none; + } +} +.form-range::-moz-range-thumb:active { + background-color: #b9cbfb; +} +.form-range::-moz-range-track { + width: 100%; + height: 0.5rem; + color: transparent; + cursor: pointer; + background-color: var(--bs-secondary-bg); + border-color: transparent; + border-radius: 1rem; +} +.form-range:disabled { + pointer-events: none; +} +.form-range:disabled::-webkit-slider-thumb { + background-color: var(--bs-secondary-color); +} +.form-range:disabled::-moz-range-thumb { + background-color: var(--bs-secondary-color); +} + +.form-floating { + position: relative; +} +.form-floating > .form-control, +.form-floating > .form-control-plaintext, +.form-floating > .form-select { + height: calc(3.5rem + calc(var(--bs-border-width) * 2)); + min-height: calc(3.5rem + calc(var(--bs-border-width) * 2)); + line-height: 1.25; +} +.form-floating > label { + position: absolute; + top: 0; + left: 0; + z-index: 2; + height: 100%; + padding: 1rem 0.75rem; + overflow: hidden; + text-align: start; + text-overflow: ellipsis; + white-space: nowrap; + pointer-events: none; + border: var(--bs-border-width) solid transparent; + transform-origin: 0 0; + transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out; +} +@media (prefers-reduced-motion: reduce) { + .form-floating > label { + transition: none; + } +} +.form-floating > .form-control, +.form-floating > .form-control-plaintext { + padding: 1rem 0.75rem; +} +.form-floating > .form-control::-moz-placeholder, .form-floating > .form-control-plaintext::-moz-placeholder { + color: transparent; +} +.form-floating > .form-control::placeholder, +.form-floating > .form-control-plaintext::placeholder { + color: transparent; +} +.form-floating > .form-control:not(:-moz-placeholder-shown), .form-floating > .form-control-plaintext:not(:-moz-placeholder-shown) { + padding-top: 1.625rem; + padding-bottom: 0.625rem; +} +.form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown), +.form-floating > .form-control-plaintext:focus, +.form-floating > .form-control-plaintext:not(:placeholder-shown) { + padding-top: 1.625rem; + padding-bottom: 0.625rem; +} +.form-floating > .form-control:-webkit-autofill, +.form-floating > .form-control-plaintext:-webkit-autofill { + padding-top: 1.625rem; + padding-bottom: 0.625rem; +} +.form-floating > .form-select { + padding-top: 1.625rem; + padding-bottom: 0.625rem; +} +.form-floating > .form-control:not(:-moz-placeholder-shown) ~ label { + color: rgba(var(--bs-body-color-rgb), 0.65); + transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem); +} +.form-floating > .form-control:focus ~ label, +.form-floating > .form-control:not(:placeholder-shown) ~ label, +.form-floating > .form-control-plaintext ~ label, +.form-floating > .form-select ~ label { + color: rgba(var(--bs-body-color-rgb), 0.65); + transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem); +} +.form-floating > .form-control:not(:-moz-placeholder-shown) ~ label::after { + position: absolute; + inset: 1rem 0.375rem; + z-index: -1; + height: 1.5em; + content: ""; + background-color: var(--bs-body-bg); + border-radius: var(--bs-border-radius); +} +.form-floating > .form-control:focus ~ label::after, +.form-floating > .form-control:not(:placeholder-shown) ~ label::after, +.form-floating > .form-control-plaintext ~ label::after, +.form-floating > .form-select ~ label::after { + position: absolute; + inset: 1rem 0.375rem; + z-index: -1; + height: 1.5em; + content: ""; + background-color: var(--bs-body-bg); + border-radius: var(--bs-border-radius); +} +.form-floating > .form-control:-webkit-autofill ~ label { + color: rgba(var(--bs-body-color-rgb), 0.65); + transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem); +} +.form-floating > .form-control-plaintext ~ label { + border-width: var(--bs-border-width) 0; +} +.form-floating > :disabled ~ label, +.form-floating > .form-control:disabled ~ label { + color: #6c757d; +} +.form-floating > :disabled ~ label::after, +.form-floating > .form-control:disabled ~ label::after { + background-color: var(--bs-secondary-bg); +} + +.input-group { + position: relative; + display: flex; + flex-wrap: wrap; + align-items: stretch; + width: 100%; +} +.input-group > .form-control, +.input-group > .form-select, +.input-group > .form-floating { + position: relative; + flex: 1 1 auto; + width: 1%; + min-width: 0; +} +.input-group > .form-control:focus, +.input-group > .form-select:focus, +.input-group > .form-floating:focus-within { + z-index: 5; +} +.input-group .btn { + position: relative; + z-index: 2; +} +.input-group .btn:focus { + z-index: 5; +} + +.input-group-text { + display: flex; + align-items: center; + padding: 0.375rem 0.75rem; + font-size: 0.875rem; + font-weight: 400; + line-height: 1.5; + color: var(--bs-body-color); + text-align: center; + white-space: nowrap; + background-color: var(--bs-tertiary-bg); + border: var(--bs-border-width) solid var(--bs-border-color); + border-radius: var(--bs-border-radius); +} + +.input-group-lg > .form-control, +.input-group-lg > .form-select, +.input-group-lg > .input-group-text, +.input-group-lg > .btn { + padding: 0.5rem 1rem; + font-size: 1.09375rem; + border-radius: var(--bs-border-radius-lg); +} + +.input-group-sm > .form-control, +.input-group-sm > .form-select, +.input-group-sm > .input-group-text, +.input-group-sm > .btn { + padding: 0.25rem 0.5rem; + font-size: 0.765625rem; + border-radius: var(--bs-border-radius-sm); +} + +.input-group-lg > .form-select, +.input-group-sm > .form-select { + padding-right: 3rem; +} + +.input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating), +.input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n+3), +.input-group:not(.has-validation) > .form-floating:not(:last-child) > .form-control, +.input-group:not(.has-validation) > .form-floating:not(:last-child) > .form-select { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} +.input-group.has-validation > :nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating), +.input-group.has-validation > .dropdown-toggle:nth-last-child(n+4), +.input-group.has-validation > .form-floating:nth-last-child(n+3) > .form-control, +.input-group.has-validation > .form-floating:nth-last-child(n+3) > .form-select { + 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: calc(var(--bs-border-width) * -1); + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} +.input-group > .form-floating:not(:first-child) > .form-control, +.input-group > .form-floating:not(:first-child) > .form-select { + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} + +.valid-feedback { + display: none; + width: 100%; + margin-top: 0.25rem; + font-size: 0.875em; + color: var(--bs-form-valid-color); +} + +.valid-tooltip { + position: absolute; + top: 100%; + z-index: 5; + display: none; + max-width: 100%; + padding: 0.25rem 0.5rem; + margin-top: 0.1rem; + font-size: 0.765625rem; + color: #fff; + background-color: var(--bs-success); + border-radius: var(--bs-border-radius); +} + +.was-validated :valid ~ .valid-feedback, +.was-validated :valid ~ .valid-tooltip, +.is-valid ~ .valid-feedback, +.is-valid ~ .valid-tooltip { + display: block; +} + +.was-validated .form-control:valid, .form-control.is-valid { + border-color: var(--bs-form-valid-border-color); + padding-right: calc(1.5em + 0.75rem); + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2351BB25' d='M2.3 6.73.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(0.375em + 0.1875rem) center; + background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); +} +.was-validated .form-control:valid:focus, .form-control.is-valid:focus { + border-color: var(--bs-form-valid-border-color); + box-shadow: 0 0 0 0rem rgba(var(--bs-success-rgb), 0.25); +} + +.was-validated textarea.form-control:valid, textarea.form-control.is-valid { + padding-right: calc(1.5em + 0.75rem); + background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem); +} + +.was-validated .form-select:valid, .form-select.is-valid { + border-color: var(--bs-form-valid-border-color); +} +.was-validated .form-select:valid:not([multiple]):not([size]), .was-validated .form-select:valid:not([multiple])[size="1"], .form-select.is-valid:not([multiple]):not([size]), .form-select.is-valid:not([multiple])[size="1"] { + --bs-form-select-bg-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2351BB25' d='M2.3 6.73.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"); + padding-right: 4.125rem; + background-position: right 0.75rem center, center right 2.25rem; + background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); +} +.was-validated .form-select:valid:focus, .form-select.is-valid:focus { + border-color: var(--bs-form-valid-border-color); + box-shadow: 0 0 0 0rem rgba(var(--bs-success-rgb), 0.25); +} + +.was-validated .form-control-color:valid, .form-control-color.is-valid { + width: calc(3rem + calc(1.5em + 0.75rem)); +} + +.was-validated .form-check-input:valid, .form-check-input.is-valid { + border-color: var(--bs-form-valid-border-color); +} +.was-validated .form-check-input:valid:checked, .form-check-input.is-valid:checked { + background-color: var(--bs-form-valid-color); +} +.was-validated .form-check-input:valid:focus, .form-check-input.is-valid:focus { + box-shadow: 0 0 0 0rem rgba(var(--bs-success-rgb), 0.25); +} +.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label { + color: var(--bs-form-valid-color); +} + +.form-check-inline .form-check-input ~ .valid-feedback { + margin-left: 0.5em; +} + +.was-validated .input-group > .form-control:not(:focus):valid, .input-group > .form-control:not(:focus).is-valid, +.was-validated .input-group > .form-select:not(:focus):valid, +.input-group > .form-select:not(:focus).is-valid, +.was-validated .input-group > .form-floating:not(:focus-within):valid, +.input-group > .form-floating:not(:focus-within).is-valid { + z-index: 3; +} + +.invalid-feedback { + display: none; + width: 100%; + margin-top: 0.25rem; + font-size: 0.875em; + color: var(--bs-form-invalid-color); +} + +.invalid-tooltip { + position: absolute; + top: 100%; + z-index: 5; + display: none; + max-width: 100%; + padding: 0.25rem 0.5rem; + margin-top: 0.1rem; + font-size: 0.765625rem; + color: #fff; + background-color: var(--bs-danger); + border-radius: var(--bs-border-radius); +} + +.was-validated :invalid ~ .invalid-feedback, +.was-validated :invalid ~ .invalid-tooltip, +.is-invalid ~ .invalid-feedback, +.is-invalid ~ .invalid-tooltip { + display: block; +} + +.was-validated .form-control:invalid, .form-control.is-invalid { + border-color: var(--bs-form-invalid-border-color); + padding-right: calc(1.5em + 0.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(0.375em + 0.1875rem) center; + background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); +} +.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus { + border-color: var(--bs-form-invalid-border-color); + box-shadow: 0 0 0 0rem rgba(var(--bs-danger-rgb), 0.25); +} + +.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid { + padding-right: calc(1.5em + 0.75rem); + background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem); +} + +.was-validated .form-select:invalid, .form-select.is-invalid { + border-color: var(--bs-form-invalid-border-color); +} +.was-validated .form-select:invalid:not([multiple]):not([size]), .was-validated .form-select:invalid:not([multiple])[size="1"], .form-select.is-invalid:not([multiple]):not([size]), .form-select.is-invalid:not([multiple])[size="1"] { + --bs-form-select-bg-icon: 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"); + padding-right: 4.125rem; + background-position: right 0.75rem center, center right 2.25rem; + background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); +} +.was-validated .form-select:invalid:focus, .form-select.is-invalid:focus { + border-color: var(--bs-form-invalid-border-color); + box-shadow: 0 0 0 0rem rgba(var(--bs-danger-rgb), 0.25); +} + +.was-validated .form-control-color:invalid, .form-control-color.is-invalid { + width: calc(3rem + calc(1.5em + 0.75rem)); +} + +.was-validated .form-check-input:invalid, .form-check-input.is-invalid { + border-color: var(--bs-form-invalid-border-color); +} +.was-validated .form-check-input:invalid:checked, .form-check-input.is-invalid:checked { + background-color: var(--bs-form-invalid-color); +} +.was-validated .form-check-input:invalid:focus, .form-check-input.is-invalid:focus { + box-shadow: 0 0 0 0rem rgba(var(--bs-danger-rgb), 0.25); +} +.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label { + color: var(--bs-form-invalid-color); +} + +.form-check-inline .form-check-input ~ .invalid-feedback { + margin-left: 0.5em; +} + +.was-validated .input-group > .form-control:not(:focus):invalid, .input-group > .form-control:not(:focus).is-invalid, +.was-validated .input-group > .form-select:not(:focus):invalid, +.input-group > .form-select:not(:focus).is-invalid, +.was-validated .input-group > .form-floating:not(:focus-within):invalid, +.input-group > .form-floating:not(:focus-within).is-invalid { + z-index: 4; +} + +.btn { + --bs-btn-padding-x: 0.75rem; + --bs-btn-padding-y: 0.375rem; + --bs-btn-font-family: ; + --bs-btn-font-size: 0.875rem; + --bs-btn-font-weight: 400; + --bs-btn-line-height: 1.5; + --bs-btn-color: var(--bs-body-color); + --bs-btn-bg: transparent; + --bs-btn-border-width: var(--bs-border-width); + --bs-btn-border-color: transparent; + --bs-btn-border-radius: var(--bs-border-radius); + --bs-btn-hover-border-color: transparent; + --bs-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075); + --bs-btn-disabled-opacity: 0.65; + --bs-btn-focus-box-shadow: 0 0 0 0rem rgba(var(--bs-btn-focus-shadow-rgb), .5); + display: inline-block; + padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x); + font-family: var(--bs-btn-font-family); + font-size: var(--bs-btn-font-size); + font-weight: var(--bs-btn-font-weight); + line-height: var(--bs-btn-line-height); + color: var(--bs-btn-color); + text-align: center; + text-decoration: none; + vertical-align: middle; + cursor: pointer; + -webkit-user-select: none; + -moz-user-select: none; + user-select: none; + border: var(--bs-btn-border-width) solid var(--bs-btn-border-color); + border-radius: var(--bs-btn-border-radius); + background-color: var(--bs-btn-bg); + transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; +} +@media (prefers-reduced-motion: reduce) { + .btn { + transition: none; + } +} +.btn:hover { + color: var(--bs-btn-hover-color); + background-color: var(--bs-btn-hover-bg); + border-color: var(--bs-btn-hover-border-color); +} +.btn-check + .btn:hover { + color: var(--bs-btn-color); + background-color: var(--bs-btn-bg); + border-color: var(--bs-btn-border-color); +} +.btn:focus-visible { + color: var(--bs-btn-hover-color); + background-color: var(--bs-btn-hover-bg); + border-color: var(--bs-btn-hover-border-color); + outline: 0; + box-shadow: var(--bs-btn-focus-box-shadow); +} +.btn-check:focus-visible + .btn { + border-color: var(--bs-btn-hover-border-color); + outline: 0; + box-shadow: var(--bs-btn-focus-box-shadow); +} +.btn-check:checked + .btn, :not(.btn-check) + .btn:active, .btn:first-child:active, .btn.active, .btn.show { + color: var(--bs-btn-active-color); + background-color: var(--bs-btn-active-bg); + border-color: var(--bs-btn-active-border-color); +} +.btn-check:checked + .btn:focus-visible, :not(.btn-check) + .btn:active:focus-visible, .btn:first-child:active:focus-visible, .btn.active:focus-visible, .btn.show:focus-visible { + box-shadow: var(--bs-btn-focus-box-shadow); +} +.btn:disabled, .btn.disabled, fieldset:disabled .btn { + color: var(--bs-btn-disabled-color); + pointer-events: none; + background-color: var(--bs-btn-disabled-bg); + border-color: var(--bs-btn-disabled-border-color); + opacity: var(--bs-btn-disabled-opacity); +} + +.btn-primary { + --bs-btn-color: #fff; + --bs-btn-bg: #1652F0; + --bs-btn-border-color: #1652F0; + --bs-btn-hover-color: #fff; + --bs-btn-hover-bg: #1346cc; + --bs-btn-hover-border-color: #1242c0; + --bs-btn-focus-shadow-rgb: 57, 108, 242; + --bs-btn-active-color: #fff; + --bs-btn-active-bg: #1242c0; + --bs-btn-active-border-color: #113eb4; + --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); + --bs-btn-disabled-color: #fff; + --bs-btn-disabled-bg: #1652F0; + --bs-btn-disabled-border-color: #1652F0; +} + +.btn-secondary { + --bs-btn-color: #000; + --bs-btn-bg: #f73164; + --bs-btn-border-color: #f73164; + --bs-btn-hover-color: #000; + --bs-btn-hover-bg: #f8507b; + --bs-btn-hover-border-color: #f84674; + --bs-btn-focus-shadow-rgb: 210, 42, 85; + --bs-btn-active-color: #000; + --bs-btn-active-bg: #f95a83; + --bs-btn-active-border-color: #f84674; + --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); + --bs-btn-disabled-color: #000; + --bs-btn-disabled-bg: #f73164; + --bs-btn-disabled-border-color: #f73164; +} + +.btn-success { + --bs-btn-color: #000; + --bs-btn-bg: #51BB25; + --bs-btn-border-color: #51BB25; + --bs-btn-hover-color: #000; + --bs-btn-hover-bg: #6bc546; + --bs-btn-hover-border-color: #62c23b; + --bs-btn-focus-shadow-rgb: 69, 159, 31; + --bs-btn-active-color: #000; + --bs-btn-active-bg: #74c951; + --bs-btn-active-border-color: #62c23b; + --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); + --bs-btn-disabled-color: #000; + --bs-btn-disabled-bg: #51BB25; + --bs-btn-disabled-border-color: #51BB25; +} + +.btn-info { + --bs-btn-color: #fff; + --bs-btn-bg: #A927F9; + --bs-btn-border-color: #A927F9; + --bs-btn-hover-color: #fff; + --bs-btn-hover-bg: #9021d4; + --bs-btn-hover-border-color: #871fc7; + --bs-btn-focus-shadow-rgb: 182, 71, 250; + --bs-btn-active-color: #fff; + --bs-btn-active-bg: #871fc7; + --bs-btn-active-border-color: #7f1dbb; + --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); + --bs-btn-disabled-color: #fff; + --bs-btn-disabled-bg: #A927F9; + --bs-btn-disabled-border-color: #A927F9; +} + +.btn-warning { + --bs-btn-color: #000; + --bs-btn-bg: #F8D62B; + --bs-btn-border-color: #F8D62B; + --bs-btn-hover-color: #000; + --bs-btn-hover-bg: #f9dc4b; + --bs-btn-hover-border-color: #f9da40; + --bs-btn-focus-shadow-rgb: 211, 182, 37; + --bs-btn-active-color: #000; + --bs-btn-active-bg: #f9de55; + --bs-btn-active-border-color: #f9da40; + --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); + --bs-btn-disabled-color: #000; + --bs-btn-disabled-bg: #F8D62B; + --bs-btn-disabled-border-color: #F8D62B; +} + +.btn-danger { + --bs-btn-color: #fff; + --bs-btn-bg: #DC3545; + --bs-btn-border-color: #DC3545; + --bs-btn-hover-color: #fff; + --bs-btn-hover-bg: #bb2d3b; + --bs-btn-hover-border-color: #b02a37; + --bs-btn-focus-shadow-rgb: 225, 83, 97; + --bs-btn-active-color: #fff; + --bs-btn-active-bg: #b02a37; + --bs-btn-active-border-color: #a52834; + --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); + --bs-btn-disabled-color: #fff; + --bs-btn-disabled-bg: #DC3545; + --bs-btn-disabled-border-color: #DC3545; +} + +.btn-light { + --bs-btn-color: #000; + --bs-btn-bg: #F7F6FF; + --bs-btn-border-color: #F7F6FF; + --bs-btn-hover-color: #000; + --bs-btn-hover-bg: #d2d1d9; + --bs-btn-hover-border-color: #c6c5cc; + --bs-btn-focus-shadow-rgb: 210, 209, 217; + --bs-btn-active-color: #000; + --bs-btn-active-bg: #c6c5cc; + --bs-btn-active-border-color: #b9b9bf; + --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); + --bs-btn-disabled-color: #000; + --bs-btn-disabled-bg: #F7F6FF; + --bs-btn-disabled-border-color: #F7F6FF; +} + +.btn-dark { + --bs-btn-color: #fff; + --bs-btn-bg: #070707; + --bs-btn-border-color: #070707; + --bs-btn-hover-color: #fff; + --bs-btn-hover-bg: #2c2c2c; + --bs-btn-hover-border-color: #202020; + --bs-btn-focus-shadow-rgb: 44, 44, 44; + --bs-btn-active-color: #fff; + --bs-btn-active-bg: #393939; + --bs-btn-active-border-color: #202020; + --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); + --bs-btn-disabled-color: #fff; + --bs-btn-disabled-bg: #070707; + --bs-btn-disabled-border-color: #070707; +} + +.btn-outline-primary { + --bs-btn-color: #1652F0; + --bs-btn-border-color: #1652F0; + --bs-btn-hover-color: #fff; + --bs-btn-hover-bg: #1652F0; + --bs-btn-hover-border-color: #1652F0; + --bs-btn-focus-shadow-rgb: 22, 82, 240; + --bs-btn-active-color: #fff; + --bs-btn-active-bg: #1652F0; + --bs-btn-active-border-color: #1652F0; + --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); + --bs-btn-disabled-color: #1652F0; + --bs-btn-disabled-bg: transparent; + --bs-btn-disabled-border-color: #1652F0; + --bs-gradient: none; +} + +.btn-outline-secondary { + --bs-btn-color: #f73164; + --bs-btn-border-color: #f73164; + --bs-btn-hover-color: #000; + --bs-btn-hover-bg: #f73164; + --bs-btn-hover-border-color: #f73164; + --bs-btn-focus-shadow-rgb: 247, 49, 100; + --bs-btn-active-color: #000; + --bs-btn-active-bg: #f73164; + --bs-btn-active-border-color: #f73164; + --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); + --bs-btn-disabled-color: #f73164; + --bs-btn-disabled-bg: transparent; + --bs-btn-disabled-border-color: #f73164; + --bs-gradient: none; +} + +.btn-outline-success { + --bs-btn-color: #51BB25; + --bs-btn-border-color: #51BB25; + --bs-btn-hover-color: #000; + --bs-btn-hover-bg: #51BB25; + --bs-btn-hover-border-color: #51BB25; + --bs-btn-focus-shadow-rgb: 81, 187, 37; + --bs-btn-active-color: #000; + --bs-btn-active-bg: #51BB25; + --bs-btn-active-border-color: #51BB25; + --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); + --bs-btn-disabled-color: #51BB25; + --bs-btn-disabled-bg: transparent; + --bs-btn-disabled-border-color: #51BB25; + --bs-gradient: none; +} + +.btn-outline-info { + --bs-btn-color: #A927F9; + --bs-btn-border-color: #A927F9; + --bs-btn-hover-color: #fff; + --bs-btn-hover-bg: #A927F9; + --bs-btn-hover-border-color: #A927F9; + --bs-btn-focus-shadow-rgb: 169, 39, 249; + --bs-btn-active-color: #fff; + --bs-btn-active-bg: #A927F9; + --bs-btn-active-border-color: #A927F9; + --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); + --bs-btn-disabled-color: #A927F9; + --bs-btn-disabled-bg: transparent; + --bs-btn-disabled-border-color: #A927F9; + --bs-gradient: none; +} + +.btn-outline-warning { + --bs-btn-color: #F8D62B; + --bs-btn-border-color: #F8D62B; + --bs-btn-hover-color: #000; + --bs-btn-hover-bg: #F8D62B; + --bs-btn-hover-border-color: #F8D62B; + --bs-btn-focus-shadow-rgb: 248, 214, 43; + --bs-btn-active-color: #000; + --bs-btn-active-bg: #F8D62B; + --bs-btn-active-border-color: #F8D62B; + --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); + --bs-btn-disabled-color: #F8D62B; + --bs-btn-disabled-bg: transparent; + --bs-btn-disabled-border-color: #F8D62B; + --bs-gradient: none; +} + +.btn-outline-danger { + --bs-btn-color: #DC3545; + --bs-btn-border-color: #DC3545; + --bs-btn-hover-color: #fff; + --bs-btn-hover-bg: #DC3545; + --bs-btn-hover-border-color: #DC3545; + --bs-btn-focus-shadow-rgb: 220, 53, 69; + --bs-btn-active-color: #fff; + --bs-btn-active-bg: #DC3545; + --bs-btn-active-border-color: #DC3545; + --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); + --bs-btn-disabled-color: #DC3545; + --bs-btn-disabled-bg: transparent; + --bs-btn-disabled-border-color: #DC3545; + --bs-gradient: none; +} + +.btn-outline-light { + --bs-btn-color: #F7F6FF; + --bs-btn-border-color: #F7F6FF; + --bs-btn-hover-color: #000; + --bs-btn-hover-bg: #F7F6FF; + --bs-btn-hover-border-color: #F7F6FF; + --bs-btn-focus-shadow-rgb: 247, 246, 255; + --bs-btn-active-color: #000; + --bs-btn-active-bg: #F7F6FF; + --bs-btn-active-border-color: #F7F6FF; + --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); + --bs-btn-disabled-color: #F7F6FF; + --bs-btn-disabled-bg: transparent; + --bs-btn-disabled-border-color: #F7F6FF; + --bs-gradient: none; +} + +.btn-outline-dark { + --bs-btn-color: #070707; + --bs-btn-border-color: #070707; + --bs-btn-hover-color: #fff; + --bs-btn-hover-bg: #070707; + --bs-btn-hover-border-color: #070707; + --bs-btn-focus-shadow-rgb: 7, 7, 7; + --bs-btn-active-color: #fff; + --bs-btn-active-bg: #070707; + --bs-btn-active-border-color: #070707; + --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); + --bs-btn-disabled-color: #070707; + --bs-btn-disabled-bg: transparent; + --bs-btn-disabled-border-color: #070707; + --bs-gradient: none; +} + +.btn-link { + --bs-btn-font-weight: 400; + --bs-btn-color: var(--bs-link-color); + --bs-btn-bg: transparent; + --bs-btn-border-color: transparent; + --bs-btn-hover-color: var(--bs-link-hover-color); + --bs-btn-hover-border-color: transparent; + --bs-btn-active-color: var(--bs-link-hover-color); + --bs-btn-active-border-color: transparent; + --bs-btn-disabled-color: #6c757d; + --bs-btn-disabled-border-color: transparent; + --bs-btn-box-shadow: 0 0 0 #000; + --bs-btn-focus-shadow-rgb: 57, 108, 242; + text-decoration: underline; +} +.btn-link:focus-visible { + color: var(--bs-btn-color); +} +.btn-link:hover { + color: var(--bs-btn-hover-color); +} + +.btn-lg, .btn-group-lg > .btn { + --bs-btn-padding-y: 0.5rem; + --bs-btn-padding-x: 1rem; + --bs-btn-font-size: 1.09375rem; + --bs-btn-border-radius: var(--bs-border-radius-lg); +} + +.btn-sm, .btn-group-sm > .btn { + --bs-btn-padding-y: 0.25rem; + --bs-btn-padding-x: 0.5rem; + --bs-btn-font-size: 0.765625rem; + --bs-btn-border-radius: var(--bs-border-radius-sm); +} + +.fade { + transition: opacity 0.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 0.35s ease; +} +@media (prefers-reduced-motion: reduce) { + .collapsing { + transition: none; + } +} +.collapsing.collapse-horizontal { + width: 0; + height: auto; + transition: width 0.35s ease; +} +@media (prefers-reduced-motion: reduce) { + .collapsing.collapse-horizontal { + transition: none; + } +} + +.dropup, +.dropend, +.dropdown, +.dropstart, +.dropup-center, +.dropdown-center { + position: relative; +} + +.dropdown-toggle { + white-space: nowrap; +} +.dropdown-toggle::after { + display: inline-block; + margin-left: 0.255em; + vertical-align: 0.255em; + content: ""; + border-top: 0.3em solid; + border-right: 0.3em solid transparent; + border-bottom: 0; + border-left: 0.3em solid transparent; +} +.dropdown-toggle:empty::after { + margin-left: 0; +} + +.dropdown-menu { + --bs-dropdown-zindex: 1000; + --bs-dropdown-min-width: 10rem; + --bs-dropdown-padding-x: 0; + --bs-dropdown-padding-y: 0.5rem; + --bs-dropdown-spacer: 0.125rem; + --bs-dropdown-font-size: 0.875rem; + --bs-dropdown-color: var(--bs-body-color); + --bs-dropdown-bg: var(--bs-body-bg); + --bs-dropdown-border-color: var(--bs-border-color-translucent); + --bs-dropdown-border-radius: var(--bs-border-radius); + --bs-dropdown-border-width: var(--bs-border-width); + --bs-dropdown-inner-border-radius: calc(var(--bs-border-radius) - var(--bs-border-width)); + --bs-dropdown-divider-bg: var(--bs-border-color-translucent); + --bs-dropdown-divider-margin-y: 0.5rem; + --bs-dropdown-box-shadow: var(--bs-box-shadow); + --bs-dropdown-link-color: var(--bs-body-color); + --bs-dropdown-link-hover-color: var(--bs-body-color); + --bs-dropdown-link-hover-bg: var(--bs-tertiary-bg); + --bs-dropdown-link-active-color: #fff; + --bs-dropdown-link-active-bg: #1652F0; + --bs-dropdown-link-disabled-color: var(--bs-tertiary-color); + --bs-dropdown-item-padding-x: 1rem; + --bs-dropdown-item-padding-y: 0.25rem; + --bs-dropdown-header-color: #6c757d; + --bs-dropdown-header-padding-x: 1rem; + --bs-dropdown-header-padding-y: 0.5rem; + position: absolute; + z-index: var(--bs-dropdown-zindex); + display: none; + min-width: var(--bs-dropdown-min-width); + padding: var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x); + margin: 0; + font-size: var(--bs-dropdown-font-size); + color: var(--bs-dropdown-color); + text-align: left; + list-style: none; + background-color: var(--bs-dropdown-bg); + background-clip: padding-box; + border: var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color); + border-radius: var(--bs-dropdown-border-radius); +} +.dropdown-menu[data-bs-popper] { + top: 100%; + left: 0; + margin-top: var(--bs-dropdown-spacer); +} + +.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: var(--bs-dropdown-spacer); +} +.dropup .dropdown-toggle::after { + display: inline-block; + margin-left: 0.255em; + vertical-align: 0.255em; + content: ""; + border-top: 0; + border-right: 0.3em solid transparent; + border-bottom: 0.3em solid; + border-left: 0.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: var(--bs-dropdown-spacer); +} +.dropend .dropdown-toggle::after { + display: inline-block; + margin-left: 0.255em; + vertical-align: 0.255em; + content: ""; + border-top: 0.3em solid transparent; + border-right: 0; + border-bottom: 0.3em solid transparent; + border-left: 0.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: var(--bs-dropdown-spacer); +} +.dropstart .dropdown-toggle::after { + display: inline-block; + margin-left: 0.255em; + vertical-align: 0.255em; + content: ""; +} +.dropstart .dropdown-toggle::after { + display: none; +} +.dropstart .dropdown-toggle::before { + display: inline-block; + margin-right: 0.255em; + vertical-align: 0.255em; + content: ""; + border-top: 0.3em solid transparent; + border-right: 0.3em solid; + border-bottom: 0.3em solid transparent; +} +.dropstart .dropdown-toggle:empty::after { + margin-left: 0; +} +.dropstart .dropdown-toggle::before { + vertical-align: 0; +} + +.dropdown-divider { + height: 0; + margin: var(--bs-dropdown-divider-margin-y) 0; + overflow: hidden; + border-top: 1px solid var(--bs-dropdown-divider-bg); + opacity: 1; +} + +.dropdown-item { + display: block; + width: 100%; + padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x); + clear: both; + font-weight: 400; + color: var(--bs-dropdown-link-color); + text-align: inherit; + text-decoration: none; + white-space: nowrap; + background-color: transparent; + border: 0; + border-radius: var(--bs-dropdown-item-border-radius, 0); +} +.dropdown-item:hover, .dropdown-item:focus { + color: var(--bs-dropdown-link-hover-color); + background-color: var(--bs-dropdown-link-hover-bg); +} +.dropdown-item.active, .dropdown-item:active { + color: var(--bs-dropdown-link-active-color); + text-decoration: none; + background-color: var(--bs-dropdown-link-active-bg); +} +.dropdown-item.disabled, .dropdown-item:disabled { + color: var(--bs-dropdown-link-disabled-color); + pointer-events: none; + background-color: transparent; +} + +.dropdown-menu.show { + display: block; +} + +.dropdown-header { + display: block; + padding: var(--bs-dropdown-header-padding-y) var(--bs-dropdown-header-padding-x); + margin-bottom: 0; + font-size: 0.765625rem; + color: var(--bs-dropdown-header-color); + white-space: nowrap; +} + +.dropdown-item-text { + display: block; + padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x); + color: var(--bs-dropdown-link-color); +} + +.dropdown-menu-dark { + --bs-dropdown-color: #dee2e6; + --bs-dropdown-bg: #343a40; + --bs-dropdown-border-color: var(--bs-border-color-translucent); + --bs-dropdown-box-shadow: ; + --bs-dropdown-link-color: #dee2e6; + --bs-dropdown-link-hover-color: #fff; + --bs-dropdown-divider-bg: var(--bs-border-color-translucent); + --bs-dropdown-link-hover-bg: rgba(255, 255, 255, 0.15); + --bs-dropdown-link-active-color: #fff; + --bs-dropdown-link-active-bg: #1652F0; + --bs-dropdown-link-disabled-color: #adb5bd; + --bs-dropdown-header-color: #adb5bd; +} + +.btn-group, +.btn-group-vertical { + position: relative; + display: inline-flex; + vertical-align: middle; +} +.btn-group > .btn, +.btn-group-vertical > .btn { + position: relative; + flex: 1 1 auto; +} +.btn-group > .btn-check:checked + .btn, +.btn-group > .btn-check:focus + .btn, +.btn-group > .btn:hover, +.btn-group > .btn:focus, +.btn-group > .btn:active, +.btn-group > .btn.active, +.btn-group-vertical > .btn-check:checked + .btn, +.btn-group-vertical > .btn-check:focus + .btn, +.btn-group-vertical > .btn:hover, +.btn-group-vertical > .btn:focus, +.btn-group-vertical > .btn:active, +.btn-group-vertical > .btn.active { + z-index: 1; +} + +.btn-toolbar { + display: flex; + flex-wrap: wrap; + justify-content: flex-start; +} +.btn-toolbar .input-group { + width: auto; +} + +.btn-group { + border-radius: var(--bs-border-radius); +} +.btn-group > :not(.btn-check:first-child) + .btn, +.btn-group > .btn-group:not(:first-child) { + margin-left: calc(var(--bs-border-width) * -1); +} +.btn-group > .btn:not(:last-child):not(.dropdown-toggle), +.btn-group > .btn.dropdown-toggle-split:first-child, +.btn-group > .btn-group:not(:last-child) > .btn { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} +.btn-group > .btn:nth-child(n+3), +.btn-group > :not(.btn-check) + .btn, +.btn-group > .btn-group:not(:first-child) > .btn { + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} + +.dropdown-toggle-split { + padding-right: 0.5625rem; + padding-left: 0.5625rem; +} +.dropdown-toggle-split::after, .dropup .dropdown-toggle-split::after, .dropend .dropdown-toggle-split::after { + margin-left: 0; +} +.dropstart .dropdown-toggle-split::before { + margin-right: 0; +} + +.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split { + padding-right: 0.375rem; + padding-left: 0.375rem; +} + +.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split { + padding-right: 0.75rem; + padding-left: 0.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:not(:first-child), +.btn-group-vertical > .btn-group:not(:first-child) { + margin-top: calc(var(--bs-border-width) * -1); +} +.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle), +.btn-group-vertical > .btn-group:not(:last-child) > .btn { + border-bottom-right-radius: 0; + border-bottom-left-radius: 0; +} +.btn-group-vertical > .btn ~ .btn, +.btn-group-vertical > .btn-group:not(:first-child) > .btn { + border-top-left-radius: 0; + border-top-right-radius: 0; +} + +.nav { + --bs-nav-link-padding-x: 1rem; + --bs-nav-link-padding-y: 0.5rem; + --bs-nav-link-font-weight: ; + --bs-nav-link-color: var(--bs-link-color); + --bs-nav-link-hover-color: var(--bs-link-hover-color); + --bs-nav-link-disabled-color: var(--bs-secondary-color); + display: flex; + flex-wrap: wrap; + padding-left: 0; + margin-bottom: 0; + list-style: none; +} + +.nav-link { + display: block; + padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x); + font-size: var(--bs-nav-link-font-size); + font-weight: var(--bs-nav-link-font-weight); + color: var(--bs-nav-link-color); + text-decoration: none; + background: none; + border: 0; + transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out; +} +@media (prefers-reduced-motion: reduce) { + .nav-link { + transition: none; + } +} +.nav-link:hover, .nav-link:focus { + color: var(--bs-nav-link-hover-color); +} +.nav-link:focus-visible { + outline: 0; + box-shadow: 0 0 0 0.25rem rgba(22, 82, 240, 0.25); +} +.nav-link.disabled, .nav-link:disabled { + color: var(--bs-nav-link-disabled-color); + pointer-events: none; + cursor: default; +} + +.nav-tabs { + --bs-nav-tabs-border-width: var(--bs-border-width); + --bs-nav-tabs-border-color: var(--bs-border-color); + --bs-nav-tabs-border-radius: var(--bs-border-radius); + --bs-nav-tabs-link-hover-border-color: var(--bs-secondary-bg) var(--bs-secondary-bg) var(--bs-border-color); + --bs-nav-tabs-link-active-color: var(--bs-emphasis-color); + --bs-nav-tabs-link-active-bg: var(--bs-body-bg); + --bs-nav-tabs-link-active-border-color: var(--bs-border-color) var(--bs-border-color) var(--bs-body-bg); + border-bottom: var(--bs-nav-tabs-border-width) solid var(--bs-nav-tabs-border-color); +} +.nav-tabs .nav-link { + margin-bottom: calc(-1 * var(--bs-nav-tabs-border-width)); + border: var(--bs-nav-tabs-border-width) solid transparent; + border-top-left-radius: var(--bs-nav-tabs-border-radius); + border-top-right-radius: var(--bs-nav-tabs-border-radius); +} +.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus { + isolation: isolate; + border-color: var(--bs-nav-tabs-link-hover-border-color); +} +.nav-tabs .nav-link.active, +.nav-tabs .nav-item.show .nav-link { + color: var(--bs-nav-tabs-link-active-color); + background-color: var(--bs-nav-tabs-link-active-bg); + border-color: var(--bs-nav-tabs-link-active-border-color); +} +.nav-tabs .dropdown-menu { + margin-top: calc(-1 * var(--bs-nav-tabs-border-width)); + border-top-left-radius: 0; + border-top-right-radius: 0; +} + +.nav-pills { + --bs-nav-pills-border-radius: var(--bs-border-radius); + --bs-nav-pills-link-active-color: #fff; + --bs-nav-pills-link-active-bg: #1652F0; +} +.nav-pills .nav-link { + border-radius: var(--bs-nav-pills-border-radius); +} +.nav-pills .nav-link.active, +.nav-pills .show > .nav-link { + color: var(--bs-nav-pills-link-active-color); + background-color: var(--bs-nav-pills-link-active-bg); +} + +.nav-underline { + --bs-nav-underline-gap: 1rem; + --bs-nav-underline-border-width: 0.125rem; + --bs-nav-underline-link-active-color: var(--bs-emphasis-color); + gap: var(--bs-nav-underline-gap); +} +.nav-underline .nav-link { + padding-right: 0; + padding-left: 0; + border-bottom: var(--bs-nav-underline-border-width) solid transparent; +} +.nav-underline .nav-link:hover, .nav-underline .nav-link:focus { + border-bottom-color: currentcolor; +} +.nav-underline .nav-link.active, +.nav-underline .show > .nav-link { + font-weight: 700; + color: var(--bs-nav-underline-link-active-color); + border-bottom-color: currentcolor; +} + +.nav-fill > .nav-link, +.nav-fill .nav-item { + flex: 1 1 auto; + text-align: center; +} + +.nav-justified > .nav-link, +.nav-justified .nav-item { + 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 { + --bs-navbar-padding-x: 0; + --bs-navbar-padding-y: 0.5rem; + --bs-navbar-color: rgba(var(--bs-emphasis-color-rgb), 0.65); + --bs-navbar-hover-color: rgba(var(--bs-emphasis-color-rgb), 0.8); + --bs-navbar-disabled-color: rgba(var(--bs-emphasis-color-rgb), 0.3); + --bs-navbar-active-color: rgba(var(--bs-emphasis-color-rgb), 1); + --bs-navbar-brand-padding-y: 0.3359375rem; + --bs-navbar-brand-margin-end: 1rem; + --bs-navbar-brand-font-size: 1.09375rem; + --bs-navbar-brand-color: rgba(var(--bs-emphasis-color-rgb), 1); + --bs-navbar-brand-hover-color: rgba(var(--bs-emphasis-color-rgb), 1); + --bs-navbar-nav-link-padding-x: 0.5rem; + --bs-navbar-toggler-padding-y: 0.25rem; + --bs-navbar-toggler-padding-x: 0.75rem; + --bs-navbar-toggler-font-size: 1.09375rem; + --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28162, 165, 185, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); + --bs-navbar-toggler-border-color: rgba(var(--bs-emphasis-color-rgb), 0.15); + --bs-navbar-toggler-border-radius: var(--bs-border-radius); + --bs-navbar-toggler-focus-width: 0rem; + --bs-navbar-toggler-transition: box-shadow 0.15s ease-in-out; + position: relative; + display: flex; + flex-wrap: wrap; + align-items: center; + justify-content: space-between; + padding: var(--bs-navbar-padding-y) var(--bs-navbar-padding-x); +} +.navbar > .container, +.navbar > .container-fluid, +.navbar > .container-sm, +.navbar > .container-md, +.navbar > .container-lg, +.navbar > .container-xl, +.navbar > .container-xxl { + display: flex; + flex-wrap: inherit; + align-items: center; + justify-content: space-between; +} +.navbar-brand { + padding-top: var(--bs-navbar-brand-padding-y); + padding-bottom: var(--bs-navbar-brand-padding-y); + margin-right: var(--bs-navbar-brand-margin-end); + font-size: var(--bs-navbar-brand-font-size); + color: var(--bs-navbar-brand-color); + text-decoration: none; + white-space: nowrap; +} +.navbar-brand:hover, .navbar-brand:focus { + color: var(--bs-navbar-brand-hover-color); +} + +.navbar-nav { + --bs-nav-link-padding-x: 0; + --bs-nav-link-padding-y: 0.5rem; + --bs-nav-link-font-weight: ; + --bs-nav-link-color: var(--bs-navbar-color); + --bs-nav-link-hover-color: var(--bs-navbar-hover-color); + --bs-nav-link-disabled-color: var(--bs-navbar-disabled-color); + display: flex; + flex-direction: column; + padding-left: 0; + margin-bottom: 0; + list-style: none; +} +.navbar-nav .nav-link.active, .navbar-nav .nav-link.show { + color: var(--bs-navbar-active-color); +} +.navbar-nav .dropdown-menu { + position: static; +} + +.navbar-text { + padding-top: 0.5rem; + padding-bottom: 0.5rem; + color: var(--bs-navbar-color); +} +.navbar-text a, +.navbar-text a:hover, +.navbar-text a:focus { + color: var(--bs-navbar-active-color); +} + +.navbar-collapse { + flex-basis: 100%; + flex-grow: 1; + align-items: center; +} + +.navbar-toggler { + padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x); + font-size: var(--bs-navbar-toggler-font-size); + line-height: 1; + color: var(--bs-navbar-color); + background-color: transparent; + border: var(--bs-border-width) solid var(--bs-navbar-toggler-border-color); + border-radius: var(--bs-navbar-toggler-border-radius); + transition: var(--bs-navbar-toggler-transition); +} +@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 var(--bs-navbar-toggler-focus-width); +} + +.navbar-toggler-icon { + display: inline-block; + width: 1.5em; + height: 1.5em; + vertical-align: middle; + background-image: var(--bs-navbar-toggler-icon-bg); + 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: var(--bs-navbar-nav-link-padding-x); + padding-left: var(--bs-navbar-nav-link-padding-x); + } + .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; + } + .navbar-expand-sm .offcanvas { + position: static; + z-index: auto; + flex-grow: 1; + width: auto !important; + height: auto !important; + visibility: visible !important; + background-color: transparent !important; + border: 0 !important; + transform: none !important; + transition: none; + } + .navbar-expand-sm .offcanvas .offcanvas-header { + display: none; + } + .navbar-expand-sm .offcanvas .offcanvas-body { + display: flex; + flex-grow: 0; + padding: 0; + overflow-y: visible; + } +} +@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: var(--bs-navbar-nav-link-padding-x); + padding-left: var(--bs-navbar-nav-link-padding-x); + } + .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; + } + .navbar-expand-md .offcanvas { + position: static; + z-index: auto; + flex-grow: 1; + width: auto !important; + height: auto !important; + visibility: visible !important; + background-color: transparent !important; + border: 0 !important; + transform: none !important; + transition: none; + } + .navbar-expand-md .offcanvas .offcanvas-header { + display: none; + } + .navbar-expand-md .offcanvas .offcanvas-body { + display: flex; + flex-grow: 0; + padding: 0; + overflow-y: visible; + } +} +@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: var(--bs-navbar-nav-link-padding-x); + padding-left: var(--bs-navbar-nav-link-padding-x); + } + .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; + } + .navbar-expand-lg .offcanvas { + position: static; + z-index: auto; + flex-grow: 1; + width: auto !important; + height: auto !important; + visibility: visible !important; + background-color: transparent !important; + border: 0 !important; + transform: none !important; + transition: none; + } + .navbar-expand-lg .offcanvas .offcanvas-header { + display: none; + } + .navbar-expand-lg .offcanvas .offcanvas-body { + display: flex; + flex-grow: 0; + padding: 0; + overflow-y: visible; + } +} +@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: var(--bs-navbar-nav-link-padding-x); + padding-left: var(--bs-navbar-nav-link-padding-x); + } + .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; + } + .navbar-expand-xl .offcanvas { + position: static; + z-index: auto; + flex-grow: 1; + width: auto !important; + height: auto !important; + visibility: visible !important; + background-color: transparent !important; + border: 0 !important; + transform: none !important; + transition: none; + } + .navbar-expand-xl .offcanvas .offcanvas-header { + display: none; + } + .navbar-expand-xl .offcanvas .offcanvas-body { + display: flex; + flex-grow: 0; + padding: 0; + overflow-y: visible; + } +} +@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: var(--bs-navbar-nav-link-padding-x); + padding-left: var(--bs-navbar-nav-link-padding-x); + } + .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-xxl .offcanvas { + position: static; + z-index: auto; + flex-grow: 1; + width: auto !important; + height: auto !important; + visibility: visible !important; + background-color: transparent !important; + border: 0 !important; + transform: none !important; + transition: none; + } + .navbar-expand-xxl .offcanvas .offcanvas-header { + display: none; + } + .navbar-expand-xxl .offcanvas .offcanvas-body { + display: flex; + flex-grow: 0; + padding: 0; + overflow-y: visible; + } +} +.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: var(--bs-navbar-nav-link-padding-x); + padding-left: var(--bs-navbar-nav-link-padding-x); +} +.navbar-expand .navbar-nav-scroll { + overflow: visible; +} +.navbar-expand .navbar-collapse { + display: flex !important; + flex-basis: auto; +} +.navbar-expand .navbar-toggler { + display: none; +} +.navbar-expand .offcanvas { + position: static; + z-index: auto; + flex-grow: 1; + width: auto !important; + height: auto !important; + visibility: visible !important; + background-color: transparent !important; + border: 0 !important; + transform: none !important; + transition: none; +} +.navbar-expand .offcanvas .offcanvas-header { + display: none; +} +.navbar-expand .offcanvas .offcanvas-body { + display: flex; + flex-grow: 0; + padding: 0; + overflow-y: visible; +} + +.navbar-dark, +.navbar[data-bs-theme=dark] { + --bs-navbar-color: rgba(255, 255, 255, 0.55); + --bs-navbar-hover-color: rgba(255, 255, 255, 0.75); + --bs-navbar-disabled-color: rgba(255, 255, 255, 0.25); + --bs-navbar-active-color: #fff; + --bs-navbar-brand-color: #fff; + --bs-navbar-brand-hover-color: #fff; + --bs-navbar-toggler-border-color: rgba(255, 255, 255, 0.1); + --bs-navbar-toggler-icon-bg: 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"); +} + +[data-bs-theme=dark] .navbar-toggler-icon { + --bs-navbar-toggler-icon-bg: 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"); +} + +.card { + --bs-card-spacer-y: 1rem; + --bs-card-spacer-x: 1rem; + --bs-card-title-spacer-y: 0.5rem; + --bs-card-title-color: ; + --bs-card-subtitle-color: ; + --bs-card-border-width: var(--bs-border-width); + --bs-card-border-color: var(--bs-border-color-translucent); + --bs-card-border-radius: var(--bs-border-radius); + --bs-card-box-shadow: ; + --bs-card-inner-border-radius: calc(var(--bs-border-radius) - (var(--bs-border-width))); + --bs-card-cap-padding-y: 0.5rem; + --bs-card-cap-padding-x: 1rem; + --bs-card-cap-bg: rgba(var(--bs-body-color-rgb), 0.03); + --bs-card-cap-color: ; + --bs-card-height: ; + --bs-card-color: ; + --bs-card-bg: var(--bs-body-bg); + --bs-card-img-overlay-padding: 1rem; + --bs-card-group-margin: 15px; + position: relative; + display: flex; + flex-direction: column; + min-width: 0; + height: var(--bs-card-height); + color: var(--bs-body-color); + word-wrap: break-word; + background-color: var(--bs-card-bg); + background-clip: border-box; + border: var(--bs-card-border-width) solid var(--bs-card-border-color); + border-radius: var(--bs-card-border-radius); +} +.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: var(--bs-card-inner-border-radius); + border-top-right-radius: var(--bs-card-inner-border-radius); +} +.card > .list-group:last-child { + border-bottom-width: 0; + border-bottom-right-radius: var(--bs-card-inner-border-radius); + border-bottom-left-radius: var(--bs-card-inner-border-radius); +} +.card > .card-header + .list-group, +.card > .list-group + .card-footer { + border-top: 0; +} + +.card-body { + flex: 1 1 auto; + padding: var(--bs-card-spacer-y) var(--bs-card-spacer-x); + color: var(--bs-card-color); +} + +.card-title { + margin-bottom: var(--bs-card-title-spacer-y); + color: var(--bs-card-title-color); +} + +.card-subtitle { + margin-top: calc(-0.5 * var(--bs-card-title-spacer-y)); + margin-bottom: 0; + color: var(--bs-card-subtitle-color); +} + +.card-text:last-child { + margin-bottom: 0; +} + +.card-link + .card-link { + margin-left: var(--bs-card-spacer-x); +} + +.card-header { + padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x); + margin-bottom: 0; + color: var(--bs-card-cap-color); + background-color: var(--bs-card-cap-bg); + border-bottom: var(--bs-card-border-width) solid var(--bs-card-border-color); +} +.card-header:first-child { + border-radius: var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius) 0 0; +} + +.card-footer { + padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x); + color: var(--bs-card-cap-color); + background-color: var(--bs-card-cap-bg); + border-top: var(--bs-card-border-width) solid var(--bs-card-border-color); +} +.card-footer:last-child { + border-radius: 0 0 var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius); +} + +.card-header-tabs { + margin-right: calc(-0.5 * var(--bs-card-cap-padding-x)); + margin-bottom: calc(-1 * var(--bs-card-cap-padding-y)); + margin-left: calc(-0.5 * var(--bs-card-cap-padding-x)); + border-bottom: 0; +} +.card-header-tabs .nav-link.active { + background-color: var(--bs-card-bg); + border-bottom-color: var(--bs-card-bg); +} + +.card-header-pills { + margin-right: calc(-0.5 * var(--bs-card-cap-padding-x)); + margin-left: calc(-0.5 * var(--bs-card-cap-padding-x)); +} + +.card-img-overlay { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + padding: var(--bs-card-img-overlay-padding); + border-radius: var(--bs-card-inner-border-radius); +} + +.card-img, +.card-img-top, +.card-img-bottom { + width: 100%; +} + +.card-img, +.card-img-top { + border-top-left-radius: var(--bs-card-inner-border-radius); + border-top-right-radius: var(--bs-card-inner-border-radius); +} + +.card-img, +.card-img-bottom { + border-bottom-right-radius: var(--bs-card-inner-border-radius); + border-bottom-left-radius: var(--bs-card-inner-border-radius); +} + +.card-group > .card { + margin-bottom: var(--bs-card-group-margin); +} +@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-img-top, + .card-group > .card:not(:last-child) .card-header { + border-top-right-radius: 0; + } + .card-group > .card:not(:last-child) .card-img-bottom, + .card-group > .card:not(:last-child) .card-footer { + 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-img-top, + .card-group > .card:not(:first-child) .card-header { + border-top-left-radius: 0; + } + .card-group > .card:not(:first-child) .card-img-bottom, + .card-group > .card:not(:first-child) .card-footer { + border-bottom-left-radius: 0; + } +} + +.accordion { + --bs-accordion-color: var(--bs-body-color); + --bs-accordion-bg: var(--bs-body-bg); + --bs-accordion-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease; + --bs-accordion-border-color: var(--bs-border-color); + --bs-accordion-border-width: var(--bs-border-width); + --bs-accordion-border-radius: var(--bs-border-radius); + --bs-accordion-inner-border-radius: calc(var(--bs-border-radius) - (var(--bs-border-width))); + --bs-accordion-btn-padding-x: 1.25rem; + --bs-accordion-btn-padding-y: 1rem; + --bs-accordion-btn-color: var(--bs-body-color); + --bs-accordion-btn-bg: var(--bs-accordion-bg); + --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23a2a5b9'%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"); + --bs-accordion-btn-icon-width: 1.25rem; + --bs-accordion-btn-icon-transform: rotate(-180deg); + --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out; + --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23092160'%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"); + --bs-accordion-btn-focus-border-color: #8ba9f8; + --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(22, 82, 240, 0.25); + --bs-accordion-body-padding-x: 1.25rem; + --bs-accordion-body-padding-y: 1rem; + --bs-accordion-active-color: var(--bs-primary-text-emphasis); + --bs-accordion-active-bg: var(--bs-primary-bg-subtle); +} + +.accordion-button { + position: relative; + display: flex; + align-items: center; + width: 100%; + padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x); + font-size: 0.875rem; + color: var(--bs-accordion-btn-color); + text-align: left; + background-color: var(--bs-accordion-btn-bg); + border: 0; + border-radius: 0; + overflow-anchor: none; + transition: var(--bs-accordion-transition); +} +@media (prefers-reduced-motion: reduce) { + .accordion-button { + transition: none; + } +} +.accordion-button:not(.collapsed) { + color: var(--bs-accordion-active-color); + background-color: var(--bs-accordion-active-bg); + box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color); +} +.accordion-button:not(.collapsed)::after { + background-image: var(--bs-accordion-btn-active-icon); + transform: var(--bs-accordion-btn-icon-transform); +} +.accordion-button::after { + flex-shrink: 0; + width: var(--bs-accordion-btn-icon-width); + height: var(--bs-accordion-btn-icon-width); + margin-left: auto; + content: ""; + background-image: var(--bs-accordion-btn-icon); + background-repeat: no-repeat; + background-size: var(--bs-accordion-btn-icon-width); + transition: var(--bs-accordion-btn-icon-transition); +} +@media (prefers-reduced-motion: reduce) { + .accordion-button::after { + transition: none; + } +} +.accordion-button:hover { + z-index: 2; +} +.accordion-button:focus { + z-index: 3; + border-color: var(--bs-accordion-btn-focus-border-color); + outline: 0; + box-shadow: var(--bs-accordion-btn-focus-box-shadow); +} + +.accordion-header { + margin-bottom: 0; +} + +.accordion-item { + color: var(--bs-accordion-color); + background-color: var(--bs-accordion-bg); + border: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color); +} +.accordion-item:first-of-type { + border-top-left-radius: var(--bs-accordion-border-radius); + border-top-right-radius: var(--bs-accordion-border-radius); +} +.accordion-item:first-of-type .accordion-button { + border-top-left-radius: var(--bs-accordion-inner-border-radius); + border-top-right-radius: var(--bs-accordion-inner-border-radius); +} +.accordion-item:not(:first-of-type) { + border-top: 0; +} +.accordion-item:last-of-type { + border-bottom-right-radius: var(--bs-accordion-border-radius); + border-bottom-left-radius: var(--bs-accordion-border-radius); +} +.accordion-item:last-of-type .accordion-button.collapsed { + border-bottom-right-radius: var(--bs-accordion-inner-border-radius); + border-bottom-left-radius: var(--bs-accordion-inner-border-radius); +} +.accordion-item:last-of-type .accordion-collapse { + border-bottom-right-radius: var(--bs-accordion-border-radius); + border-bottom-left-radius: var(--bs-accordion-border-radius); +} + +.accordion-body { + padding: var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x); +} + +.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, .accordion-flush .accordion-item .accordion-button.collapsed { + border-radius: 0; +} + +[data-bs-theme=dark] .accordion-button::after { + --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%237397f6'%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"); + --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%237397f6'%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"); +} + +.breadcrumb { + --bs-breadcrumb-padding-x: 0; + --bs-breadcrumb-padding-y: 0; + --bs-breadcrumb-margin-bottom: 1rem; + --bs-breadcrumb-bg: ; + --bs-breadcrumb-border-radius: ; + --bs-breadcrumb-divider-color: var(--bs-secondary-color); + --bs-breadcrumb-item-padding-x: 0.5rem; + --bs-breadcrumb-item-active-color: var(--bs-secondary-color); + display: flex; + flex-wrap: wrap; + padding: var(--bs-breadcrumb-padding-y) var(--bs-breadcrumb-padding-x); + margin-bottom: var(--bs-breadcrumb-margin-bottom); + font-size: var(--bs-breadcrumb-font-size); + list-style: none; + background-color: var(--bs-breadcrumb-bg); + border-radius: var(--bs-breadcrumb-border-radius); +} + +.breadcrumb-item + .breadcrumb-item { + padding-left: var(--bs-breadcrumb-item-padding-x); +} +.breadcrumb-item + .breadcrumb-item::before { + float: left; + padding-right: var(--bs-breadcrumb-item-padding-x); + color: var(--bs-breadcrumb-divider-color); + content: var(--bs-breadcrumb-divider, "/") /* rtl: var(--bs-breadcrumb-divider, "/") */; +} +.breadcrumb-item.active { + color: var(--bs-breadcrumb-item-active-color); +} + +.pagination { + --bs-pagination-padding-x: 0.75rem; + --bs-pagination-padding-y: 0.375rem; + --bs-pagination-font-size: 0.875rem; + --bs-pagination-color: var(--bs-link-color); + --bs-pagination-bg: var(--bs-body-bg); + --bs-pagination-border-width: var(--bs-border-width); + --bs-pagination-border-color: var(--bs-border-color); + --bs-pagination-border-radius: var(--bs-border-radius); + --bs-pagination-hover-color: var(--bs-link-hover-color); + --bs-pagination-hover-bg: var(--bs-tertiary-bg); + --bs-pagination-hover-border-color: var(--bs-border-color); + --bs-pagination-focus-color: var(--bs-link-hover-color); + --bs-pagination-focus-bg: var(--bs-secondary-bg); + --bs-pagination-focus-box-shadow: 0 0 0 0.25rem rgba(22, 82, 240, 0.25); + --bs-pagination-active-color: #fff; + --bs-pagination-active-bg: #1652F0; + --bs-pagination-active-border-color: #1652F0; + --bs-pagination-disabled-color: var(--bs-secondary-color); + --bs-pagination-disabled-bg: var(--bs-secondary-bg); + --bs-pagination-disabled-border-color: var(--bs-border-color); + display: flex; + padding-left: 0; + list-style: none; +} + +.page-link { + position: relative; + display: block; + padding: var(--bs-pagination-padding-y) var(--bs-pagination-padding-x); + font-size: var(--bs-pagination-font-size); + color: var(--bs-pagination-color); + text-decoration: none; + background-color: var(--bs-pagination-bg); + border: var(--bs-pagination-border-width) solid var(--bs-pagination-border-color); + transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; +} +@media (prefers-reduced-motion: reduce) { + .page-link { + transition: none; + } +} +.page-link:hover { + z-index: 2; + color: var(--bs-pagination-hover-color); + background-color: var(--bs-pagination-hover-bg); + border-color: var(--bs-pagination-hover-border-color); +} +.page-link:focus { + z-index: 3; + color: var(--bs-pagination-focus-color); + background-color: var(--bs-pagination-focus-bg); + outline: 0; + box-shadow: var(--bs-pagination-focus-box-shadow); +} +.page-link.active, .active > .page-link { + z-index: 3; + color: var(--bs-pagination-active-color); + background-color: var(--bs-pagination-active-bg); + border-color: var(--bs-pagination-active-border-color); +} +.page-link.disabled, .disabled > .page-link { + color: var(--bs-pagination-disabled-color); + pointer-events: none; + background-color: var(--bs-pagination-disabled-bg); + border-color: var(--bs-pagination-disabled-border-color); +} + +.page-item:not(:first-child) .page-link { + margin-left: calc(var(--bs-border-width) * -1); +} +.page-item:first-child .page-link { + border-top-left-radius: var(--bs-pagination-border-radius); + border-bottom-left-radius: var(--bs-pagination-border-radius); +} +.page-item:last-child .page-link { + border-top-right-radius: var(--bs-pagination-border-radius); + border-bottom-right-radius: var(--bs-pagination-border-radius); +} + +.pagination-lg { + --bs-pagination-padding-x: 1.5rem; + --bs-pagination-padding-y: 0.75rem; + --bs-pagination-font-size: 1.09375rem; + --bs-pagination-border-radius: var(--bs-border-radius-lg); +} + +.pagination-sm { + --bs-pagination-padding-x: 0.5rem; + --bs-pagination-padding-y: 0.25rem; + --bs-pagination-font-size: 0.765625rem; + --bs-pagination-border-radius: var(--bs-border-radius-sm); +} + +.badge { + --bs-badge-padding-x: 0.65em; + --bs-badge-padding-y: 0.35em; + --bs-badge-font-size: 0.75em; + --bs-badge-font-weight: 700; + --bs-badge-color: #fff; + --bs-badge-border-radius: var(--bs-border-radius); + display: inline-block; + padding: var(--bs-badge-padding-y) var(--bs-badge-padding-x); + font-size: var(--bs-badge-font-size); + font-weight: var(--bs-badge-font-weight); + line-height: 1; + color: var(--bs-badge-color); + text-align: center; + white-space: nowrap; + vertical-align: baseline; + border-radius: var(--bs-badge-border-radius); +} +.badge:empty { + display: none; +} + +.btn .badge { + position: relative; + top: -1px; +} + +.alert { + --bs-alert-bg: transparent; + --bs-alert-padding-x: 1rem; + --bs-alert-padding-y: 1rem; + --bs-alert-margin-bottom: 1rem; + --bs-alert-color: inherit; + --bs-alert-border-color: transparent; + --bs-alert-border: var(--bs-border-width) solid var(--bs-alert-border-color); + --bs-alert-border-radius: var(--bs-border-radius); + --bs-alert-link-color: inherit; + position: relative; + padding: var(--bs-alert-padding-y) var(--bs-alert-padding-x); + margin-bottom: var(--bs-alert-margin-bottom); + color: var(--bs-alert-color); + background-color: var(--bs-alert-bg); + border: var(--bs-alert-border); + border-radius: var(--bs-alert-border-radius); +} + +.alert-heading { + color: inherit; +} + +.alert-link { + font-weight: 700; + color: var(--bs-alert-link-color); +} + +.alert-dismissible { + padding-right: 3rem; +} +.alert-dismissible .btn-close { + position: absolute; + top: 0; + right: 0; + z-index: 2; + padding: 1.25rem 1rem; +} + +.alert-primary { + --bs-alert-color: var(--bs-primary-text-emphasis); + --bs-alert-bg: var(--bs-primary-bg-subtle); + --bs-alert-border-color: var(--bs-primary-border-subtle); + --bs-alert-link-color: var(--bs-primary-text-emphasis); +} + +.alert-secondary { + --bs-alert-color: var(--bs-secondary-text-emphasis); + --bs-alert-bg: var(--bs-secondary-bg-subtle); + --bs-alert-border-color: var(--bs-secondary-border-subtle); + --bs-alert-link-color: var(--bs-secondary-text-emphasis); +} + +.alert-success { + --bs-alert-color: var(--bs-success-text-emphasis); + --bs-alert-bg: var(--bs-success-bg-subtle); + --bs-alert-border-color: var(--bs-success-border-subtle); + --bs-alert-link-color: var(--bs-success-text-emphasis); +} + +.alert-info { + --bs-alert-color: var(--bs-info-text-emphasis); + --bs-alert-bg: var(--bs-info-bg-subtle); + --bs-alert-border-color: var(--bs-info-border-subtle); + --bs-alert-link-color: var(--bs-info-text-emphasis); +} + +.alert-warning { + --bs-alert-color: var(--bs-warning-text-emphasis); + --bs-alert-bg: var(--bs-warning-bg-subtle); + --bs-alert-border-color: var(--bs-warning-border-subtle); + --bs-alert-link-color: var(--bs-warning-text-emphasis); +} + +.alert-danger { + --bs-alert-color: var(--bs-danger-text-emphasis); + --bs-alert-bg: var(--bs-danger-bg-subtle); + --bs-alert-border-color: var(--bs-danger-border-subtle); + --bs-alert-link-color: var(--bs-danger-text-emphasis); +} + +.alert-light { + --bs-alert-color: var(--bs-light-text-emphasis); + --bs-alert-bg: var(--bs-light-bg-subtle); + --bs-alert-border-color: var(--bs-light-border-subtle); + --bs-alert-link-color: var(--bs-light-text-emphasis); +} + +.alert-dark { + --bs-alert-color: var(--bs-dark-text-emphasis); + --bs-alert-bg: var(--bs-dark-bg-subtle); + --bs-alert-border-color: var(--bs-dark-border-subtle); + --bs-alert-link-color: var(--bs-dark-text-emphasis); +} + +@keyframes progress-bar-stripes { + 0% { + background-position-x: 1rem; + } +} +.progress, +.progress-stacked { + --bs-progress-height: 1rem; + --bs-progress-font-size: 0.65625rem; + --bs-progress-bg: var(--bs-secondary-bg); + --bs-progress-border-radius: var(--bs-border-radius); + --bs-progress-box-shadow: var(--bs-box-shadow-inset); + --bs-progress-bar-color: #fff; + --bs-progress-bar-bg: #1652F0; + --bs-progress-bar-transition: width 0.6s ease; + display: flex; + height: var(--bs-progress-height); + overflow: hidden; + font-size: var(--bs-progress-font-size); + background-color: var(--bs-progress-bg); + border-radius: var(--bs-progress-border-radius); +} + +.progress-bar { + display: flex; + flex-direction: column; + justify-content: center; + overflow: hidden; + color: var(--bs-progress-bar-color); + text-align: center; + white-space: nowrap; + background-color: var(--bs-progress-bar-bg); + transition: var(--bs-progress-bar-transition); +} +@media (prefers-reduced-motion: reduce) { + .progress-bar { + transition: none; + } +} + +.progress-bar-striped { + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-size: var(--bs-progress-height) var(--bs-progress-height); +} + +.progress-stacked > .progress { + overflow: visible; +} + +.progress-stacked > .progress > .progress-bar { + width: 100%; +} + +.progress-bar-animated { + animation: 1s linear infinite progress-bar-stripes; +} +@media (prefers-reduced-motion: reduce) { + .progress-bar-animated { + animation: none; + } +} + +.list-group { + --bs-list-group-color: var(--bs-body-color); + --bs-list-group-bg: var(--bs-body-bg); + --bs-list-group-border-color: var(--bs-border-color); + --bs-list-group-border-width: var(--bs-border-width); + --bs-list-group-border-radius: var(--bs-border-radius); + --bs-list-group-item-padding-x: 1rem; + --bs-list-group-item-padding-y: 0.5rem; + --bs-list-group-action-color: var(--bs-secondary-color); + --bs-list-group-action-hover-color: var(--bs-emphasis-color); + --bs-list-group-action-hover-bg: var(--bs-tertiary-bg); + --bs-list-group-action-active-color: var(--bs-body-color); + --bs-list-group-action-active-bg: var(--bs-secondary-bg); + --bs-list-group-disabled-color: var(--bs-secondary-color); + --bs-list-group-disabled-bg: var(--bs-body-bg); + --bs-list-group-active-color: #fff; + --bs-list-group-active-bg: #1652F0; + --bs-list-group-active-border-color: #1652F0; + display: flex; + flex-direction: column; + padding-left: 0; + margin-bottom: 0; + border-radius: var(--bs-list-group-border-radius); +} + +.list-group-numbered { + list-style-type: none; + counter-reset: section; +} +.list-group-numbered > .list-group-item::before { + content: counters(section, ".") ". "; + counter-increment: section; +} + +.list-group-item-action { + width: 100%; + color: var(--bs-list-group-action-color); + text-align: inherit; +} +.list-group-item-action:hover, .list-group-item-action:focus { + z-index: 1; + color: var(--bs-list-group-action-hover-color); + text-decoration: none; + background-color: var(--bs-list-group-action-hover-bg); +} +.list-group-item-action:active { + color: var(--bs-list-group-action-active-color); + background-color: var(--bs-list-group-action-active-bg); +} + +.list-group-item { + position: relative; + display: block; + padding: var(--bs-list-group-item-padding-y) var(--bs-list-group-item-padding-x); + color: var(--bs-list-group-color); + text-decoration: none; + background-color: var(--bs-list-group-bg); + border: var(--bs-list-group-border-width) solid var(--bs-list-group-border-color); +} +.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: var(--bs-list-group-disabled-color); + pointer-events: none; + background-color: var(--bs-list-group-disabled-bg); +} +.list-group-item.active { + z-index: 2; + color: var(--bs-list-group-active-color); + background-color: var(--bs-list-group-active-bg); + border-color: var(--bs-list-group-active-border-color); +} +.list-group-item + .list-group-item { + border-top-width: 0; +} +.list-group-item + .list-group-item.active { + margin-top: calc(-1 * var(--bs-list-group-border-width)); + border-top-width: var(--bs-list-group-border-width); +} + +.list-group-horizontal { + flex-direction: row; +} +.list-group-horizontal > .list-group-item:first-child:not(:last-child) { + border-bottom-left-radius: var(--bs-list-group-border-radius); + border-top-right-radius: 0; +} +.list-group-horizontal > .list-group-item:last-child:not(:first-child) { + border-top-right-radius: var(--bs-list-group-border-radius); + 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: var(--bs-list-group-border-width); + border-left-width: 0; +} +.list-group-horizontal > .list-group-item + .list-group-item.active { + margin-left: calc(-1 * var(--bs-list-group-border-width)); + border-left-width: var(--bs-list-group-border-width); +} + +@media (min-width: 576px) { + .list-group-horizontal-sm { + flex-direction: row; + } + .list-group-horizontal-sm > .list-group-item:first-child:not(:last-child) { + border-bottom-left-radius: var(--bs-list-group-border-radius); + border-top-right-radius: 0; + } + .list-group-horizontal-sm > .list-group-item:last-child:not(:first-child) { + border-top-right-radius: var(--bs-list-group-border-radius); + 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: var(--bs-list-group-border-width); + border-left-width: 0; + } + .list-group-horizontal-sm > .list-group-item + .list-group-item.active { + margin-left: calc(-1 * var(--bs-list-group-border-width)); + border-left-width: var(--bs-list-group-border-width); + } +} +@media (min-width: 768px) { + .list-group-horizontal-md { + flex-direction: row; + } + .list-group-horizontal-md > .list-group-item:first-child:not(:last-child) { + border-bottom-left-radius: var(--bs-list-group-border-radius); + border-top-right-radius: 0; + } + .list-group-horizontal-md > .list-group-item:last-child:not(:first-child) { + border-top-right-radius: var(--bs-list-group-border-radius); + 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: var(--bs-list-group-border-width); + border-left-width: 0; + } + .list-group-horizontal-md > .list-group-item + .list-group-item.active { + margin-left: calc(-1 * var(--bs-list-group-border-width)); + border-left-width: var(--bs-list-group-border-width); + } +} +@media (min-width: 992px) { + .list-group-horizontal-lg { + flex-direction: row; + } + .list-group-horizontal-lg > .list-group-item:first-child:not(:last-child) { + border-bottom-left-radius: var(--bs-list-group-border-radius); + border-top-right-radius: 0; + } + .list-group-horizontal-lg > .list-group-item:last-child:not(:first-child) { + border-top-right-radius: var(--bs-list-group-border-radius); + 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: var(--bs-list-group-border-width); + border-left-width: 0; + } + .list-group-horizontal-lg > .list-group-item + .list-group-item.active { + margin-left: calc(-1 * var(--bs-list-group-border-width)); + border-left-width: var(--bs-list-group-border-width); + } +} +@media (min-width: 1200px) { + .list-group-horizontal-xl { + flex-direction: row; + } + .list-group-horizontal-xl > .list-group-item:first-child:not(:last-child) { + border-bottom-left-radius: var(--bs-list-group-border-radius); + border-top-right-radius: 0; + } + .list-group-horizontal-xl > .list-group-item:last-child:not(:first-child) { + border-top-right-radius: var(--bs-list-group-border-radius); + 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: var(--bs-list-group-border-width); + border-left-width: 0; + } + .list-group-horizontal-xl > .list-group-item + .list-group-item.active { + margin-left: calc(-1 * var(--bs-list-group-border-width)); + border-left-width: var(--bs-list-group-border-width); + } +} +@media (min-width: 1400px) { + .list-group-horizontal-xxl { + flex-direction: row; + } + .list-group-horizontal-xxl > .list-group-item:first-child:not(:last-child) { + border-bottom-left-radius: var(--bs-list-group-border-radius); + border-top-right-radius: 0; + } + .list-group-horizontal-xxl > .list-group-item:last-child:not(:first-child) { + border-top-right-radius: var(--bs-list-group-border-radius); + 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: var(--bs-list-group-border-width); + border-left-width: 0; + } + .list-group-horizontal-xxl > .list-group-item + .list-group-item.active { + margin-left: calc(-1 * var(--bs-list-group-border-width)); + border-left-width: var(--bs-list-group-border-width); + } +} +.list-group-flush { + border-radius: 0; +} +.list-group-flush > .list-group-item { + border-width: 0 0 var(--bs-list-group-border-width); +} +.list-group-flush > .list-group-item:last-child { + border-bottom-width: 0; +} + +.list-group-item-primary { + --bs-list-group-color: var(--bs-primary-text-emphasis); + --bs-list-group-bg: var(--bs-primary-bg-subtle); + --bs-list-group-border-color: var(--bs-primary-border-subtle); + --bs-list-group-action-hover-color: var(--bs-emphasis-color); + --bs-list-group-action-hover-bg: var(--bs-primary-border-subtle); + --bs-list-group-action-active-color: var(--bs-emphasis-color); + --bs-list-group-action-active-bg: var(--bs-primary-border-subtle); + --bs-list-group-active-color: var(--bs-primary-bg-subtle); + --bs-list-group-active-bg: var(--bs-primary-text-emphasis); + --bs-list-group-active-border-color: var(--bs-primary-text-emphasis); +} + +.list-group-item-secondary { + --bs-list-group-color: var(--bs-secondary-text-emphasis); + --bs-list-group-bg: var(--bs-secondary-bg-subtle); + --bs-list-group-border-color: var(--bs-secondary-border-subtle); + --bs-list-group-action-hover-color: var(--bs-emphasis-color); + --bs-list-group-action-hover-bg: var(--bs-secondary-border-subtle); + --bs-list-group-action-active-color: var(--bs-emphasis-color); + --bs-list-group-action-active-bg: var(--bs-secondary-border-subtle); + --bs-list-group-active-color: var(--bs-secondary-bg-subtle); + --bs-list-group-active-bg: var(--bs-secondary-text-emphasis); + --bs-list-group-active-border-color: var(--bs-secondary-text-emphasis); +} + +.list-group-item-success { + --bs-list-group-color: var(--bs-success-text-emphasis); + --bs-list-group-bg: var(--bs-success-bg-subtle); + --bs-list-group-border-color: var(--bs-success-border-subtle); + --bs-list-group-action-hover-color: var(--bs-emphasis-color); + --bs-list-group-action-hover-bg: var(--bs-success-border-subtle); + --bs-list-group-action-active-color: var(--bs-emphasis-color); + --bs-list-group-action-active-bg: var(--bs-success-border-subtle); + --bs-list-group-active-color: var(--bs-success-bg-subtle); + --bs-list-group-active-bg: var(--bs-success-text-emphasis); + --bs-list-group-active-border-color: var(--bs-success-text-emphasis); +} + +.list-group-item-info { + --bs-list-group-color: var(--bs-info-text-emphasis); + --bs-list-group-bg: var(--bs-info-bg-subtle); + --bs-list-group-border-color: var(--bs-info-border-subtle); + --bs-list-group-action-hover-color: var(--bs-emphasis-color); + --bs-list-group-action-hover-bg: var(--bs-info-border-subtle); + --bs-list-group-action-active-color: var(--bs-emphasis-color); + --bs-list-group-action-active-bg: var(--bs-info-border-subtle); + --bs-list-group-active-color: var(--bs-info-bg-subtle); + --bs-list-group-active-bg: var(--bs-info-text-emphasis); + --bs-list-group-active-border-color: var(--bs-info-text-emphasis); +} + +.list-group-item-warning { + --bs-list-group-color: var(--bs-warning-text-emphasis); + --bs-list-group-bg: var(--bs-warning-bg-subtle); + --bs-list-group-border-color: var(--bs-warning-border-subtle); + --bs-list-group-action-hover-color: var(--bs-emphasis-color); + --bs-list-group-action-hover-bg: var(--bs-warning-border-subtle); + --bs-list-group-action-active-color: var(--bs-emphasis-color); + --bs-list-group-action-active-bg: var(--bs-warning-border-subtle); + --bs-list-group-active-color: var(--bs-warning-bg-subtle); + --bs-list-group-active-bg: var(--bs-warning-text-emphasis); + --bs-list-group-active-border-color: var(--bs-warning-text-emphasis); +} + +.list-group-item-danger { + --bs-list-group-color: var(--bs-danger-text-emphasis); + --bs-list-group-bg: var(--bs-danger-bg-subtle); + --bs-list-group-border-color: var(--bs-danger-border-subtle); + --bs-list-group-action-hover-color: var(--bs-emphasis-color); + --bs-list-group-action-hover-bg: var(--bs-danger-border-subtle); + --bs-list-group-action-active-color: var(--bs-emphasis-color); + --bs-list-group-action-active-bg: var(--bs-danger-border-subtle); + --bs-list-group-active-color: var(--bs-danger-bg-subtle); + --bs-list-group-active-bg: var(--bs-danger-text-emphasis); + --bs-list-group-active-border-color: var(--bs-danger-text-emphasis); +} + +.list-group-item-light { + --bs-list-group-color: var(--bs-light-text-emphasis); + --bs-list-group-bg: var(--bs-light-bg-subtle); + --bs-list-group-border-color: var(--bs-light-border-subtle); + --bs-list-group-action-hover-color: var(--bs-emphasis-color); + --bs-list-group-action-hover-bg: var(--bs-light-border-subtle); + --bs-list-group-action-active-color: var(--bs-emphasis-color); + --bs-list-group-action-active-bg: var(--bs-light-border-subtle); + --bs-list-group-active-color: var(--bs-light-bg-subtle); + --bs-list-group-active-bg: var(--bs-light-text-emphasis); + --bs-list-group-active-border-color: var(--bs-light-text-emphasis); +} + +.list-group-item-dark { + --bs-list-group-color: var(--bs-dark-text-emphasis); + --bs-list-group-bg: var(--bs-dark-bg-subtle); + --bs-list-group-border-color: var(--bs-dark-border-subtle); + --bs-list-group-action-hover-color: var(--bs-emphasis-color); + --bs-list-group-action-hover-bg: var(--bs-dark-border-subtle); + --bs-list-group-action-active-color: var(--bs-emphasis-color); + --bs-list-group-action-active-bg: var(--bs-dark-border-subtle); + --bs-list-group-active-color: var(--bs-dark-bg-subtle); + --bs-list-group-active-bg: var(--bs-dark-text-emphasis); + --bs-list-group-active-border-color: var(--bs-dark-text-emphasis); +} + +.btn-close { + --bs-btn-close-color: #000; + --bs-btn-close-bg: 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 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e"); + --bs-btn-close-opacity: 0.5; + --bs-btn-close-hover-opacity: 0.75; + --bs-btn-close-focus-shadow: 0 0 0 0.25rem rgba(22, 82, 240, 0.25); + --bs-btn-close-focus-opacity: 1; + --bs-btn-close-disabled-opacity: 0.25; + --bs-btn-close-white-filter: invert(1) grayscale(100%) brightness(200%); + box-sizing: content-box; + width: 1em; + height: 1em; + padding: 0.25em 0.25em; + color: var(--bs-btn-close-color); + background: transparent var(--bs-btn-close-bg) center/1em auto no-repeat; + border: 0; + border-radius: 6px; + opacity: var(--bs-btn-close-opacity); +} +.btn-close:hover { + color: var(--bs-btn-close-color); + text-decoration: none; + opacity: var(--bs-btn-close-hover-opacity); +} +.btn-close:focus { + outline: 0; + box-shadow: var(--bs-btn-close-focus-shadow); + opacity: var(--bs-btn-close-focus-opacity); +} +.btn-close:disabled, .btn-close.disabled { + pointer-events: none; + -webkit-user-select: none; + -moz-user-select: none; + user-select: none; + opacity: var(--bs-btn-close-disabled-opacity); +} + +.btn-close-white { + filter: var(--bs-btn-close-white-filter); +} + +[data-bs-theme=dark] .btn-close { + filter: var(--bs-btn-close-white-filter); +} + +.toast { + --bs-toast-zindex: 1090; + --bs-toast-padding-x: 0.75rem; + --bs-toast-padding-y: 0.5rem; + --bs-toast-spacing: 30px; + --bs-toast-max-width: 350px; + --bs-toast-font-size: 0.875rem; + --bs-toast-color: ; + --bs-toast-bg: rgba(var(--bs-body-bg-rgb), 0.85); + --bs-toast-border-width: var(--bs-border-width); + --bs-toast-border-color: var(--bs-border-color-translucent); + --bs-toast-border-radius: var(--bs-border-radius); + --bs-toast-box-shadow: var(--bs-box-shadow); + --bs-toast-header-color: var(--bs-secondary-color); + --bs-toast-header-bg: rgba(var(--bs-body-bg-rgb), 0.85); + --bs-toast-header-border-color: var(--bs-border-color-translucent); + width: var(--bs-toast-max-width); + max-width: 100%; + font-size: var(--bs-toast-font-size); + color: var(--bs-toast-color); + pointer-events: auto; + background-color: var(--bs-toast-bg); + background-clip: padding-box; + border: var(--bs-toast-border-width) solid var(--bs-toast-border-color); + box-shadow: var(--bs-toast-box-shadow); + border-radius: var(--bs-toast-border-radius); +} +.toast.showing { + opacity: 0; +} +.toast:not(.show) { + display: none; +} + +.toast-container { + --bs-toast-zindex: 1090; + position: absolute; + z-index: var(--bs-toast-zindex); + width: -moz-max-content; + width: max-content; + max-width: 100%; + pointer-events: none; +} +.toast-container > :not(:last-child) { + margin-bottom: var(--bs-toast-spacing); +} + +.toast-header { + display: flex; + align-items: center; + padding: var(--bs-toast-padding-y) var(--bs-toast-padding-x); + color: var(--bs-toast-header-color); + background-color: var(--bs-toast-header-bg); + background-clip: padding-box; + border-bottom: var(--bs-toast-border-width) solid var(--bs-toast-header-border-color); + border-top-left-radius: calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width)); + border-top-right-radius: calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width)); +} +.toast-header .btn-close { + margin-right: calc(-0.5 * var(--bs-toast-padding-x)); + margin-left: var(--bs-toast-padding-x); +} + +.toast-body { + padding: var(--bs-toast-padding-x); + word-wrap: break-word; +} + +.modal { + --bs-modal-zindex: 1055; + --bs-modal-width: 500px; + --bs-modal-padding: 1rem; + --bs-modal-margin: 0.5rem; + --bs-modal-color: ; + --bs-modal-bg: var(--bs-body-bg); + --bs-modal-border-color: var(--bs-border-color-translucent); + --bs-modal-border-width: var(--bs-border-width); + --bs-modal-border-radius: var(--bs-border-radius-lg); + --bs-modal-box-shadow: var(--bs-box-shadow-sm); + --bs-modal-inner-border-radius: calc(var(--bs-border-radius-lg) - (var(--bs-border-width))); + --bs-modal-header-padding-x: 1rem; + --bs-modal-header-padding-y: 1rem; + --bs-modal-header-padding: 1rem 1rem; + --bs-modal-header-border-color: var(--bs-border-color); + --bs-modal-header-border-width: var(--bs-border-width); + --bs-modal-title-line-height: 1.5; + --bs-modal-footer-gap: 0.5rem; + --bs-modal-footer-bg: ; + --bs-modal-footer-border-color: var(--bs-border-color); + --bs-modal-footer-border-width: var(--bs-border-width); + position: fixed; + top: 0; + left: 0; + z-index: var(--bs-modal-zindex); + display: none; + width: 100%; + height: 100%; + overflow-x: hidden; + overflow-y: auto; + outline: 0; +} + +.modal-dialog { + position: relative; + width: auto; + margin: var(--bs-modal-margin); + pointer-events: none; +} +.modal.fade .modal-dialog { + transition: transform 0.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% - var(--bs-modal-margin) * 2); +} +.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% - var(--bs-modal-margin) * 2); +} + +.modal-content { + position: relative; + display: flex; + flex-direction: column; + width: 100%; + color: var(--bs-modal-color); + pointer-events: auto; + background-color: var(--bs-modal-bg); + background-clip: padding-box; + border: var(--bs-modal-border-width) solid var(--bs-modal-border-color); + border-radius: var(--bs-modal-border-radius); + outline: 0; +} + +.modal-backdrop { + --bs-backdrop-zindex: 1050; + --bs-backdrop-bg: #000; + --bs-backdrop-opacity: 0.5; + position: fixed; + top: 0; + left: 0; + z-index: var(--bs-backdrop-zindex); + width: 100vw; + height: 100vh; + background-color: var(--bs-backdrop-bg); +} +.modal-backdrop.fade { + opacity: 0; +} +.modal-backdrop.show { + opacity: var(--bs-backdrop-opacity); +} + +.modal-header { + display: flex; + flex-shrink: 0; + align-items: center; + justify-content: space-between; + padding: var(--bs-modal-header-padding); + border-bottom: var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color); + border-top-left-radius: var(--bs-modal-inner-border-radius); + border-top-right-radius: var(--bs-modal-inner-border-radius); +} +.modal-header .btn-close { + padding: calc(var(--bs-modal-header-padding-y) * 0.5) calc(var(--bs-modal-header-padding-x) * 0.5); + margin: calc(-0.5 * var(--bs-modal-header-padding-y)) calc(-0.5 * var(--bs-modal-header-padding-x)) calc(-0.5 * var(--bs-modal-header-padding-y)) auto; +} + +.modal-title { + margin-bottom: 0; + line-height: var(--bs-modal-title-line-height); +} + +.modal-body { + position: relative; + flex: 1 1 auto; + padding: var(--bs-modal-padding); +} + +.modal-footer { + display: flex; + flex-shrink: 0; + flex-wrap: wrap; + align-items: center; + justify-content: flex-end; + padding: calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * 0.5); + background-color: var(--bs-modal-footer-bg); + border-top: var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color); + border-bottom-right-radius: var(--bs-modal-inner-border-radius); + border-bottom-left-radius: var(--bs-modal-inner-border-radius); +} +.modal-footer > * { + margin: calc(var(--bs-modal-footer-gap) * 0.5); +} + +@media (min-width: 576px) { + .modal { + --bs-modal-margin: 1.75rem; + --bs-modal-box-shadow: var(--bs-box-shadow); + } + .modal-dialog { + max-width: var(--bs-modal-width); + margin-right: auto; + margin-left: auto; + } + .modal-sm { + --bs-modal-width: 300px; + } +} +@media (min-width: 992px) { + .modal-lg, + .modal-xl { + --bs-modal-width: 800px; + } +} +@media (min-width: 1200px) { + .modal-xl { + --bs-modal-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, +.modal-fullscreen .modal-footer { + border-radius: 0; +} +.modal-fullscreen .modal-body { + overflow-y: auto; +} + +@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, + .modal-fullscreen-sm-down .modal-footer { + border-radius: 0; + } + .modal-fullscreen-sm-down .modal-body { + overflow-y: auto; + } +} +@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, + .modal-fullscreen-md-down .modal-footer { + border-radius: 0; + } + .modal-fullscreen-md-down .modal-body { + overflow-y: auto; + } +} +@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, + .modal-fullscreen-lg-down .modal-footer { + border-radius: 0; + } + .modal-fullscreen-lg-down .modal-body { + overflow-y: auto; + } +} +@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, + .modal-fullscreen-xl-down .modal-footer { + border-radius: 0; + } + .modal-fullscreen-xl-down .modal-body { + overflow-y: auto; + } +} +@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, + .modal-fullscreen-xxl-down .modal-footer { + border-radius: 0; + } + .modal-fullscreen-xxl-down .modal-body { + overflow-y: auto; + } +} +.tooltip { + --bs-tooltip-zindex: 1080; + --bs-tooltip-max-width: 200px; + --bs-tooltip-padding-x: 0.5rem; + --bs-tooltip-padding-y: 0.25rem; + --bs-tooltip-margin: ; + --bs-tooltip-font-size: 0.765625rem; + --bs-tooltip-color: var(--bs-body-bg); + --bs-tooltip-bg: var(--bs-emphasis-color); + --bs-tooltip-border-radius: var(--bs-border-radius); + --bs-tooltip-opacity: 0.9; + --bs-tooltip-arrow-width: 0.8rem; + --bs-tooltip-arrow-height: 0.4rem; + z-index: var(--bs-tooltip-zindex); + display: block; + margin: var(--bs-tooltip-margin); + font-family: "Roboto", 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; + white-space: normal; + word-spacing: normal; + line-break: auto; + font-size: var(--bs-tooltip-font-size); + word-wrap: break-word; + opacity: 0; +} +.tooltip.show { + opacity: var(--bs-tooltip-opacity); +} +.tooltip .tooltip-arrow { + display: block; + width: var(--bs-tooltip-arrow-width); + height: var(--bs-tooltip-arrow-height); +} +.tooltip .tooltip-arrow::before { + position: absolute; + content: ""; + border-color: transparent; + border-style: solid; +} + +.bs-tooltip-top .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow { + bottom: calc(-1 * var(--bs-tooltip-arrow-height)); +} +.bs-tooltip-top .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before { + top: -1px; + border-width: var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * 0.5) 0; + border-top-color: var(--bs-tooltip-bg); +} + +/* rtl:begin:ignore */ +.bs-tooltip-end .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow { + left: calc(-1 * var(--bs-tooltip-arrow-height)); + width: var(--bs-tooltip-arrow-height); + height: var(--bs-tooltip-arrow-width); +} +.bs-tooltip-end .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before { + right: -1px; + border-width: calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * 0.5) 0; + border-right-color: var(--bs-tooltip-bg); +} + +/* rtl:end:ignore */ +.bs-tooltip-bottom .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow { + top: calc(-1 * var(--bs-tooltip-arrow-height)); +} +.bs-tooltip-bottom .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before { + bottom: -1px; + border-width: 0 calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height); + border-bottom-color: var(--bs-tooltip-bg); +} + +/* rtl:begin:ignore */ +.bs-tooltip-start .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow { + right: calc(-1 * var(--bs-tooltip-arrow-height)); + width: var(--bs-tooltip-arrow-height); + height: var(--bs-tooltip-arrow-width); +} +.bs-tooltip-start .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before { + left: -1px; + border-width: calc(var(--bs-tooltip-arrow-width) * 0.5) 0 calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height); + border-left-color: var(--bs-tooltip-bg); +} + +/* rtl:end:ignore */ +.tooltip-inner { + max-width: var(--bs-tooltip-max-width); + padding: var(--bs-tooltip-padding-y) var(--bs-tooltip-padding-x); + color: var(--bs-tooltip-color); + text-align: center; + background-color: var(--bs-tooltip-bg); + border-radius: var(--bs-tooltip-border-radius); +} + +.popover { + --bs-popover-zindex: 1070; + --bs-popover-max-width: 276px; + --bs-popover-font-size: 0.765625rem; + --bs-popover-bg: var(--bs-body-bg); + --bs-popover-border-width: var(--bs-border-width); + --bs-popover-border-color: var(--bs-border-color-translucent); + --bs-popover-border-radius: var(--bs-border-radius-lg); + --bs-popover-inner-border-radius: calc(var(--bs-border-radius-lg) - var(--bs-border-width)); + --bs-popover-box-shadow: var(--bs-box-shadow); + --bs-popover-header-padding-x: 1rem; + --bs-popover-header-padding-y: 0.5rem; + --bs-popover-header-font-size: 0.875rem; + --bs-popover-header-color: #212529; + --bs-popover-header-bg: var(--bs-secondary-bg); + --bs-popover-body-padding-x: 1rem; + --bs-popover-body-padding-y: 1rem; + --bs-popover-body-color: var(--bs-body-color); + --bs-popover-arrow-width: 1rem; + --bs-popover-arrow-height: 0.5rem; + --bs-popover-arrow-border: var(--bs-popover-border-color); + z-index: var(--bs-popover-zindex); + display: block; + max-width: var(--bs-popover-max-width); + font-family: "Roboto", 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; + white-space: normal; + word-spacing: normal; + line-break: auto; + font-size: var(--bs-popover-font-size); + word-wrap: break-word; + background-color: var(--bs-popover-bg); + background-clip: padding-box; + border: var(--bs-popover-border-width) solid var(--bs-popover-border-color); + border-radius: var(--bs-popover-border-radius); +} +.popover .popover-arrow { + display: block; + width: var(--bs-popover-arrow-width); + height: var(--bs-popover-arrow-height); +} +.popover .popover-arrow::before, .popover .popover-arrow::after { + position: absolute; + display: block; + content: ""; + border-color: transparent; + border-style: solid; + border-width: 0; +} + +.bs-popover-top > .popover-arrow, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow { + bottom: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width)); +} +.bs-popover-top > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::before, .bs-popover-top > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::after { + border-width: var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * 0.5) 0; +} +.bs-popover-top > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::before { + bottom: 0; + border-top-color: var(--bs-popover-arrow-border); +} +.bs-popover-top > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::after { + bottom: var(--bs-popover-border-width); + border-top-color: var(--bs-popover-bg); +} + +/* rtl:begin:ignore */ +.bs-popover-end > .popover-arrow, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow { + left: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width)); + width: var(--bs-popover-arrow-height); + height: var(--bs-popover-arrow-width); +} +.bs-popover-end > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::before, .bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::after { + border-width: calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * 0.5) 0; +} +.bs-popover-end > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::before { + left: 0; + border-right-color: var(--bs-popover-arrow-border); +} +.bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::after { + left: var(--bs-popover-border-width); + border-right-color: var(--bs-popover-bg); +} + +/* rtl:end:ignore */ +.bs-popover-bottom > .popover-arrow, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow { + top: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width)); +} +.bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before, .bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after { + border-width: 0 calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height); +} +.bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before { + top: 0; + border-bottom-color: var(--bs-popover-arrow-border); +} +.bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after { + top: var(--bs-popover-border-width); + border-bottom-color: var(--bs-popover-bg); +} +.bs-popover-bottom .popover-header::before, .bs-popover-auto[data-popper-placement^=bottom] .popover-header::before { + position: absolute; + top: 0; + left: 50%; + display: block; + width: var(--bs-popover-arrow-width); + margin-left: calc(-0.5 * var(--bs-popover-arrow-width)); + content: ""; + border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-header-bg); +} + +/* rtl:begin:ignore */ +.bs-popover-start > .popover-arrow, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow { + right: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width)); + width: var(--bs-popover-arrow-height); + height: var(--bs-popover-arrow-width); +} +.bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::before, .bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::after { + border-width: calc(var(--bs-popover-arrow-width) * 0.5) 0 calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height); +} +.bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::before { + right: 0; + border-left-color: var(--bs-popover-arrow-border); +} +.bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::after { + right: var(--bs-popover-border-width); + border-left-color: var(--bs-popover-bg); +} + +/* rtl:end:ignore */ +.popover-header { + padding: var(--bs-popover-header-padding-y) var(--bs-popover-header-padding-x); + margin-bottom: 0; + font-size: var(--bs-popover-header-font-size); + color: var(--bs-popover-header-color); + background-color: var(--bs-popover-header-bg); + border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-border-color); + border-top-left-radius: var(--bs-popover-inner-border-radius); + border-top-right-radius: var(--bs-popover-inner-border-radius); +} +.popover-header:empty { + display: none; +} + +.popover-body { + padding: var(--bs-popover-body-padding-y) var(--bs-popover-body-padding-x); + color: var(--bs-popover-body-color); +} + +.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%; + backface-visibility: hidden; + transition: transform 0.6s ease-in-out; +} +@media (prefers-reduced-motion: reduce) { + .carousel-item { + transition: none; + } +} + +.carousel-item.active, +.carousel-item-next, +.carousel-item-prev { + display: block; +} + +.carousel-item-next:not(.carousel-item-start), +.active.carousel-item-end { + transform: translateX(100%); +} + +.carousel-item-prev:not(.carousel-item-end), +.active.carousel-item-start { + transform: translateX(-100%); +} + +.carousel-fade .carousel-item { + opacity: 0; + transition-property: opacity; + transform: none; +} +.carousel-fade .carousel-item.active, +.carousel-fade .carousel-item-next.carousel-item-start, +.carousel-fade .carousel-item-prev.carousel-item-end { + z-index: 1; + opacity: 1; +} +.carousel-fade .active.carousel-item-start, +.carousel-fade .active.carousel-item-end { + z-index: 0; + opacity: 0; + transition: opacity 0s 0.6s; +} +@media (prefers-reduced-motion: reduce) { + .carousel-fade .active.carousel-item-start, + .carousel-fade .active.carousel-item-end { + transition: none; + } +} + +.carousel-control-prev, +.carousel-control-next { + 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: none; + border: 0; + opacity: 0.5; + transition: opacity 0.15s ease; +} +@media (prefers-reduced-motion: reduce) { + .carousel-control-prev, + .carousel-control-next { + transition: none; + } +} +.carousel-control-prev:hover, .carousel-control-prev:focus, +.carousel-control-next:hover, +.carousel-control-next:focus { + color: #fff; + text-decoration: none; + outline: 0; + opacity: 0.9; +} + +.carousel-control-prev { + left: 0; +} + +.carousel-control-next { + right: 0; +} + +.carousel-control-prev-icon, +.carousel-control-next-icon { + display: inline-block; + width: 2rem; + height: 2rem; + background-repeat: no-repeat; + background-position: 50%; + background-size: 100% 100%; +} + +/* rtl:options: { + "autoRename": true, + "stringMap":[ { + "name" : "prev-next", + "search" : "prev", + "replace" : "next" + } ] +} */ +.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%; +} +.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: 0.5; + transition: opacity 0.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-prev-icon, +.carousel-dark .carousel-control-next-icon { + filter: invert(1) grayscale(100); +} +.carousel-dark .carousel-indicators [data-bs-target] { + background-color: #000; +} +.carousel-dark .carousel-caption { + color: #000; +} + +[data-bs-theme=dark] .carousel .carousel-control-prev-icon, +[data-bs-theme=dark] .carousel .carousel-control-next-icon, [data-bs-theme=dark].carousel .carousel-control-prev-icon, +[data-bs-theme=dark].carousel .carousel-control-next-icon { + filter: invert(1) grayscale(100); +} +[data-bs-theme=dark] .carousel .carousel-indicators [data-bs-target], [data-bs-theme=dark].carousel .carousel-indicators [data-bs-target] { + background-color: #000; +} +[data-bs-theme=dark] .carousel .carousel-caption, [data-bs-theme=dark].carousel .carousel-caption { + color: #000; +} + +.spinner-grow, +.spinner-border { + display: inline-block; + width: var(--bs-spinner-width); + height: var(--bs-spinner-height); + vertical-align: var(--bs-spinner-vertical-align); + border-radius: 50%; + animation: var(--bs-spinner-animation-speed) linear infinite var(--bs-spinner-animation-name); +} + +@keyframes spinner-border { + to { + transform: rotate(360deg) /* rtl:ignore */; + } +} +.spinner-border { + --bs-spinner-width: 2rem; + --bs-spinner-height: 2rem; + --bs-spinner-vertical-align: -0.125em; + --bs-spinner-border-width: 0.25em; + --bs-spinner-animation-speed: 0.75s; + --bs-spinner-animation-name: spinner-border; + border: var(--bs-spinner-border-width) solid currentcolor; + border-right-color: transparent; +} + +.spinner-border-sm { + --bs-spinner-width: 1rem; + --bs-spinner-height: 1rem; + --bs-spinner-border-width: 0.2em; +} + +@keyframes spinner-grow { + 0% { + transform: scale(0); + } + 50% { + opacity: 1; + transform: none; + } +} +.spinner-grow { + --bs-spinner-width: 2rem; + --bs-spinner-height: 2rem; + --bs-spinner-vertical-align: -0.125em; + --bs-spinner-animation-speed: 0.75s; + --bs-spinner-animation-name: spinner-grow; + background-color: currentcolor; + opacity: 0; +} + +.spinner-grow-sm { + --bs-spinner-width: 1rem; + --bs-spinner-height: 1rem; +} + +@media (prefers-reduced-motion: reduce) { + .spinner-border, + .spinner-grow { + --bs-spinner-animation-speed: 1.5s; + } +} +.offcanvas, .offcanvas-xxl, .offcanvas-xl, .offcanvas-lg, .offcanvas-md, .offcanvas-sm { + --bs-offcanvas-zindex: 1045; + --bs-offcanvas-width: 400px; + --bs-offcanvas-height: 30vh; + --bs-offcanvas-padding-x: 1rem; + --bs-offcanvas-padding-y: 1rem; + --bs-offcanvas-color: var(--bs-body-color); + --bs-offcanvas-bg: var(--bs-body-bg); + --bs-offcanvas-border-width: var(--bs-border-width); + --bs-offcanvas-border-color: var(--bs-border-color-translucent); + --bs-offcanvas-box-shadow: var(--bs-box-shadow-sm); + --bs-offcanvas-transition: transform 0.3s ease-in-out; + --bs-offcanvas-title-line-height: 1.5; +} + +@media (max-width: 575.98px) { + .offcanvas-sm { + position: fixed; + bottom: 0; + z-index: var(--bs-offcanvas-zindex); + display: flex; + flex-direction: column; + max-width: 100%; + color: var(--bs-offcanvas-color); + visibility: hidden; + background-color: var(--bs-offcanvas-bg); + background-clip: padding-box; + outline: 0; + transition: var(--bs-offcanvas-transition); + } +} +@media (max-width: 575.98px) and (prefers-reduced-motion: reduce) { + .offcanvas-sm { + transition: none; + } +} +@media (max-width: 575.98px) { + .offcanvas-sm.offcanvas-start { + top: 0; + left: 0; + width: var(--bs-offcanvas-width); + border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color); + transform: translateX(-100%); + } + .offcanvas-sm.offcanvas-end { + top: 0; + right: 0; + width: var(--bs-offcanvas-width); + border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color); + transform: translateX(100%); + } + .offcanvas-sm.offcanvas-top { + top: 0; + right: 0; + left: 0; + height: var(--bs-offcanvas-height); + max-height: 100%; + border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color); + transform: translateY(-100%); + } + .offcanvas-sm.offcanvas-bottom { + right: 0; + left: 0; + height: var(--bs-offcanvas-height); + max-height: 100%; + border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color); + transform: translateY(100%); + } + .offcanvas-sm.showing, .offcanvas-sm.show:not(.hiding) { + transform: none; + } + .offcanvas-sm.showing, .offcanvas-sm.hiding, .offcanvas-sm.show { + visibility: visible; + } +} +@media (min-width: 576px) { + .offcanvas-sm { + --bs-offcanvas-height: auto; + --bs-offcanvas-border-width: 0; + background-color: transparent !important; + } + .offcanvas-sm .offcanvas-header { + display: none; + } + .offcanvas-sm .offcanvas-body { + display: flex; + flex-grow: 0; + padding: 0; + overflow-y: visible; + background-color: transparent !important; + } +} + +@media (max-width: 767.98px) { + .offcanvas-md { + position: fixed; + bottom: 0; + z-index: var(--bs-offcanvas-zindex); + display: flex; + flex-direction: column; + max-width: 100%; + color: var(--bs-offcanvas-color); + visibility: hidden; + background-color: var(--bs-offcanvas-bg); + background-clip: padding-box; + outline: 0; + transition: var(--bs-offcanvas-transition); + } +} +@media (max-width: 767.98px) and (prefers-reduced-motion: reduce) { + .offcanvas-md { + transition: none; + } +} +@media (max-width: 767.98px) { + .offcanvas-md.offcanvas-start { + top: 0; + left: 0; + width: var(--bs-offcanvas-width); + border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color); + transform: translateX(-100%); + } + .offcanvas-md.offcanvas-end { + top: 0; + right: 0; + width: var(--bs-offcanvas-width); + border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color); + transform: translateX(100%); + } + .offcanvas-md.offcanvas-top { + top: 0; + right: 0; + left: 0; + height: var(--bs-offcanvas-height); + max-height: 100%; + border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color); + transform: translateY(-100%); + } + .offcanvas-md.offcanvas-bottom { + right: 0; + left: 0; + height: var(--bs-offcanvas-height); + max-height: 100%; + border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color); + transform: translateY(100%); + } + .offcanvas-md.showing, .offcanvas-md.show:not(.hiding) { + transform: none; + } + .offcanvas-md.showing, .offcanvas-md.hiding, .offcanvas-md.show { + visibility: visible; + } +} +@media (min-width: 768px) { + .offcanvas-md { + --bs-offcanvas-height: auto; + --bs-offcanvas-border-width: 0; + background-color: transparent !important; + } + .offcanvas-md .offcanvas-header { + display: none; + } + .offcanvas-md .offcanvas-body { + display: flex; + flex-grow: 0; + padding: 0; + overflow-y: visible; + background-color: transparent !important; + } +} + +@media (max-width: 991.98px) { + .offcanvas-lg { + position: fixed; + bottom: 0; + z-index: var(--bs-offcanvas-zindex); + display: flex; + flex-direction: column; + max-width: 100%; + color: var(--bs-offcanvas-color); + visibility: hidden; + background-color: var(--bs-offcanvas-bg); + background-clip: padding-box; + outline: 0; + transition: var(--bs-offcanvas-transition); + } +} +@media (max-width: 991.98px) and (prefers-reduced-motion: reduce) { + .offcanvas-lg { + transition: none; + } +} +@media (max-width: 991.98px) { + .offcanvas-lg.offcanvas-start { + top: 0; + left: 0; + width: var(--bs-offcanvas-width); + border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color); + transform: translateX(-100%); + } + .offcanvas-lg.offcanvas-end { + top: 0; + right: 0; + width: var(--bs-offcanvas-width); + border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color); + transform: translateX(100%); + } + .offcanvas-lg.offcanvas-top { + top: 0; + right: 0; + left: 0; + height: var(--bs-offcanvas-height); + max-height: 100%; + border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color); + transform: translateY(-100%); + } + .offcanvas-lg.offcanvas-bottom { + right: 0; + left: 0; + height: var(--bs-offcanvas-height); + max-height: 100%; + border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color); + transform: translateY(100%); + } + .offcanvas-lg.showing, .offcanvas-lg.show:not(.hiding) { + transform: none; + } + .offcanvas-lg.showing, .offcanvas-lg.hiding, .offcanvas-lg.show { + visibility: visible; + } +} +@media (min-width: 992px) { + .offcanvas-lg { + --bs-offcanvas-height: auto; + --bs-offcanvas-border-width: 0; + background-color: transparent !important; + } + .offcanvas-lg .offcanvas-header { + display: none; + } + .offcanvas-lg .offcanvas-body { + display: flex; + flex-grow: 0; + padding: 0; + overflow-y: visible; + background-color: transparent !important; + } +} + +@media (max-width: 1199.98px) { + .offcanvas-xl { + position: fixed; + bottom: 0; + z-index: var(--bs-offcanvas-zindex); + display: flex; + flex-direction: column; + max-width: 100%; + color: var(--bs-offcanvas-color); + visibility: hidden; + background-color: var(--bs-offcanvas-bg); + background-clip: padding-box; + outline: 0; + transition: var(--bs-offcanvas-transition); + } +} +@media (max-width: 1199.98px) and (prefers-reduced-motion: reduce) { + .offcanvas-xl { + transition: none; + } +} +@media (max-width: 1199.98px) { + .offcanvas-xl.offcanvas-start { + top: 0; + left: 0; + width: var(--bs-offcanvas-width); + border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color); + transform: translateX(-100%); + } + .offcanvas-xl.offcanvas-end { + top: 0; + right: 0; + width: var(--bs-offcanvas-width); + border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color); + transform: translateX(100%); + } + .offcanvas-xl.offcanvas-top { + top: 0; + right: 0; + left: 0; + height: var(--bs-offcanvas-height); + max-height: 100%; + border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color); + transform: translateY(-100%); + } + .offcanvas-xl.offcanvas-bottom { + right: 0; + left: 0; + height: var(--bs-offcanvas-height); + max-height: 100%; + border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color); + transform: translateY(100%); + } + .offcanvas-xl.showing, .offcanvas-xl.show:not(.hiding) { + transform: none; + } + .offcanvas-xl.showing, .offcanvas-xl.hiding, .offcanvas-xl.show { + visibility: visible; + } +} +@media (min-width: 1200px) { + .offcanvas-xl { + --bs-offcanvas-height: auto; + --bs-offcanvas-border-width: 0; + background-color: transparent !important; + } + .offcanvas-xl .offcanvas-header { + display: none; + } + .offcanvas-xl .offcanvas-body { + display: flex; + flex-grow: 0; + padding: 0; + overflow-y: visible; + background-color: transparent !important; + } +} + +@media (max-width: 1399.98px) { + .offcanvas-xxl { + position: fixed; + bottom: 0; + z-index: var(--bs-offcanvas-zindex); + display: flex; + flex-direction: column; + max-width: 100%; + color: var(--bs-offcanvas-color); + visibility: hidden; + background-color: var(--bs-offcanvas-bg); + background-clip: padding-box; + outline: 0; + transition: var(--bs-offcanvas-transition); + } +} +@media (max-width: 1399.98px) and (prefers-reduced-motion: reduce) { + .offcanvas-xxl { + transition: none; + } +} +@media (max-width: 1399.98px) { + .offcanvas-xxl.offcanvas-start { + top: 0; + left: 0; + width: var(--bs-offcanvas-width); + border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color); + transform: translateX(-100%); + } + .offcanvas-xxl.offcanvas-end { + top: 0; + right: 0; + width: var(--bs-offcanvas-width); + border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color); + transform: translateX(100%); + } + .offcanvas-xxl.offcanvas-top { + top: 0; + right: 0; + left: 0; + height: var(--bs-offcanvas-height); + max-height: 100%; + border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color); + transform: translateY(-100%); + } + .offcanvas-xxl.offcanvas-bottom { + right: 0; + left: 0; + height: var(--bs-offcanvas-height); + max-height: 100%; + border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color); + transform: translateY(100%); + } + .offcanvas-xxl.showing, .offcanvas-xxl.show:not(.hiding) { + transform: none; + } + .offcanvas-xxl.showing, .offcanvas-xxl.hiding, .offcanvas-xxl.show { + visibility: visible; + } +} +@media (min-width: 1400px) { + .offcanvas-xxl { + --bs-offcanvas-height: auto; + --bs-offcanvas-border-width: 0; + background-color: transparent !important; + } + .offcanvas-xxl .offcanvas-header { + display: none; + } + .offcanvas-xxl .offcanvas-body { + display: flex; + flex-grow: 0; + padding: 0; + overflow-y: visible; + background-color: transparent !important; + } +} + +.offcanvas { + position: fixed; + bottom: 0; + z-index: var(--bs-offcanvas-zindex); + display: flex; + flex-direction: column; + max-width: 100%; + color: var(--bs-offcanvas-color); + visibility: hidden; + background-color: var(--bs-offcanvas-bg); + background-clip: padding-box; + outline: 0; + transition: var(--bs-offcanvas-transition); +} +@media (prefers-reduced-motion: reduce) { + .offcanvas { + transition: none; + } +} +.offcanvas.offcanvas-start { + top: 0; + left: 0; + width: var(--bs-offcanvas-width); + border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color); + transform: translateX(-100%); +} +.offcanvas.offcanvas-end { + top: 0; + right: 0; + width: var(--bs-offcanvas-width); + border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color); + transform: translateX(100%); +} +.offcanvas.offcanvas-top { + top: 0; + right: 0; + left: 0; + height: var(--bs-offcanvas-height); + max-height: 100%; + border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color); + transform: translateY(-100%); +} +.offcanvas.offcanvas-bottom { + right: 0; + left: 0; + height: var(--bs-offcanvas-height); + max-height: 100%; + border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color); + transform: translateY(100%); +} +.offcanvas.showing, .offcanvas.show:not(.hiding) { + transform: none; +} +.offcanvas.showing, .offcanvas.hiding, .offcanvas.show { + visibility: visible; +} + +.offcanvas-backdrop { + position: fixed; + top: 0; + left: 0; + z-index: 1040; + width: 100vw; + height: 100vh; + background-color: #000; +} +.offcanvas-backdrop.fade { + opacity: 0; +} +.offcanvas-backdrop.show { + opacity: 0.5; +} + +.offcanvas-header { + display: flex; + align-items: center; + justify-content: space-between; + padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x); +} +.offcanvas-header .btn-close { + padding: calc(var(--bs-offcanvas-padding-y) * 0.5) calc(var(--bs-offcanvas-padding-x) * 0.5); + margin-top: calc(-0.5 * var(--bs-offcanvas-padding-y)); + margin-right: calc(-0.5 * var(--bs-offcanvas-padding-x)); + margin-bottom: calc(-0.5 * var(--bs-offcanvas-padding-y)); +} + +.offcanvas-title { + margin-bottom: 0; + line-height: var(--bs-offcanvas-title-line-height); +} + +.offcanvas-body { + flex-grow: 1; + padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x); + overflow-y: auto; +} + +.placeholder { + display: inline-block; + min-height: 1em; + vertical-align: middle; + cursor: wait; + background-color: currentcolor; + opacity: 0.5; +} +.placeholder.btn::before { + display: inline-block; + content: ""; +} + +.placeholder-xs { + min-height: 0.6em; +} + +.placeholder-sm { + min-height: 0.8em; +} + +.placeholder-lg { + min-height: 1.2em; +} + +.placeholder-glow .placeholder { + animation: placeholder-glow 2s ease-in-out infinite; +} + +@keyframes placeholder-glow { + 50% { + opacity: 0.2; + } +} +.placeholder-wave { + -webkit-mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%); + mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%); + -webkit-mask-size: 200% 100%; + mask-size: 200% 100%; + animation: placeholder-wave 2s linear infinite; +} + +@keyframes placeholder-wave { + 100% { + -webkit-mask-position: -200% 0%; + mask-position: -200% 0%; + } +} +.clearfix::after { + display: block; + clear: both; + content: ""; +} + +.text-bg-primary { + color: #fff !important; + background-color: RGBA(var(--bs-primary-rgb), var(--bs-bg-opacity, 1)) !important; +} + +.text-bg-secondary { + color: #000 !important; + background-color: RGBA(var(--bs-secondary-rgb), var(--bs-bg-opacity, 1)) !important; +} + +.text-bg-success { + color: #000 !important; + background-color: RGBA(var(--bs-success-rgb), var(--bs-bg-opacity, 1)) !important; +} + +.text-bg-info { + color: #fff !important; + background-color: RGBA(var(--bs-info-rgb), var(--bs-bg-opacity, 1)) !important; +} + +.text-bg-warning { + color: #000 !important; + background-color: RGBA(var(--bs-warning-rgb), var(--bs-bg-opacity, 1)) !important; +} + +.text-bg-danger { + color: #fff !important; + background-color: RGBA(var(--bs-danger-rgb), var(--bs-bg-opacity, 1)) !important; +} + +.text-bg-light { + color: #000 !important; + background-color: RGBA(var(--bs-light-rgb), var(--bs-bg-opacity, 1)) !important; +} + +.text-bg-dark { + color: #fff !important; + background-color: RGBA(var(--bs-dark-rgb), var(--bs-bg-opacity, 1)) !important; +} + +.link-primary { + color: RGBA(var(--bs-primary-rgb), var(--bs-link-opacity, 1)) !important; + text-decoration-color: RGBA(var(--bs-primary-rgb), var(--bs-link-underline-opacity, 1)) !important; +} +.link-primary:hover, .link-primary:focus { + color: RGBA(18, 66, 192, var(--bs-link-opacity, 1)) !important; + text-decoration-color: RGBA(18, 66, 192, var(--bs-link-underline-opacity, 1)) !important; +} + +.link-secondary { + color: RGBA(var(--bs-secondary-rgb), var(--bs-link-opacity, 1)) !important; + text-decoration-color: RGBA(var(--bs-secondary-rgb), var(--bs-link-underline-opacity, 1)) !important; +} +.link-secondary:hover, .link-secondary:focus { + color: RGBA(249, 90, 131, var(--bs-link-opacity, 1)) !important; + text-decoration-color: RGBA(249, 90, 131, var(--bs-link-underline-opacity, 1)) !important; +} + +.link-success { + color: RGBA(var(--bs-success-rgb), var(--bs-link-opacity, 1)) !important; + text-decoration-color: RGBA(var(--bs-success-rgb), var(--bs-link-underline-opacity, 1)) !important; +} +.link-success:hover, .link-success:focus { + color: RGBA(116, 201, 81, var(--bs-link-opacity, 1)) !important; + text-decoration-color: RGBA(116, 201, 81, var(--bs-link-underline-opacity, 1)) !important; +} + +.link-info { + color: RGBA(var(--bs-info-rgb), var(--bs-link-opacity, 1)) !important; + text-decoration-color: RGBA(var(--bs-info-rgb), var(--bs-link-underline-opacity, 1)) !important; +} +.link-info:hover, .link-info:focus { + color: RGBA(135, 31, 199, var(--bs-link-opacity, 1)) !important; + text-decoration-color: RGBA(135, 31, 199, var(--bs-link-underline-opacity, 1)) !important; +} + +.link-warning { + color: RGBA(var(--bs-warning-rgb), var(--bs-link-opacity, 1)) !important; + text-decoration-color: RGBA(var(--bs-warning-rgb), var(--bs-link-underline-opacity, 1)) !important; +} +.link-warning:hover, .link-warning:focus { + color: RGBA(249, 222, 85, var(--bs-link-opacity, 1)) !important; + text-decoration-color: RGBA(249, 222, 85, var(--bs-link-underline-opacity, 1)) !important; +} + +.link-danger { + color: RGBA(var(--bs-danger-rgb), var(--bs-link-opacity, 1)) !important; + text-decoration-color: RGBA(var(--bs-danger-rgb), var(--bs-link-underline-opacity, 1)) !important; +} +.link-danger:hover, .link-danger:focus { + color: RGBA(176, 42, 55, var(--bs-link-opacity, 1)) !important; + text-decoration-color: RGBA(176, 42, 55, var(--bs-link-underline-opacity, 1)) !important; +} + +.link-light { + color: RGBA(var(--bs-light-rgb), var(--bs-link-opacity, 1)) !important; + text-decoration-color: RGBA(var(--bs-light-rgb), var(--bs-link-underline-opacity, 1)) !important; +} +.link-light:hover, .link-light:focus { + color: RGBA(249, 248, 255, var(--bs-link-opacity, 1)) !important; + text-decoration-color: RGBA(249, 248, 255, var(--bs-link-underline-opacity, 1)) !important; +} + +.link-dark { + color: RGBA(var(--bs-dark-rgb), var(--bs-link-opacity, 1)) !important; + text-decoration-color: RGBA(var(--bs-dark-rgb), var(--bs-link-underline-opacity, 1)) !important; +} +.link-dark:hover, .link-dark:focus { + color: RGBA(6, 6, 6, var(--bs-link-opacity, 1)) !important; + text-decoration-color: RGBA(6, 6, 6, var(--bs-link-underline-opacity, 1)) !important; +} + +.link-body-emphasis { + color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-opacity, 1)) !important; + text-decoration-color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 1)) !important; +} +.link-body-emphasis:hover, .link-body-emphasis:focus { + color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-opacity, 0.75)) !important; + text-decoration-color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 0.75)) !important; +} + +.focus-ring:focus { + outline: 0; + box-shadow: var(--bs-focus-ring-x, 0) var(--bs-focus-ring-y, 0) var(--bs-focus-ring-blur, 0) var(--bs-focus-ring-width) var(--bs-focus-ring-color); +} + +.icon-link { + display: inline-flex; + gap: 0.375rem; + align-items: center; + text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 0.5)); + text-underline-offset: 0.25em; + backface-visibility: hidden; +} +.icon-link > .bi { + flex-shrink: 0; + width: 1em; + height: 1em; + fill: currentcolor; + transition: 0.2s ease-in-out transform; +} +@media (prefers-reduced-motion: reduce) { + .icon-link > .bi { + transition: none; + } +} + +.icon-link-hover:hover > .bi, .icon-link-hover:focus-visible > .bi { + transform: var(--bs-icon-link-transform, translate3d(0.25em, 0, 0)); +} + +.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: 75%; +} + +.ratio-16x9 { + --bs-aspect-ratio: 56.25%; +} + +.ratio-21x9 { + --bs-aspect-ratio: 42.8571428571%; +} + +.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: sticky; + top: 0; + z-index: 1020; +} + +.sticky-bottom { + position: sticky; + bottom: 0; + z-index: 1020; +} + +@media (min-width: 576px) { + .sticky-sm-top { + position: sticky; + top: 0; + z-index: 1020; + } + .sticky-sm-bottom { + position: sticky; + bottom: 0; + z-index: 1020; + } +} +@media (min-width: 768px) { + .sticky-md-top { + position: sticky; + top: 0; + z-index: 1020; + } + .sticky-md-bottom { + position: sticky; + bottom: 0; + z-index: 1020; + } +} +@media (min-width: 992px) { + .sticky-lg-top { + position: sticky; + top: 0; + z-index: 1020; + } + .sticky-lg-bottom { + position: sticky; + bottom: 0; + z-index: 1020; + } +} +@media (min-width: 1200px) { + .sticky-xl-top { + position: sticky; + top: 0; + z-index: 1020; + } + .sticky-xl-bottom { + position: sticky; + bottom: 0; + z-index: 1020; + } +} +@media (min-width: 1400px) { + .sticky-xxl-top { + position: sticky; + top: 0; + z-index: 1020; + } + .sticky-xxl-bottom { + position: sticky; + bottom: 0; + z-index: 1020; + } +} +.hstack { + display: flex; + flex-direction: row; + align-items: center; + align-self: stretch; +} + +.vstack { + display: flex; + flex: 1 1 auto; + flex-direction: column; + align-self: stretch; +} + +.visually-hidden, +.visually-hidden-focusable:not(:focus):not(:focus-within) { + 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; +} +.visually-hidden:not(caption), +.visually-hidden-focusable:not(:focus):not(:focus-within):not(caption) { + position: absolute !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; +} + +.vr { + display: inline-block; + align-self: stretch; + width: var(--bs-border-width); + min-height: 1em; + background-color: currentcolor; + opacity: 0.25; +} + +.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; +} + +.object-fit-contain { + -o-object-fit: contain !important; + object-fit: contain !important; +} + +.object-fit-cover { + -o-object-fit: cover !important; + object-fit: cover !important; +} + +.object-fit-fill { + -o-object-fit: fill !important; + object-fit: fill !important; +} + +.object-fit-scale { + -o-object-fit: scale-down !important; + object-fit: scale-down !important; +} + +.object-fit-none { + -o-object-fit: none !important; + object-fit: none !important; +} + +.opacity-0 { + opacity: 0 !important; +} + +.opacity-25 { + opacity: 0.25 !important; +} + +.opacity-50 { + opacity: 0.5 !important; +} + +.opacity-75 { + opacity: 0.75 !important; +} + +.opacity-100 { + opacity: 1 !important; +} + +.overflow-auto { + overflow: auto !important; +} + +.overflow-hidden { + overflow: hidden !important; +} + +.overflow-visible { + overflow: visible !important; +} + +.overflow-scroll { + overflow: scroll !important; +} + +.overflow-x-auto { + overflow-x: auto !important; +} + +.overflow-x-hidden { + overflow-x: hidden !important; +} + +.overflow-x-visible { + overflow-x: visible !important; +} + +.overflow-x-scroll { + overflow-x: scroll !important; +} + +.overflow-y-auto { + overflow-y: auto !important; +} + +.overflow-y-hidden { + overflow-y: hidden !important; +} + +.overflow-y-visible { + overflow-y: visible !important; +} + +.overflow-y-scroll { + overflow-y: 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-inline-grid { + display: inline-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: var(--bs-box-shadow) !important; +} + +.shadow-sm { + box-shadow: var(--bs-box-shadow-sm) !important; +} + +.shadow-lg { + box-shadow: var(--bs-box-shadow-lg) !important; +} + +.shadow-none { + box-shadow: none !important; +} + +.focus-ring-primary { + --bs-focus-ring-color: rgba(var(--bs-primary-rgb), var(--bs-focus-ring-opacity)); +} + +.focus-ring-secondary { + --bs-focus-ring-color: rgba(var(--bs-secondary-rgb), var(--bs-focus-ring-opacity)); +} + +.focus-ring-success { + --bs-focus-ring-color: rgba(var(--bs-success-rgb), var(--bs-focus-ring-opacity)); +} + +.focus-ring-info { + --bs-focus-ring-color: rgba(var(--bs-info-rgb), var(--bs-focus-ring-opacity)); +} + +.focus-ring-warning { + --bs-focus-ring-color: rgba(var(--bs-warning-rgb), var(--bs-focus-ring-opacity)); +} + +.focus-ring-danger { + --bs-focus-ring-color: rgba(var(--bs-danger-rgb), var(--bs-focus-ring-opacity)); +} + +.focus-ring-light { + --bs-focus-ring-color: rgba(var(--bs-light-rgb), var(--bs-focus-ring-opacity)); +} + +.focus-ring-dark { + --bs-focus-ring-color: rgba(var(--bs-dark-rgb), var(--bs-focus-ring-opacity)); +} + +.position-static { + position: static !important; +} + +.position-relative { + position: relative !important; +} + +.position-absolute { + position: absolute !important; +} + +.position-fixed { + position: fixed !important; +} + +.position-sticky { + 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: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important; +} + +.border-0 { + border: 0 !important; +} + +.border-top { + border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important; +} + +.border-top-0 { + border-top: 0 !important; +} + +.border-end { + border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important; +} + +.border-end-0 { + border-right: 0 !important; +} + +.border-bottom { + border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important; +} + +.border-bottom-0 { + border-bottom: 0 !important; +} + +.border-start { + border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important; +} + +.border-start-0 { + border-left: 0 !important; +} + +.border-primary { + --bs-border-opacity: 1; + border-color: rgba(var(--bs-primary-rgb), var(--bs-border-opacity)) !important; +} + +.border-secondary { + --bs-border-opacity: 1; + border-color: rgba(var(--bs-secondary-rgb), var(--bs-border-opacity)) !important; +} + +.border-success { + --bs-border-opacity: 1; + border-color: rgba(var(--bs-success-rgb), var(--bs-border-opacity)) !important; +} + +.border-info { + --bs-border-opacity: 1; + border-color: rgba(var(--bs-info-rgb), var(--bs-border-opacity)) !important; +} + +.border-warning { + --bs-border-opacity: 1; + border-color: rgba(var(--bs-warning-rgb), var(--bs-border-opacity)) !important; +} + +.border-danger { + --bs-border-opacity: 1; + border-color: rgba(var(--bs-danger-rgb), var(--bs-border-opacity)) !important; +} + +.border-light { + --bs-border-opacity: 1; + border-color: rgba(var(--bs-light-rgb), var(--bs-border-opacity)) !important; +} + +.border-dark { + --bs-border-opacity: 1; + border-color: rgba(var(--bs-dark-rgb), var(--bs-border-opacity)) !important; +} + +.border-black { + --bs-border-opacity: 1; + border-color: rgba(var(--bs-black-rgb), var(--bs-border-opacity)) !important; +} + +.border-white { + --bs-border-opacity: 1; + border-color: rgba(var(--bs-white-rgb), var(--bs-border-opacity)) !important; +} + +.border-primary-subtle { + border-color: var(--bs-primary-border-subtle) !important; +} + +.border-secondary-subtle { + border-color: var(--bs-secondary-border-subtle) !important; +} + +.border-success-subtle { + border-color: var(--bs-success-border-subtle) !important; +} + +.border-info-subtle { + border-color: var(--bs-info-border-subtle) !important; +} + +.border-warning-subtle { + border-color: var(--bs-warning-border-subtle) !important; +} + +.border-danger-subtle { + border-color: var(--bs-danger-border-subtle) !important; +} + +.border-light-subtle { + border-color: var(--bs-light-border-subtle) !important; +} + +.border-dark-subtle { + border-color: var(--bs-dark-border-subtle) !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; +} + +.border-opacity-10 { + --bs-border-opacity: 0.1; +} + +.border-opacity-25 { + --bs-border-opacity: 0.25; +} + +.border-opacity-50 { + --bs-border-opacity: 0.5; +} + +.border-opacity-75 { + --bs-border-opacity: 0.75; +} + +.border-opacity-100 { + --bs-border-opacity: 1; +} + +.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; +} + +.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: 0.25rem !important; +} + +.m-2 { + margin: 0.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: 0.25rem !important; + margin-left: 0.25rem !important; +} + +.mx-2 { + margin-right: 0.5rem !important; + margin-left: 0.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: 0.25rem !important; + margin-bottom: 0.25rem !important; +} + +.my-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.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: 0.25rem !important; +} + +.mt-2 { + margin-top: 0.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: 0.25rem !important; +} + +.me-2 { + margin-right: 0.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: 0.25rem !important; +} + +.mb-2 { + margin-bottom: 0.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: 0.25rem !important; +} + +.ms-2 { + margin-left: 0.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: 0.25rem !important; +} + +.p-2 { + padding: 0.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: 0.25rem !important; + padding-left: 0.25rem !important; +} + +.px-2 { + padding-right: 0.5rem !important; + padding-left: 0.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: 0.25rem !important; + padding-bottom: 0.25rem !important; +} + +.py-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.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: 0.25rem !important; +} + +.pt-2 { + padding-top: 0.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: 0.25rem !important; +} + +.pe-2 { + padding-right: 0.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: 0.25rem !important; +} + +.pb-2 { + padding-bottom: 0.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: 0.25rem !important; +} + +.ps-2 { + padding-left: 0.5rem !important; +} + +.ps-3 { + padding-left: 1rem !important; +} + +.ps-4 { + padding-left: 1.5rem !important; +} + +.ps-5 { + padding-left: 3rem !important; +} + +.gap-0 { + gap: 0 !important; +} + +.gap-1 { + gap: 0.25rem !important; +} + +.gap-2 { + gap: 0.5rem !important; +} + +.gap-3 { + gap: 1rem !important; +} + +.gap-4 { + gap: 1.5rem !important; +} + +.gap-5 { + gap: 3rem !important; +} + +.row-gap-0 { + row-gap: 0 !important; +} + +.row-gap-1 { + row-gap: 0.25rem !important; +} + +.row-gap-2 { + row-gap: 0.5rem !important; +} + +.row-gap-3 { + row-gap: 1rem !important; +} + +.row-gap-4 { + row-gap: 1.5rem !important; +} + +.row-gap-5 { + row-gap: 3rem !important; +} + +.column-gap-0 { + -moz-column-gap: 0 !important; + column-gap: 0 !important; +} + +.column-gap-1 { + -moz-column-gap: 0.25rem !important; + column-gap: 0.25rem !important; +} + +.column-gap-2 { + -moz-column-gap: 0.5rem !important; + column-gap: 0.5rem !important; +} + +.column-gap-3 { + -moz-column-gap: 1rem !important; + column-gap: 1rem !important; +} + +.column-gap-4 { + -moz-column-gap: 1.5rem !important; + column-gap: 1.5rem !important; +} + +.column-gap-5 { + -moz-column-gap: 3rem !important; + column-gap: 3rem !important; +} + +.font-monospace { + font-family: var(--bs-font-monospace) !important; +} + +.fs-1 { + font-size: calc(1.35rem + 1.2vw) !important; +} + +.fs-2 { + font-size: calc(1.3125rem + 0.75vw) !important; +} + +.fs-3 { + font-size: calc(1.275rem + 0.3vw) !important; +} + +.fs-4 { + font-size: 1.125rem !important; +} + +.fs-5 { + font-size: 1rem !important; +} + +.fs-6 { + font-size: 1rem !important; +} + +.fst-italic { + font-style: italic !important; +} + +.fst-normal { + font-style: normal !important; +} + +.fw-lighter { + font-weight: lighter !important; +} + +.fw-light { + font-weight: 300 !important; +} + +.fw-normal { + font-weight: 400 !important; +} + +.fw-medium { + font-weight: 500 !important; +} + +.fw-semibold { + font-weight: 600 !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; +} + +/* rtl:begin:remove */ +.text-break { + word-wrap: break-word !important; + word-break: break-word !important; +} + +/* rtl:end:remove */ +.text-primary { + --bs-text-opacity: 1; + color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important; +} + +.text-secondary { + --bs-text-opacity: 1; + color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important; +} + +.text-success { + --bs-text-opacity: 1; + color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important; +} + +.text-info { + --bs-text-opacity: 1; + color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important; +} + +.text-warning { + --bs-text-opacity: 1; + color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important; +} + +.text-danger { + --bs-text-opacity: 1; + color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important; +} + +.text-light { + --bs-text-opacity: 1; + color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important; +} + +.text-dark { + --bs-text-opacity: 1; + color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important; +} + +.text-black { + --bs-text-opacity: 1; + color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important; +} + +.text-white { + --bs-text-opacity: 1; + color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important; +} + +.text-body { + --bs-text-opacity: 1; + color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important; +} + +.text-muted { + --bs-text-opacity: 1; + color: var(--bs-secondary-color) !important; +} + +.text-black-50 { + --bs-text-opacity: 1; + color: rgba(0, 0, 0, 0.5) !important; +} + +.text-white-50 { + --bs-text-opacity: 1; + color: rgba(255, 255, 255, 0.5) !important; +} + +.text-body-secondary { + --bs-text-opacity: 1; + color: var(--bs-secondary-color) !important; +} + +.text-body-tertiary { + --bs-text-opacity: 1; + color: var(--bs-tertiary-color) !important; +} + +.text-body-emphasis { + --bs-text-opacity: 1; + color: var(--bs-emphasis-color) !important; +} + +.text-reset { + --bs-text-opacity: 1; + color: inherit !important; +} + +.text-opacity-25 { + --bs-text-opacity: 0.25; +} + +.text-opacity-50 { + --bs-text-opacity: 0.5; +} + +.text-opacity-75 { + --bs-text-opacity: 0.75; +} + +.text-opacity-100 { + --bs-text-opacity: 1; +} + +.text-primary-emphasis { + color: var(--bs-primary-text-emphasis) !important; +} + +.text-secondary-emphasis { + color: var(--bs-secondary-text-emphasis) !important; +} + +.text-success-emphasis { + color: var(--bs-success-text-emphasis) !important; +} + +.text-info-emphasis { + color: var(--bs-info-text-emphasis) !important; +} + +.text-warning-emphasis { + color: var(--bs-warning-text-emphasis) !important; +} + +.text-danger-emphasis { + color: var(--bs-danger-text-emphasis) !important; +} + +.text-light-emphasis { + color: var(--bs-light-text-emphasis) !important; +} + +.text-dark-emphasis { + color: var(--bs-dark-text-emphasis) !important; +} + +.link-opacity-10 { + --bs-link-opacity: 0.1; +} + +.link-opacity-10-hover:hover { + --bs-link-opacity: 0.1; +} + +.link-opacity-25 { + --bs-link-opacity: 0.25; +} + +.link-opacity-25-hover:hover { + --bs-link-opacity: 0.25; +} + +.link-opacity-50 { + --bs-link-opacity: 0.5; +} + +.link-opacity-50-hover:hover { + --bs-link-opacity: 0.5; +} + +.link-opacity-75 { + --bs-link-opacity: 0.75; +} + +.link-opacity-75-hover:hover { + --bs-link-opacity: 0.75; +} + +.link-opacity-100 { + --bs-link-opacity: 1; +} + +.link-opacity-100-hover:hover { + --bs-link-opacity: 1; +} + +.link-offset-1 { + text-underline-offset: 0.125em !important; +} + +.link-offset-1-hover:hover { + text-underline-offset: 0.125em !important; +} + +.link-offset-2 { + text-underline-offset: 0.25em !important; +} + +.link-offset-2-hover:hover { + text-underline-offset: 0.25em !important; +} + +.link-offset-3 { + text-underline-offset: 0.375em !important; +} + +.link-offset-3-hover:hover { + text-underline-offset: 0.375em !important; +} + +.link-underline-primary { + --bs-link-underline-opacity: 1; + text-decoration-color: rgba(var(--bs-primary-rgb), var(--bs-link-underline-opacity)) !important; +} + +.link-underline-secondary { + --bs-link-underline-opacity: 1; + text-decoration-color: rgba(var(--bs-secondary-rgb), var(--bs-link-underline-opacity)) !important; +} + +.link-underline-success { + --bs-link-underline-opacity: 1; + text-decoration-color: rgba(var(--bs-success-rgb), var(--bs-link-underline-opacity)) !important; +} + +.link-underline-info { + --bs-link-underline-opacity: 1; + text-decoration-color: rgba(var(--bs-info-rgb), var(--bs-link-underline-opacity)) !important; +} + +.link-underline-warning { + --bs-link-underline-opacity: 1; + text-decoration-color: rgba(var(--bs-warning-rgb), var(--bs-link-underline-opacity)) !important; +} + +.link-underline-danger { + --bs-link-underline-opacity: 1; + text-decoration-color: rgba(var(--bs-danger-rgb), var(--bs-link-underline-opacity)) !important; +} + +.link-underline-light { + --bs-link-underline-opacity: 1; + text-decoration-color: rgba(var(--bs-light-rgb), var(--bs-link-underline-opacity)) !important; +} + +.link-underline-dark { + --bs-link-underline-opacity: 1; + text-decoration-color: rgba(var(--bs-dark-rgb), var(--bs-link-underline-opacity)) !important; +} + +.link-underline { + --bs-link-underline-opacity: 1; + text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-underline-opacity, 1)) !important; +} + +.link-underline-opacity-0 { + --bs-link-underline-opacity: 0; +} + +.link-underline-opacity-0-hover:hover { + --bs-link-underline-opacity: 0; +} + +.link-underline-opacity-10 { + --bs-link-underline-opacity: 0.1; +} + +.link-underline-opacity-10-hover:hover { + --bs-link-underline-opacity: 0.1; +} + +.link-underline-opacity-25 { + --bs-link-underline-opacity: 0.25; +} + +.link-underline-opacity-25-hover:hover { + --bs-link-underline-opacity: 0.25; +} + +.link-underline-opacity-50 { + --bs-link-underline-opacity: 0.5; +} + +.link-underline-opacity-50-hover:hover { + --bs-link-underline-opacity: 0.5; +} + +.link-underline-opacity-75 { + --bs-link-underline-opacity: 0.75; +} + +.link-underline-opacity-75-hover:hover { + --bs-link-underline-opacity: 0.75; +} + +.link-underline-opacity-100 { + --bs-link-underline-opacity: 1; +} + +.link-underline-opacity-100-hover:hover { + --bs-link-underline-opacity: 1; +} + +.bg-primary { + --bs-bg-opacity: 1; + background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important; +} + +.bg-secondary { + --bs-bg-opacity: 1; + background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important; +} + +.bg-success { + --bs-bg-opacity: 1; + background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important; +} + +.bg-info { + --bs-bg-opacity: 1; + background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important; +} + +.bg-warning { + --bs-bg-opacity: 1; + background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important; +} + +.bg-danger { + --bs-bg-opacity: 1; + background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important; +} + +.bg-light { + --bs-bg-opacity: 1; + background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important; +} + +.bg-dark { + --bs-bg-opacity: 1; + background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important; +} + +.bg-black { + --bs-bg-opacity: 1; + background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important; +} + +.bg-white { + --bs-bg-opacity: 1; + background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important; +} + +.bg-body { + --bs-bg-opacity: 1; + background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important; +} + +.bg-transparent { + --bs-bg-opacity: 1; + background-color: transparent !important; +} + +.bg-body-secondary { + --bs-bg-opacity: 1; + background-color: rgba(var(--bs-secondary-bg-rgb), var(--bs-bg-opacity)) !important; +} + +.bg-body-tertiary { + --bs-bg-opacity: 1; + background-color: rgba(var(--bs-tertiary-bg-rgb), var(--bs-bg-opacity)) !important; +} + +.bg-opacity-10 { + --bs-bg-opacity: 0.1; +} + +.bg-opacity-25 { + --bs-bg-opacity: 0.25; +} + +.bg-opacity-50 { + --bs-bg-opacity: 0.5; +} + +.bg-opacity-75 { + --bs-bg-opacity: 0.75; +} + +.bg-opacity-100 { + --bs-bg-opacity: 1; +} + +.bg-primary-subtle { + background-color: var(--bs-primary-bg-subtle) !important; +} + +.bg-secondary-subtle { + background-color: var(--bs-secondary-bg-subtle) !important; +} + +.bg-success-subtle { + background-color: var(--bs-success-bg-subtle) !important; +} + +.bg-info-subtle { + background-color: var(--bs-info-bg-subtle) !important; +} + +.bg-warning-subtle { + background-color: var(--bs-warning-bg-subtle) !important; +} + +.bg-danger-subtle { + background-color: var(--bs-danger-bg-subtle) !important; +} + +.bg-light-subtle { + background-color: var(--bs-light-bg-subtle) !important; +} + +.bg-dark-subtle { + background-color: var(--bs-dark-bg-subtle) !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: var(--bs-border-radius) !important; +} + +.rounded-0 { + border-radius: 0 !important; +} + +.rounded-1 { + border-radius: var(--bs-border-radius-sm) !important; +} + +.rounded-2 { + border-radius: var(--bs-border-radius) !important; +} + +.rounded-3 { + border-radius: var(--bs-border-radius-lg) !important; +} + +.rounded-4 { + border-radius: var(--bs-border-radius-xl) !important; +} + +.rounded-5 { + border-radius: var(--bs-border-radius-xxl) !important; +} + +.rounded-circle { + border-radius: 50% !important; +} + +.rounded-pill { + border-radius: var(--bs-border-radius-pill) !important; +} + +.rounded-top { + border-top-left-radius: var(--bs-border-radius) !important; + border-top-right-radius: var(--bs-border-radius) !important; +} + +.rounded-top-0 { + border-top-left-radius: 0 !important; + border-top-right-radius: 0 !important; +} + +.rounded-top-1 { + border-top-left-radius: var(--bs-border-radius-sm) !important; + border-top-right-radius: var(--bs-border-radius-sm) !important; +} + +.rounded-top-2 { + border-top-left-radius: var(--bs-border-radius) !important; + border-top-right-radius: var(--bs-border-radius) !important; +} + +.rounded-top-3 { + border-top-left-radius: var(--bs-border-radius-lg) !important; + border-top-right-radius: var(--bs-border-radius-lg) !important; +} + +.rounded-top-4 { + border-top-left-radius: var(--bs-border-radius-xl) !important; + border-top-right-radius: var(--bs-border-radius-xl) !important; +} + +.rounded-top-5 { + border-top-left-radius: var(--bs-border-radius-xxl) !important; + border-top-right-radius: var(--bs-border-radius-xxl) !important; +} + +.rounded-top-circle { + border-top-left-radius: 50% !important; + border-top-right-radius: 50% !important; +} + +.rounded-top-pill { + border-top-left-radius: var(--bs-border-radius-pill) !important; + border-top-right-radius: var(--bs-border-radius-pill) !important; +} + +.rounded-end { + border-top-right-radius: var(--bs-border-radius) !important; + border-bottom-right-radius: var(--bs-border-radius) !important; +} + +.rounded-end-0 { + border-top-right-radius: 0 !important; + border-bottom-right-radius: 0 !important; +} + +.rounded-end-1 { + border-top-right-radius: var(--bs-border-radius-sm) !important; + border-bottom-right-radius: var(--bs-border-radius-sm) !important; +} + +.rounded-end-2 { + border-top-right-radius: var(--bs-border-radius) !important; + border-bottom-right-radius: var(--bs-border-radius) !important; +} + +.rounded-end-3 { + border-top-right-radius: var(--bs-border-radius-lg) !important; + border-bottom-right-radius: var(--bs-border-radius-lg) !important; +} + +.rounded-end-4 { + border-top-right-radius: var(--bs-border-radius-xl) !important; + border-bottom-right-radius: var(--bs-border-radius-xl) !important; +} + +.rounded-end-5 { + border-top-right-radius: var(--bs-border-radius-xxl) !important; + border-bottom-right-radius: var(--bs-border-radius-xxl) !important; +} + +.rounded-end-circle { + border-top-right-radius: 50% !important; + border-bottom-right-radius: 50% !important; +} + +.rounded-end-pill { + border-top-right-radius: var(--bs-border-radius-pill) !important; + border-bottom-right-radius: var(--bs-border-radius-pill) !important; +} + +.rounded-bottom { + border-bottom-right-radius: var(--bs-border-radius) !important; + border-bottom-left-radius: var(--bs-border-radius) !important; +} + +.rounded-bottom-0 { + border-bottom-right-radius: 0 !important; + border-bottom-left-radius: 0 !important; +} + +.rounded-bottom-1 { + border-bottom-right-radius: var(--bs-border-radius-sm) !important; + border-bottom-left-radius: var(--bs-border-radius-sm) !important; +} + +.rounded-bottom-2 { + border-bottom-right-radius: var(--bs-border-radius) !important; + border-bottom-left-radius: var(--bs-border-radius) !important; +} + +.rounded-bottom-3 { + border-bottom-right-radius: var(--bs-border-radius-lg) !important; + border-bottom-left-radius: var(--bs-border-radius-lg) !important; +} + +.rounded-bottom-4 { + border-bottom-right-radius: var(--bs-border-radius-xl) !important; + border-bottom-left-radius: var(--bs-border-radius-xl) !important; +} + +.rounded-bottom-5 { + border-bottom-right-radius: var(--bs-border-radius-xxl) !important; + border-bottom-left-radius: var(--bs-border-radius-xxl) !important; +} + +.rounded-bottom-circle { + border-bottom-right-radius: 50% !important; + border-bottom-left-radius: 50% !important; +} + +.rounded-bottom-pill { + border-bottom-right-radius: var(--bs-border-radius-pill) !important; + border-bottom-left-radius: var(--bs-border-radius-pill) !important; +} + +.rounded-start { + border-bottom-left-radius: var(--bs-border-radius) !important; + border-top-left-radius: var(--bs-border-radius) !important; +} + +.rounded-start-0 { + border-bottom-left-radius: 0 !important; + border-top-left-radius: 0 !important; +} + +.rounded-start-1 { + border-bottom-left-radius: var(--bs-border-radius-sm) !important; + border-top-left-radius: var(--bs-border-radius-sm) !important; +} + +.rounded-start-2 { + border-bottom-left-radius: var(--bs-border-radius) !important; + border-top-left-radius: var(--bs-border-radius) !important; +} + +.rounded-start-3 { + border-bottom-left-radius: var(--bs-border-radius-lg) !important; + border-top-left-radius: var(--bs-border-radius-lg) !important; +} + +.rounded-start-4 { + border-bottom-left-radius: var(--bs-border-radius-xl) !important; + border-top-left-radius: var(--bs-border-radius-xl) !important; +} + +.rounded-start-5 { + border-bottom-left-radius: var(--bs-border-radius-xxl) !important; + border-top-left-radius: var(--bs-border-radius-xxl) !important; +} + +.rounded-start-circle { + border-bottom-left-radius: 50% !important; + border-top-left-radius: 50% !important; +} + +.rounded-start-pill { + border-bottom-left-radius: var(--bs-border-radius-pill) !important; + border-top-left-radius: var(--bs-border-radius-pill) !important; +} + +.visible { + visibility: visible !important; +} + +.invisible { + visibility: hidden !important; +} + +.z-n1 { + z-index: -1 !important; +} + +.z-0 { + z-index: 0 !important; +} + +.z-1 { + z-index: 1 !important; +} + +.z-2 { + z-index: 2 !important; +} + +.z-3 { + z-index: 3 !important; +} + +@media (min-width: 576px) { + .float-sm-start { + float: left !important; + } + .float-sm-end { + float: right !important; + } + .float-sm-none { + float: none !important; + } + .object-fit-sm-contain { + -o-object-fit: contain !important; + object-fit: contain !important; + } + .object-fit-sm-cover { + -o-object-fit: cover !important; + object-fit: cover !important; + } + .object-fit-sm-fill { + -o-object-fit: fill !important; + object-fit: fill !important; + } + .object-fit-sm-scale { + -o-object-fit: scale-down !important; + object-fit: scale-down !important; + } + .object-fit-sm-none { + -o-object-fit: none !important; + object-fit: 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-inline-grid { + display: inline-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: 0.25rem !important; + } + .m-sm-2 { + margin: 0.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: 0.25rem !important; + margin-left: 0.25rem !important; + } + .mx-sm-2 { + margin-right: 0.5rem !important; + margin-left: 0.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: 0.25rem !important; + margin-bottom: 0.25rem !important; + } + .my-sm-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.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: 0.25rem !important; + } + .mt-sm-2 { + margin-top: 0.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: 0.25rem !important; + } + .me-sm-2 { + margin-right: 0.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: 0.25rem !important; + } + .mb-sm-2 { + margin-bottom: 0.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: 0.25rem !important; + } + .ms-sm-2 { + margin-left: 0.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: 0.25rem !important; + } + .p-sm-2 { + padding: 0.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: 0.25rem !important; + padding-left: 0.25rem !important; + } + .px-sm-2 { + padding-right: 0.5rem !important; + padding-left: 0.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: 0.25rem !important; + padding-bottom: 0.25rem !important; + } + .py-sm-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.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: 0.25rem !important; + } + .pt-sm-2 { + padding-top: 0.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: 0.25rem !important; + } + .pe-sm-2 { + padding-right: 0.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: 0.25rem !important; + } + .pb-sm-2 { + padding-bottom: 0.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: 0.25rem !important; + } + .ps-sm-2 { + padding-left: 0.5rem !important; + } + .ps-sm-3 { + padding-left: 1rem !important; + } + .ps-sm-4 { + padding-left: 1.5rem !important; + } + .ps-sm-5 { + padding-left: 3rem !important; + } + .gap-sm-0 { + gap: 0 !important; + } + .gap-sm-1 { + gap: 0.25rem !important; + } + .gap-sm-2 { + gap: 0.5rem !important; + } + .gap-sm-3 { + gap: 1rem !important; + } + .gap-sm-4 { + gap: 1.5rem !important; + } + .gap-sm-5 { + gap: 3rem !important; + } + .row-gap-sm-0 { + row-gap: 0 !important; + } + .row-gap-sm-1 { + row-gap: 0.25rem !important; + } + .row-gap-sm-2 { + row-gap: 0.5rem !important; + } + .row-gap-sm-3 { + row-gap: 1rem !important; + } + .row-gap-sm-4 { + row-gap: 1.5rem !important; + } + .row-gap-sm-5 { + row-gap: 3rem !important; + } + .column-gap-sm-0 { + -moz-column-gap: 0 !important; + column-gap: 0 !important; + } + .column-gap-sm-1 { + -moz-column-gap: 0.25rem !important; + column-gap: 0.25rem !important; + } + .column-gap-sm-2 { + -moz-column-gap: 0.5rem !important; + column-gap: 0.5rem !important; + } + .column-gap-sm-3 { + -moz-column-gap: 1rem !important; + column-gap: 1rem !important; + } + .column-gap-sm-4 { + -moz-column-gap: 1.5rem !important; + column-gap: 1.5rem !important; + } + .column-gap-sm-5 { + -moz-column-gap: 3rem !important; + column-gap: 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; + } + .object-fit-md-contain { + -o-object-fit: contain !important; + object-fit: contain !important; + } + .object-fit-md-cover { + -o-object-fit: cover !important; + object-fit: cover !important; + } + .object-fit-md-fill { + -o-object-fit: fill !important; + object-fit: fill !important; + } + .object-fit-md-scale { + -o-object-fit: scale-down !important; + object-fit: scale-down !important; + } + .object-fit-md-none { + -o-object-fit: none !important; + object-fit: 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-inline-grid { + display: inline-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: 0.25rem !important; + } + .m-md-2 { + margin: 0.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: 0.25rem !important; + margin-left: 0.25rem !important; + } + .mx-md-2 { + margin-right: 0.5rem !important; + margin-left: 0.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: 0.25rem !important; + margin-bottom: 0.25rem !important; + } + .my-md-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.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: 0.25rem !important; + } + .mt-md-2 { + margin-top: 0.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: 0.25rem !important; + } + .me-md-2 { + margin-right: 0.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: 0.25rem !important; + } + .mb-md-2 { + margin-bottom: 0.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: 0.25rem !important; + } + .ms-md-2 { + margin-left: 0.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: 0.25rem !important; + } + .p-md-2 { + padding: 0.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: 0.25rem !important; + padding-left: 0.25rem !important; + } + .px-md-2 { + padding-right: 0.5rem !important; + padding-left: 0.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: 0.25rem !important; + padding-bottom: 0.25rem !important; + } + .py-md-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.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: 0.25rem !important; + } + .pt-md-2 { + padding-top: 0.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: 0.25rem !important; + } + .pe-md-2 { + padding-right: 0.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: 0.25rem !important; + } + .pb-md-2 { + padding-bottom: 0.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: 0.25rem !important; + } + .ps-md-2 { + padding-left: 0.5rem !important; + } + .ps-md-3 { + padding-left: 1rem !important; + } + .ps-md-4 { + padding-left: 1.5rem !important; + } + .ps-md-5 { + padding-left: 3rem !important; + } + .gap-md-0 { + gap: 0 !important; + } + .gap-md-1 { + gap: 0.25rem !important; + } + .gap-md-2 { + gap: 0.5rem !important; + } + .gap-md-3 { + gap: 1rem !important; + } + .gap-md-4 { + gap: 1.5rem !important; + } + .gap-md-5 { + gap: 3rem !important; + } + .row-gap-md-0 { + row-gap: 0 !important; + } + .row-gap-md-1 { + row-gap: 0.25rem !important; + } + .row-gap-md-2 { + row-gap: 0.5rem !important; + } + .row-gap-md-3 { + row-gap: 1rem !important; + } + .row-gap-md-4 { + row-gap: 1.5rem !important; + } + .row-gap-md-5 { + row-gap: 3rem !important; + } + .column-gap-md-0 { + -moz-column-gap: 0 !important; + column-gap: 0 !important; + } + .column-gap-md-1 { + -moz-column-gap: 0.25rem !important; + column-gap: 0.25rem !important; + } + .column-gap-md-2 { + -moz-column-gap: 0.5rem !important; + column-gap: 0.5rem !important; + } + .column-gap-md-3 { + -moz-column-gap: 1rem !important; + column-gap: 1rem !important; + } + .column-gap-md-4 { + -moz-column-gap: 1.5rem !important; + column-gap: 1.5rem !important; + } + .column-gap-md-5 { + -moz-column-gap: 3rem !important; + column-gap: 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; + } + .object-fit-lg-contain { + -o-object-fit: contain !important; + object-fit: contain !important; + } + .object-fit-lg-cover { + -o-object-fit: cover !important; + object-fit: cover !important; + } + .object-fit-lg-fill { + -o-object-fit: fill !important; + object-fit: fill !important; + } + .object-fit-lg-scale { + -o-object-fit: scale-down !important; + object-fit: scale-down !important; + } + .object-fit-lg-none { + -o-object-fit: none !important; + object-fit: 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-inline-grid { + display: inline-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: 0.25rem !important; + } + .m-lg-2 { + margin: 0.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: 0.25rem !important; + margin-left: 0.25rem !important; + } + .mx-lg-2 { + margin-right: 0.5rem !important; + margin-left: 0.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: 0.25rem !important; + margin-bottom: 0.25rem !important; + } + .my-lg-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.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: 0.25rem !important; + } + .mt-lg-2 { + margin-top: 0.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: 0.25rem !important; + } + .me-lg-2 { + margin-right: 0.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: 0.25rem !important; + } + .mb-lg-2 { + margin-bottom: 0.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: 0.25rem !important; + } + .ms-lg-2 { + margin-left: 0.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: 0.25rem !important; + } + .p-lg-2 { + padding: 0.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: 0.25rem !important; + padding-left: 0.25rem !important; + } + .px-lg-2 { + padding-right: 0.5rem !important; + padding-left: 0.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: 0.25rem !important; + padding-bottom: 0.25rem !important; + } + .py-lg-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.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: 0.25rem !important; + } + .pt-lg-2 { + padding-top: 0.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: 0.25rem !important; + } + .pe-lg-2 { + padding-right: 0.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: 0.25rem !important; + } + .pb-lg-2 { + padding-bottom: 0.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: 0.25rem !important; + } + .ps-lg-2 { + padding-left: 0.5rem !important; + } + .ps-lg-3 { + padding-left: 1rem !important; + } + .ps-lg-4 { + padding-left: 1.5rem !important; + } + .ps-lg-5 { + padding-left: 3rem !important; + } + .gap-lg-0 { + gap: 0 !important; + } + .gap-lg-1 { + gap: 0.25rem !important; + } + .gap-lg-2 { + gap: 0.5rem !important; + } + .gap-lg-3 { + gap: 1rem !important; + } + .gap-lg-4 { + gap: 1.5rem !important; + } + .gap-lg-5 { + gap: 3rem !important; + } + .row-gap-lg-0 { + row-gap: 0 !important; + } + .row-gap-lg-1 { + row-gap: 0.25rem !important; + } + .row-gap-lg-2 { + row-gap: 0.5rem !important; + } + .row-gap-lg-3 { + row-gap: 1rem !important; + } + .row-gap-lg-4 { + row-gap: 1.5rem !important; + } + .row-gap-lg-5 { + row-gap: 3rem !important; + } + .column-gap-lg-0 { + -moz-column-gap: 0 !important; + column-gap: 0 !important; + } + .column-gap-lg-1 { + -moz-column-gap: 0.25rem !important; + column-gap: 0.25rem !important; + } + .column-gap-lg-2 { + -moz-column-gap: 0.5rem !important; + column-gap: 0.5rem !important; + } + .column-gap-lg-3 { + -moz-column-gap: 1rem !important; + column-gap: 1rem !important; + } + .column-gap-lg-4 { + -moz-column-gap: 1.5rem !important; + column-gap: 1.5rem !important; + } + .column-gap-lg-5 { + -moz-column-gap: 3rem !important; + column-gap: 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; + } + .object-fit-xl-contain { + -o-object-fit: contain !important; + object-fit: contain !important; + } + .object-fit-xl-cover { + -o-object-fit: cover !important; + object-fit: cover !important; + } + .object-fit-xl-fill { + -o-object-fit: fill !important; + object-fit: fill !important; + } + .object-fit-xl-scale { + -o-object-fit: scale-down !important; + object-fit: scale-down !important; + } + .object-fit-xl-none { + -o-object-fit: none !important; + object-fit: 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-inline-grid { + display: inline-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: 0.25rem !important; + } + .m-xl-2 { + margin: 0.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: 0.25rem !important; + margin-left: 0.25rem !important; + } + .mx-xl-2 { + margin-right: 0.5rem !important; + margin-left: 0.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: 0.25rem !important; + margin-bottom: 0.25rem !important; + } + .my-xl-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.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: 0.25rem !important; + } + .mt-xl-2 { + margin-top: 0.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: 0.25rem !important; + } + .me-xl-2 { + margin-right: 0.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: 0.25rem !important; + } + .mb-xl-2 { + margin-bottom: 0.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: 0.25rem !important; + } + .ms-xl-2 { + margin-left: 0.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: 0.25rem !important; + } + .p-xl-2 { + padding: 0.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: 0.25rem !important; + padding-left: 0.25rem !important; + } + .px-xl-2 { + padding-right: 0.5rem !important; + padding-left: 0.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: 0.25rem !important; + padding-bottom: 0.25rem !important; + } + .py-xl-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.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: 0.25rem !important; + } + .pt-xl-2 { + padding-top: 0.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: 0.25rem !important; + } + .pe-xl-2 { + padding-right: 0.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: 0.25rem !important; + } + .pb-xl-2 { + padding-bottom: 0.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: 0.25rem !important; + } + .ps-xl-2 { + padding-left: 0.5rem !important; + } + .ps-xl-3 { + padding-left: 1rem !important; + } + .ps-xl-4 { + padding-left: 1.5rem !important; + } + .ps-xl-5 { + padding-left: 3rem !important; + } + .gap-xl-0 { + gap: 0 !important; + } + .gap-xl-1 { + gap: 0.25rem !important; + } + .gap-xl-2 { + gap: 0.5rem !important; + } + .gap-xl-3 { + gap: 1rem !important; + } + .gap-xl-4 { + gap: 1.5rem !important; + } + .gap-xl-5 { + gap: 3rem !important; + } + .row-gap-xl-0 { + row-gap: 0 !important; + } + .row-gap-xl-1 { + row-gap: 0.25rem !important; + } + .row-gap-xl-2 { + row-gap: 0.5rem !important; + } + .row-gap-xl-3 { + row-gap: 1rem !important; + } + .row-gap-xl-4 { + row-gap: 1.5rem !important; + } + .row-gap-xl-5 { + row-gap: 3rem !important; + } + .column-gap-xl-0 { + -moz-column-gap: 0 !important; + column-gap: 0 !important; + } + .column-gap-xl-1 { + -moz-column-gap: 0.25rem !important; + column-gap: 0.25rem !important; + } + .column-gap-xl-2 { + -moz-column-gap: 0.5rem !important; + column-gap: 0.5rem !important; + } + .column-gap-xl-3 { + -moz-column-gap: 1rem !important; + column-gap: 1rem !important; + } + .column-gap-xl-4 { + -moz-column-gap: 1.5rem !important; + column-gap: 1.5rem !important; + } + .column-gap-xl-5 { + -moz-column-gap: 3rem !important; + column-gap: 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; + } + .object-fit-xxl-contain { + -o-object-fit: contain !important; + object-fit: contain !important; + } + .object-fit-xxl-cover { + -o-object-fit: cover !important; + object-fit: cover !important; + } + .object-fit-xxl-fill { + -o-object-fit: fill !important; + object-fit: fill !important; + } + .object-fit-xxl-scale { + -o-object-fit: scale-down !important; + object-fit: scale-down !important; + } + .object-fit-xxl-none { + -o-object-fit: none !important; + object-fit: 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-inline-grid { + display: inline-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: 0.25rem !important; + } + .m-xxl-2 { + margin: 0.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: 0.25rem !important; + margin-left: 0.25rem !important; + } + .mx-xxl-2 { + margin-right: 0.5rem !important; + margin-left: 0.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: 0.25rem !important; + margin-bottom: 0.25rem !important; + } + .my-xxl-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.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: 0.25rem !important; + } + .mt-xxl-2 { + margin-top: 0.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: 0.25rem !important; + } + .me-xxl-2 { + margin-right: 0.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: 0.25rem !important; + } + .mb-xxl-2 { + margin-bottom: 0.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: 0.25rem !important; + } + .ms-xxl-2 { + margin-left: 0.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: 0.25rem !important; + } + .p-xxl-2 { + padding: 0.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: 0.25rem !important; + padding-left: 0.25rem !important; + } + .px-xxl-2 { + padding-right: 0.5rem !important; + padding-left: 0.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: 0.25rem !important; + padding-bottom: 0.25rem !important; + } + .py-xxl-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.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: 0.25rem !important; + } + .pt-xxl-2 { + padding-top: 0.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: 0.25rem !important; + } + .pe-xxl-2 { + padding-right: 0.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: 0.25rem !important; + } + .pb-xxl-2 { + padding-bottom: 0.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: 0.25rem !important; + } + .ps-xxl-2 { + padding-left: 0.5rem !important; + } + .ps-xxl-3 { + padding-left: 1rem !important; + } + .ps-xxl-4 { + padding-left: 1.5rem !important; + } + .ps-xxl-5 { + padding-left: 3rem !important; + } + .gap-xxl-0 { + gap: 0 !important; + } + .gap-xxl-1 { + gap: 0.25rem !important; + } + .gap-xxl-2 { + gap: 0.5rem !important; + } + .gap-xxl-3 { + gap: 1rem !important; + } + .gap-xxl-4 { + gap: 1.5rem !important; + } + .gap-xxl-5 { + gap: 3rem !important; + } + .row-gap-xxl-0 { + row-gap: 0 !important; + } + .row-gap-xxl-1 { + row-gap: 0.25rem !important; + } + .row-gap-xxl-2 { + row-gap: 0.5rem !important; + } + .row-gap-xxl-3 { + row-gap: 1rem !important; + } + .row-gap-xxl-4 { + row-gap: 1.5rem !important; + } + .row-gap-xxl-5 { + row-gap: 3rem !important; + } + .column-gap-xxl-0 { + -moz-column-gap: 0 !important; + column-gap: 0 !important; + } + .column-gap-xxl-1 { + -moz-column-gap: 0.25rem !important; + column-gap: 0.25rem !important; + } + .column-gap-xxl-2 { + -moz-column-gap: 0.5rem !important; + column-gap: 0.5rem !important; + } + .column-gap-xxl-3 { + -moz-column-gap: 1rem !important; + column-gap: 1rem !important; + } + .column-gap-xxl-4 { + -moz-column-gap: 1.5rem !important; + column-gap: 1.5rem !important; + } + .column-gap-xxl-5 { + -moz-column-gap: 3rem !important; + column-gap: 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.25rem !important; + } + .fs-2 { + font-size: 1.875rem !important; + } + .fs-3 { + 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-inline-grid { + display: inline-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; + } +} +* { + outline: none; + padding: 0; +} +*::after { + margin: 0; + padding: 0; +} +*::before { + margin: 0; + padding: 0; +} + +#main-wrapper { + transition: all 0.25s ease-in; + position: relative; + z-index: 1; + margin-top: 110px; +} +#main-wrapper.show { + opacity: 1; +} + +.content-body { + margin-left: 80px; + margin-top: 30px; + margin-bottom: 50px; +} +@media (min-width: 576px) { + .content-body { + margin-left: 0px; + margin-bottom: 50px; + } +} + +.details .content-body { + margin-left: 0px; +} + +.dashboard .content-body { + margin-left: 80px; + margin-right: 0px; + margin-top: 0px; +} +@media only screen and (max-width: 767px) { + .dashboard .content-body { + margin-left: 0px; + } +} + +ul { + padding: 0; + margin: 0; +} + +li { + list-style: none; +} + +a { + color: #1652F0; + text-decoration: none; + outline: none; +} +a:hover, a:focus, a.active { + text-decoration: none; + outline: none; + color: #1652F0; +} + +b, +strong { + color: #212529; +} + +h1, +.h1, +h2, +.h2, +h3, +.h3, +h4, +.h4, +h5, +.h5, +h6, +.h6 { + font-family: "Montserrat", sans-serif; + font-weight: 600; +} + +/* Editable */ +.bg-purple { + background-color: #5848BB !important; +} + +.bg-transparent { + background-color: transparent !important; +} + +#preloader { + position: fixed; + width: 100%; + height: 100%; + left: 0; + top: 0; + background-color: #fff; + z-index: 999999999; +} +#preloader i { + display: block; + width: 16px; + height: 16px; + background: black; + border-radius: 16px; + position: absolute; + top: 50%; + left: 50%; + margin: -8px 0 0 -8px; + opacity: 1; + -webkit-transform: translate3d(60px, 0, 0); + overflow: hidden; + text-indent: -9999px; + border: 1px solid white; +} +#preloader i:nth-child(1) { + background: #1652F0; + -webkit-animation: googleDotA 1.75s ease-in-out infinite; +} +#preloader i:nth-child(2) { + background: #51BB25; + -webkit-animation: googleDotB 1.75s ease-in-out infinite; +} +#preloader i:nth-child(3) { + background: #F8D62B; + -webkit-animation: googleDotC 1.75s ease-in-out infinite; +} +.section-padding { + padding: 100px 0; +} +@media only screen and (max-width: 1199px) { + .section-padding { + padding: 80px 0; + } +} +@media only screen and (max-width: 991px) { + .section-padding { + padding: 75px 0; + } +} +@media only screen and (max-width: 767px) { + .section-padding { + padding: 60px 0; + } +} +@media only screen and (max-width: 575px) { + .section-padding { + padding: 50px 0; + } +} + +.mt-80 { + margin-top: 80px; +} + +.mb-80 { + margin-bottom: 80px; +} + +.page-title { + margin-bottom: 30px; + background: transparent; + border-radius: 6px; +} +.page-title .page-title-content h3, .page-title .page-title-content .h3 { + font-size: 24px; + margin-bottom: 0px; +} + +.breadcrumbs a { + color: #7184ad; + display: inline-block; + font-size: 14px; +} +.breadcrumbs.active a { + color: #fff; +} +.breadcrumbs i { + margin: 0px 10px; + font-size: 20px; + line-height: 0; + position: relative; + top: 5px; +} + +.flex-grow-2 { + flex-grow: 2; +} + +::-webkit-scrollbar { + width: 5px; +} + +/* Track */ +::-webkit-scrollbar-track { + box-shadow: inset 0 0 5px grey; + border-radius: 10px; +} + +/* Handle */ +::-webkit-scrollbar-thumb { + background: #999; + border-radius: 10px; +} + +/* Handle on hover */ +::-webkit-scrollbar-thumb:hover { + background: #777; +} + +.c-pointer { + cursor: pointer; +} + +.trade-balance { + position: relative; + height: 380px; +} + +.position-value { + position: relative; + height: 320px; +} + +.shadow-sm { + box-shadow: 0 0.125rem 0.25rem rgba(227, 230, 236, 0.9); +} + +.shadow-lg { + box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.275); +} + +.section-title { + margin-bottom: 75px; +} +.section-title h2, .section-title .h2 { + text-align: center; + font-weight: 600; +} + +.header { + padding: 20px 0px; + position: fixed; + top: 0; + left: 80px; + right: 0; + z-index: 2; + background: #f0f0f0; +} +.header.bg-primary { + border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important; +} +@media only screen and (max-width: 767px) { + .header { + left: 0; + padding: 10px 0px; + background: #fff; + } +} +.header .brand-logo { + display: none; +} +@media only screen and (max-width: 991px) { + .header .brand-logo { + display: none; + margin: 0px 20px 0px 0px; + } +} +@media only screen and (max-width: 767px) { + .header .brand-logo { + display: block; + } + .header .brand-logo img { + filter: none; + } + .header .brand-logo span { + display: none; + } +} +.header.landing { + padding: 20px 0px; + left: 0px; +} +.header.landing a { + display: flex; + align-items: center; + justify-content: center; +} +.header.landing .brand-logo { + display: block; + margin-top: 0px; + margin-left: 0px; +} +.header.landing .brand-logo img { + filter: none; + margin-right: 10px; +} +.header.landing .brand-logo span { + display: block; + top: 0; +} + +.header-content, +.header-left, +.header-right { + display: flex; + justify-content: space-between; + align-items: center; +} + +.notification { + cursor: pointer; +} +.notification .notify-bell { + margin-right: 15px; +} +@media only screen and (max-width: 767px) { + .notification .notify-bell { + margin-right: 15px; + } +} +.notification .dropdown-menu { + border: 0px; + padding: 15px 20px 10px; + margin: 0px; + top: 25px !important; + width: 330px; + box-shadow: 0 36px 48px rgba(27, 25, 148, 0.08); + border-radius: 5px; +} +.notification .dropdown-menu h4, .notification .dropdown-menu .h4 { + border-bottom: 1px solid #e5e5e5; + padding-bottom: 15px; + font-size: 16px; +} +.notification .dropdown-menu a { + display: block; + border-bottom: 1px solid #e5e5e5; + padding: 10px 0px; +} +.notification .dropdown-menu a:last-child { + border: 0px; + display: flex; + justify-content: flex-end; + align-items: center; + color: #070707; +} +.notification .dropdown-menu a:last-child i { + margin-left: 5px; + font-size: 18px; +} +.notification .dropdown-menu a p { + margin-bottom: 0px; + color: #212529; + font-weight: 600; + font-size: 14px; +} +.notification .dropdown-menu a span { + font-size: 13px; + color: #a2a5b9; +} +.notification .dropdown-menu a span.icon { + height: 40px; + width: 40px; + color: #fff; + display: flex; + align-items: center; + justify-content: center; + border-radius: 50px; +} +.notification .dropdown-menu a span.icon i { + font-size: 20px; +} +.notification .dropdown-menu a span.success { + background: #51BB25; +} +.notification .dropdown-menu a span.fail { + background: #DC3545; +} +.notification .dropdown-menu a span.pending { + background: #F8D62B; +} + +.dropdown-toggle::after { + border-top: 0px; + margin-left: 10.2px; + display: inline-block; + font-style: normal; + font-variant: normal; + text-rendering: auto; + -webkit-font-smoothing: antialiased; + font-family: "Font Awesome 5 Pro", "Font Awesome 5 Free"; + font-weight: 700; + content: "\f107"; +} + +.profile_log { + cursor: pointer; +} +.profile_log .user { + display: flex; + align-items: center; +} +.profile_log .user .thumb { + height: 35px; + width: 35px; + border-radius: 50px; + color: #fff; + text-align: center; +} +.profile_log .user .thumb img { + max-width: 35px; +} +.profile_log .dropdown-menu { + border: 0px; + padding: 0px; + margin: 0px; + top: 25px !important; + box-shadow: 0 1.5rem 4rem rgba(22, 28, 45, 0.15); + border-radius: 5px; + background-color: #fff; + min-width: 240px; +} +.profile_log .dropdown-menu .user-email { + padding: 10px 20px 10px; +} +.profile_log .dropdown-menu .user-email .thumb { + margin-right: 10px; +} +.profile_log .dropdown-menu .user-email .user-info { + margin: 0px; +} +.profile_log .dropdown-menu .user-email h5, .profile_log .dropdown-menu .user-email .h5 { + margin-bottom: 0px; +} +.profile_log .dropdown-menu .user-email span { + font-size: 14px; +} +.profile_log .dropdown-menu .user-email span i { + font-size: 22px; + color: #070707; +} +.profile_log .dropdown-menu .user-balance { + display: flex; + justify-content: space-around; + margin-bottom: 15px; +} +.profile_log .dropdown-menu .user-balance p { + margin-bottom: 0px; + font-weight: 500; + color: #212529; +} +.profile_log .dropdown-menu .dropdown-item { + padding: 10px 20px; + border-top: 1px solid #e5e5e5; + font-weight: 400; + display: flex; + align-items: center; +} +.profile_log .dropdown-menu .dropdown-item:first-child { + border: 0px; +} +.profile_log .dropdown-menu .dropdown-item.logout { + color: #DC3545; +} +.profile_log .dropdown-menu .dropdown-item.logout i { + color: #DC3545; +} +.profile_log .dropdown-menu .dropdown-item i { + margin-right: 10px; + font-size: 18px; + color: #1652F0; + font-weight: bold; +} +.profile_log .dropdown-menu .dropdown-item:hover, .profile_log .dropdown-menu .dropdown-item:focus, .profile_log .dropdown-menu .dropdown-item.active { + background-color: #1652F0; + color: #fff; +} +.profile_log .dropdown-menu .dropdown-item:hover i, .profile_log .dropdown-menu .dropdown-item:focus i, .profile_log .dropdown-menu .dropdown-item.active i { + color: #fff; +} + +.dark-light-toggle { + margin-right: 20px; + cursor: pointer; + display: none; +} +@media only screen and (max-width: 767px) { + .dark-light-toggle { + margin-right: 0px; + margin-left: 15px; + } +} +.dark-light-toggle i { + font-size: 20px; +} +.dark-light-toggle .light { + display: none; +} + +.dark-theme .dark { + display: none; +} +.dark-theme .light { + display: block; + color: #F8D62B; +} + +.navigation .navbar { + background-color: transparent !important; + padding: 0px; +} +.navigation .navbar ul { + align-items: center; + margin-left: auto; +} +@media only screen and (max-width: 991px) { + .navigation .navbar ul { + margin-top: 15px; + } +} +.navigation .navbar ul > li { + display: inline-block; + padding: 0px 7px; + width: 100%; +} +@media only screen and (max-width: 991px) { + .navigation .navbar ul > li { + border-bottom: 1px solid #e5e5e5; + margin: 0 15px; + padding: 7px 15px; + } +} +.navigation .navbar ul > li > a { + font-size: 16px; + font-weight: 600; + color: #070707; +} +@media only screen and (max-width: 991px) { + .navigation .navbar ul > li > a::after { + position: absolute; + right: 15px; + top: 25px; + } +} +@media only screen and (min-width: 991px) { + .navigation .navbar ul .dropdown > a { + position: relative; + transition: all 0.2s ease-in-out; + } + .navigation .navbar ul .dropdown-menu { + background: #fff; + padding: 15px 0; + display: block; + opacity: 0; + visibility: hidden; + z-index: 1030; + transition: all 0.2s ease-in-out; + box-shadow: 0 1.5rem 4rem rgba(22, 28, 45, 0.15); + border: 0px; + margin-top: 10px; + z-index: 998; + min-width: 10rem; + } + .navigation .navbar ul .dropdown-menu a { + display: inline-block; + color: #a2a5b9; + } + .navigation .navbar ul .dropdown-menu a:hover, .navigation .navbar ul .dropdown-menu a:focus, .navigation .navbar ul .dropdown-menu a:active, .navigation .navbar ul .dropdown-menu a.active { + color: #1652F0; + background: transparent; + } + .navigation .navbar ul li.dropdown:hover a::before { + opacity: 1; + bottom: -9px; + } + .navigation .navbar ul li.dropdown:hover .dropdown-menu { + opacity: 1; + visibility: visible; + margin-top: 0px; + } +} +@media only screen and (max-width: 991px) { + .navigation .navbar ul .dropdown-menu { + border: 0px; + padding: 0px; + } + .navigation .navbar ul .dropdown-menu a { + border-bottom: 1px solid #e5e5e5; + padding: 15px; + color: #a2a5b9; + } + .navigation .navbar ul .dropdown-menu a:last-child { + border: 0px; + } + .navigation .navbar ul .dropdown-menu a i, + .navigation .navbar ul .dropdown-menu a h6, + .navigation .navbar ul .dropdown-menu a .h6 { + color: #1652F0; + } + .navigation .navbar ul .dropdown-menu a p { + color: #a2a5b9; + margin-bottom: 0; + } +} + +.signin-btn { + min-width: 100px; +} + +.logo-white { + display: none; +} + +.light .logo-primary { + display: none; +} +.light .logo-white { + display: block; +} +.light .navigation .navbar ul > li > a { + color: rgba(255, 255, 255, 0.85); +} +.light .navigation .navbar ul > li > a:hover, .light .navigation .navbar ul > li > a:focus, .light .navigation .navbar ul > li > a.active, .light .navigation .navbar ul > li > a:active { + color: rgb(255, 255, 255); +} +.light .signin-btn .btn-primary { + background: #fff; + color: #070707; +} + +.search { + min-width: 450px; +} +@media only screen and (max-width: 767px) { + .search { + min-width: auto; + margin-right: 15px; + } +} +.search .form-control { + border-bottom-left-radius: 6px; + border-top-left-radius: 6px; +} +.search .input-group-text { + border-top-right-radius: 6px; + border-bottom-right-radius: 6px; + background: #1652F0; +} +.search .input-group-text i { + color: #fff; +} + +.icon-menu { + height: 40px; + width: 40px; + display: flex; + justify-content: center; + align-items: center; + border-radius: 50%; + background: #fff; +} +.icon-menu:hover, .icon-menu:focus, .icon-menu:active, .icon-menu.active { + background: #1652F0; + box-shadow: 0 0 20px rgba(89, 102, 122, 0.05); +} +.icon-menu:hover i, .icon-menu:focus i, .icon-menu:active i, .icon-menu.active i { + color: #fff; +} +.icon-menu span i { + font-size: 20px; + color: #a2a5b9; +} + +.bottom { + background: #070707; +} +.bottom .bottom-logo p { + color: #a2a5b9; + line-height: 30px; + font-weight: 400; +} +@media only screen and (max-width: 991px) { + .bottom .bottom-widget { + margin-bottom: 30px; + } +} +.bottom .bottom-widget .widget-title { + font-size: 18px; + font-weight: 600; + color: #fff; + margin-bottom: 20px; +} +.bottom .bottom-widget ul li a { + color: #a2a5b9; + font-weight: 400; + margin-bottom: 10px; + display: inline-block; +} + +.footer { + background: #f0f0f0; + padding: 20px 0px; + position: fixed; + bottom: 0; + left: 110px; + border-radius: 6px; +} +.footer .copyright { + position: relative; + text-align: left; +} +.footer .copyright p { + margin: 0; + font-size: 14px; + color: #a2a5b9; +} +.footer .copyright p a { + color: #1652F0; + font-weight: 700; +} +.footer .footer-social { + text-align: right; +} +.footer .footer-social li { + display: inline-block; +} +.footer .footer-social li a { + color: #070707; + padding: 0px 10px; +} + +.details .footer { + left: 0px; +} + +.sidebar { + background: #0d40c6; + position: fixed; + left: 0px; + height: calc(100% - 20px); + width: 80px; + top: 0px; + z-index: 3; + bottom: 0px; + border-radius: 0px; + box-shadow: 0 0 20px rgba(89, 102, 122, 0.05); +} +@media only screen and (max-width: 767px) { + .sidebar { + top: auto; + bottom: 0; + width: 100%; + height: 50px; + left: 0; + border-radius: 0px; + } +} + +.brand-logo { + text-align: center; + margin: 20px 20px 20px; +} +@media only screen and (max-width: 767px) { + .brand-logo { + display: none; + } +} + +.menu { + margin-top: 30px; + padding: 20px; + position: relative; +} +@media only screen and (max-width: 767px) { + .menu { + margin-top: 0px; + padding: 0px; + background: #1652F0; + } +} +@media only screen and (max-width: 767px) { + .menu ul { + display: flex; + justify-content: space-around; + align-items: center; + } +} +.menu ul li { + margin-bottom: 8px; + border-radius: 6px; +} +.menu ul li:hover a, .menu ul li:focus a, .menu ul li:active a { + color: #fff; +} +.menu ul li:hover a .nav-text, .menu ul li:focus a .nav-text, .menu ul li:active a .nav-text { + display: block; + background: white; + color: #1652F0; +} +@media only screen and (max-width: 991px) { + .menu ul li:hover a .nav-text, .menu ul li:focus a .nav-text, .menu ul li:active a .nav-text { + display: none; + } +} +.menu ul li:hover i, .menu ul li:focus i, .menu ul li:active i { + color: #fff; + opacity: 1; +} +.menu ul li.active i { + color: #fff; + opacity: 1; +} +.menu ul li.active span { + color: #fff; +} +.menu ul li i { + color: #fff; + font-size: 20px; + opacity: 0.6; + margin-right: 15px; + line-height: 0px; +} +@media only screen and (max-width: 991px) { + .menu ul li i { + margin-right: 0px; + } +} +.menu ul li a { + padding: 5px 8px; + display: flex; + align-items: center; + min-height: 3.5rem; + color: #a2a5b9; +} +@media only screen and (max-width: 991px) { + .menu ul li a { + justify-content: center; + } +} +.menu ul li a .nav-text { + display: none; + padding: 3px 8px; + border-radius: 4px; + box-shadow: 0 0 20px rgba(89, 102, 122, 0.05); +} +@media only screen and (max-width: 991px) { + .menu ul li a .nav-text { + display: none; + } +} +.menu ul li.logout { + position: fixed; + bottom: 50px; + left: 0; + right: 0; + width: 80px; +} +.menu ul li.logout a { + padding-left: 30px; +} +@media only screen and (max-width: 991px) { + .menu ul li.logout { + right: auto; + justify-content: center; + left: 10px; + width: auto; + } +} +@media only screen and (max-width: 767px) { + .menu ul li.logout { + position: relative; + bottom: 0; + left: auto; + right: auto; + width: auto; + } + .menu ul li.logout a { + padding-left: 0px; + } +} + +.card-limit-progress { + display: none; + background: url("/images/bg/6.jpg"); + position: absolute; + bottom: 150px; + padding: 15px 20px; + margin: 20px; + left: 0; + right: 0; + border-radius: 6px; +} +@media only screen and (max-width: 1199px) { + .card-limit-progress { + display: none; + } +} +.card-limit-progress h5, .card-limit-progress .h5 { + font-size: 14px; + color: #fff; +} +.card-limit-progress p { + font-size: 12px; +} +.card-limit-progress p strong { + color: #fff; +} +.card-limit-progress .progress { + height: 6px; + background-color: #cac3ff; +} + +.dark-theme { + background-color: #041645; + color: #8eabf8; +} +.dark-theme h1, +.dark-theme .h1, +.dark-theme h2, +.dark-theme .h2, +.dark-theme h3, +.dark-theme .h3, +.dark-theme h4, +.dark-theme .h4, +.dark-theme h5, +.dark-theme .h5, +.dark-theme h6, +.dark-theme .h6 { + color: #fff; +} +.dark-theme b, +.dark-theme strong { + color: #fff; +} +.dark-theme .header { + background-color: #041645; +} +.dark-theme .dropdown-menu { + background-color: #072166; +} +.dark-theme .dropdown-menu h4, .dark-theme .dropdown-menu .h4 { + border-color: rgba(255, 255, 255, 0.08); +} +.dark-theme .dropdown-menu p { + color: #fff !important; +} +.dark-theme .dropdown-menu a { + border-color: rgba(255, 255, 255, 0.08); +} +.dark-theme .dropdown-menu a span { + color: #8eabf8 !important; +} +.dark-theme .dropdown-menu a span i { + color: #fff; +} +.dark-theme .notification .notify-bell i { + color: #fff; +} +.dark-theme .notification .dropdown-menu a:last-child { + color: #fff; +} +.dark-theme .profile_log .dropdown-menu .dropdown-item { + border-top: 1px solid rgba(255, 255, 255, 0.08); + color: #8eabf8; +} +.dark-theme .user-info span, +.dark-theme .user-balance span { + color: #8eabf8; +} +.dark-theme .card { + background: #072166 !important; +} +.dark-theme .card .card-header { + border-bottom: 1px solid rgba(255, 255, 255, 0.08); +} +.dark-theme .card .card-header .card-title { + color: #fff; +} +.dark-theme .trade-form p { + color: #fff; +} +.dark-theme .balance-widget li .icon-title span { + color: #fff; +} +.dark-theme .form-control, +.dark-theme .form-select { + background: #041645; + border-color: rgba(255, 255, 255, 0.08); + color: #8eabf8; +} +.dark-theme .form-control::-moz-placeholder, .dark-theme .form-select::-moz-placeholder { + color: #8eabf8; +} +.dark-theme .form-control::placeholder, +.dark-theme .form-select::placeholder { + color: #8eabf8; +} +.dark-theme .form-control:hover, +.dark-theme .form-select:hover { + border-color: rgba(255, 255, 255, 0.08); + color: #8eabf8; + background: #041645; +} +.dark-theme .form-control:focus, .dark-theme .form-control:active, .dark-theme .form-control.active, +.dark-theme .form-select:focus, +.dark-theme .form-select:active, +.dark-theme .form-select.active { + border-color: rgba(255, 255, 255, 0.08); + color: #8eabf8; + background: #041645; +} +.dark-theme .form-file-text { + background-color: #041645; + border-color: rgba(255, 255, 255, 0.08); + color: #8eabf8; +} +.dark-theme .form-file-button { + border-color: rgba(255, 255, 255, 0.08); + background: #1652F0; + color: #fff; +} +.dark-theme .input-group-text { + background: #072166; + color: #fff; + border-color: rgba(255, 255, 255, 0.08); +} +.dark-theme .btn-outline-primary, +.dark-theme .btn-outline-secondary, +.dark-theme .btn-outline-success, +.dark-theme .btn-outline-info, +.dark-theme .btn-outline-warning, +.dark-theme .btn-outline-danger, +.dark-theme .btn-outline-light { + color: #fff; +} +.dark-theme .balance-widget li { + border-bottom: 1px solid rgba(255, 255, 255, 0.08); +} +.dark-theme .table { + color: #8eabf8; +} +.dark-theme .table th { + color: #fff; + border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important; +} +.dark-theme .table td { + border-color: rgba(255, 255, 255, 0.08); +} +.dark-theme .table-striped > tbody > tr:nth-of-type(odd) { + --bs-table-accent-bg: $dbg; + background-color: #041645; + color: #8eabf8; +} +.dark-theme .settings-menu a { + color: #8eabf8; +} +.dark-theme .settings-menu a:hover, .dark-theme .settings-menu a:focus, .dark-theme .settings-menu a:active, .dark-theme .settings-menu a.active { + color: #fff; +} +.dark-theme .modal-content { + background-color: #072166; +} +.dark-theme .modal-content .modal-header { + border-color: rgba(255, 255, 255, 0.08); +} +.dark-theme .modal-content .modal-header .btn-close { + color: #fff; +} +.dark-theme .qr-img { + background: #fff; +} +.dark-theme .chart-stat { + border-color: rgba(255, 255, 255, 0.08); +} + +.credit-card { + background: #126AFF; + padding: 20px; + border-radius: 6px; + margin-bottom: 30px; + position: relative; + overflow: hidden; +} +.credit-card .type-brand { + display: flex; + justify-content: space-between; + align-items: center; +} +.credit-card .type-brand h4, .credit-card .type-brand .h4 { + color: #a2a5b9; + font-size: 14px; +} +.credit-card .type-brand img { + height: 30px; + background: #fff; + padding: 4px 6px; + border-radius: 8px; +} +.credit-card .cc-number { + padding: 20px 0px; +} +.credit-card .cc-number h6, .credit-card .cc-number .h6 { + display: inline-block; + margin-right: 20px; + color: #fff; + font-size: 20px; +} +.credit-card .cc-holder-exp { + display: flex; + justify-content: space-between; +} +.credit-card .cc-holder-exp h5, .credit-card .cc-holder-exp .h5 { + color: #fff; + margin-bottom: 0px; +} +.credit-card .cc-holder-exp .exp { + color: #fff; +} +.credit-card .cc-holder-exp .exp strong { + color: #fff; +} +.credit-card.visa { + background: #070707; +} +.credit-card.visa:hover .cc-info { + background: #070707; +} +.credit-card.master { + background: #1652F0; +} +.credit-card.master:hover .cc-info { + background: #1652F0; +} +.credit-card.payoneer { + background: #fff; +} +.credit-card.payoneer .type-brand h4, .credit-card.payoneer .type-brand .h4 { + color: #a2a5b9; +} +.credit-card.payoneer .cc-number h6, .credit-card.payoneer .cc-number .h6 { + color: #070707; +} +.credit-card.payoneer .cc-holder-exp h5, .credit-card.payoneer .cc-holder-exp .h5 { + color: #070707; +} +.credit-card.payoneer .cc-holder-exp .exp { + color: #070707; +} +.credit-card.payoneer .cc-holder-exp .exp strong { + color: #070707; +} +.credit-card.payoneer:hover .cc-info { + background: #fff; +} + +.cc-info { + padding: 15px 20px 20px; + border-radius: 0px; + position: absolute; + bottom: -100%; + left: 0; + right: 0; + z-index: 1; + transition: all 0.15s ease-in-out; +} +.cc-info p { + margin-bottom: 0px; + margin-top: 5px; + color: rgba(255, 255, 255, 0.5); +} +.cc-info p strong { + color: #fff; + opacity: 1; +} + +.card { + border: 1px solid #e5e5e5; + margin-bottom: 30px; + border-radius: 6px; + background: #fff; +} +.card-header { + display: flex; + justify-content: space-between; + align-items: center; + border-bottom: 0px solid #e5e5e5; + background: transparent; + padding: 20px 20px 0px; +} +@media only screen and (max-width: 767px) { + .card-header { + flex-direction: column; + align-items: start; + } +} +.card-title { + font-size: 16px; + margin-bottom: 0px; + color: #212529; +} +.card.transparent { + background: transparent; + box-shadow: none; + border: 0px; +} +.card.transparent .card-header { + border: 0px; + padding: 0px; +} +.card.transparent .card-body { + padding: 0px; +} +.card .card-body { + padding: 20px; + background: transparent; +} +.card .card-footer { + padding: 20px; + background: #fff; +} + +.form-label { + font-weight: 600; +} + +.form-control { + border-radius: 5px; + height: 45px; + border: 1px solid #e5e5e5; + padding: 0px 22px; + font-size: 14px; + color: #070707; + background: #fff; +} +.form-control span { + margin-top: 0; +} +.form-control::-moz-placeholder { + color: #a2a5b9; +} +.form-control::placeholder { + color: #a2a5b9; +} +.form-control:hover { + box-shadow: none !important; + outline: none; + border-color: #e5e5e5; + color: #070707; + background: #fff; +} +.form-control:focus, .form-control:active, .form-control.active { + box-shadow: none !important; + outline: none; + border-color: #1652F0; + color: #070707; + background: #fff; +} + +.form-select { + border-radius: 5px; + height: 45px; + border: 1px solid #e5e5e5; + padding: 0px 22px; + font-size: 14px; + color: #070707; +} +.form-select:hover { + box-shadow: none !important; + outline: none; + border-color: #e5e5e5; + color: #070707; +} +.form-select:focus, .form-select:active, .form-select.active { + box-shadow: none !important; + outline: none; + border-color: #1652F0; + color: #070707; +} + +textarea.form-control { + min-height: 100px; +} + +input:-internal-autofill-selected { + background: whitesmoke !important; + background-image: none !important; + color: -internal-light-dark-color(black, white) !important; +} + +.input-group-text { + padding: 11px 15px; + background: #fff; + margin-bottom: 0px !important; + color: #070707; + border-color: #e5e5e5; + border-radius: 0px; +} + +.input-group-append .input-group-text { + border-top-right-radius: 5px; + border-bottom-right-radius: 5px; +} + +.input-group-prepend .input-group-text { + border-top-left-radius: 5px; + border-bottom-left-radius: 5px; +} + +label.error { + color: #DC3545; + position: absolute; + bottom: 0; + margin-bottom: -22px; + font-size: 12px; + font-weight: 400; +} + +button, +.btn { + color: #fff; + padding: 8px 30px; + font-weight: 700; + border-radius: 12px; +} +button:hover, button:focus, button:active, +.btn:hover, +.btn:focus, +.btn:active { + color: #fff; +} + +.btn-outline-primary, +.btn-outline-secondary, +.btn-outline-success, +.btn-outline-info, +.btn-outline-warning, +.btn-outline-danger, +.btn-outline-light { + color: #070707; +} +.btn-outline-primary:hover, .btn-outline-primary:focus, .btn-outline-primary:active, +.btn-outline-secondary:hover, +.btn-outline-secondary:focus, +.btn-outline-secondary:active, +.btn-outline-success:hover, +.btn-outline-success:focus, +.btn-outline-success:active, +.btn-outline-info:hover, +.btn-outline-info:focus, +.btn-outline-info:active, +.btn-outline-warning:hover, +.btn-outline-warning:focus, +.btn-outline-warning:active, +.btn-outline-danger:hover, +.btn-outline-danger:focus, +.btn-outline-danger:active, +.btn-outline-light:hover, +.btn-outline-light:focus, +.btn-outline-light:active { + color: #fff; +} + +.btn-outline-dark { + color: #070707; +} +.btn-outline-dark:hover, .btn-outline-dark:focus, .btn-outline-dark:active { + color: #fff; +} + +.table th { + color: #212529; + border-bottom: 1px solid #e5e5e5 !important; +} + +.table-responsive-sm { + min-width: 48rem; +} + +.table { + margin-bottom: 0px; +} +.table tr:last-child td { + border-bottom: 0px solid #e5e5e5; +} +.table tr td, +.table tr th { + border-bottom: 1px solid #e5e5e5; + vertical-align: middle; + padding: 18px; +} +.table tr td:last-child, +.table tr th:last-child { + text-align: right; +} + +.table-striped tr td, +.table-striped tr th { + border: 0px !important; +} + +.table-striped > tbody > tr:nth-of-type(odd) td:first-child { + border-top-left-radius: 7px; + border-bottom-left-radius: 7px; +} +.table-striped > tbody > tr:nth-of-type(odd) td:last-child { + border-top-right-radius: 7px; + border-bottom-right-radius: 7px; +} + +.api-table span i { + font-size: 20px; +} +.api-table span i:hover { + color: #DC3545; +} + +.table-icon span i { + font-size: 16px; +} + +.stat-widget { + background: #f5f6fa; + padding: 20px; + border-radius: 6px; + margin: 15px 0px; + position: relative; +} +.stat-widget .widget-icon { + width: 50px; + height: 50px; + display: flex; + align-items: center; + justify-content: center; + border-radius: 100%; + font-size: 20px; + color: #fff; +} +.stat-widget .widget-icon i { + line-height: 0px; +} +.stat-widget .widget-content p { + color: #a2a5b9; + opacity: 0.85; + font-size: 14px; + font-weight: 400; + margin-bottom: 0px; +} +.stat-widget .widget-content h3, .stat-widget .widget-content .h3 { + font-size: 20px; + margin-bottom: 0px; +} + +.invoice-content li { + margin-bottom: 7px; + display: block; + padding: 12px 0px; + position: relative; + border-bottom: 1px solid #e5e5e5; +} +.invoice-content li:last-child { + border: 0px; +} +.invoice-content li span { + right: 15px; + display: block; + font-size: 12px; + background: #fff; + padding: 2px 10px; + border-radius: 16px; + display: inline-block; +} +.invoice-content .invoice-user-img img { + border-radius: 56px; +} +.invoice-content .invoice-info { + position: relative; + display: block; +} +.invoice-content .invoice-info p { + margin-bottom: 5px; +} + +#most-selling-items { + height: 295px !important; +} + +#activity { + height: 245px !important; +} + +#user-activity .btn { + padding: 5px 15px; +} +@media only screen and (max-width: 767px) { + #user-activity .btn { + margin-top: 10px; + } +} + +.budget-content li { + margin-bottom: 32px; +} +.budget-content li h5, .budget-content li .h5 { + font-size: 15px; +} +.budget-content li .progress { + height: 10px; +} +.budget-content li:last-child { + margin-bottom: 0px; +} + +.auth-form { + padding: 30px 20px 10px; +} + +.privacy-link a { + display: inline-block; + font-size: 14px; + line-height: 28px; + color: #070707; +} + +.identity-content { + text-align: center; +} +.identity-content .icon { + display: flex; + width: 75px; + height: 75px; + border-radius: 100px; + margin: 0 auto; + background: #fff; + color: #1652F0; + font-size: 30px; + padding: 10px; + align-items: center; + justify-content: center; + margin-bottom: 30px; + border: 1px solid #1652F0; +} +.identity-content h4, .identity-content .h4 { + max-width: 350px; + margin: 0 auto 15px; +} +.identity-content p { + max-width: 350px; + margin: 0 auto 30px; +} + +.auth-bg { + background: url("./../../images/login/auth.jpg"); +} + +.settings-menu { + margin-bottom: 30px; + display: flex; +} +@media only screen and (max-width: 767px) { + .settings-menu { + display: inline-block; + } +} +@media only screen and (max-width: 767px) { + .settings-menu li { + display: inline-block; + padding: 5px 0px; + } +} +.settings-menu li:hover a, .settings-menu li:focus a, .settings-menu li:active a, .settings-menu li.active a { + color: #1652F0; +} +.settings-menu a { + display: inline-block; + margin-right: 20px; + color: #a2a5b9; + font-size: 16px; +} + +.verify-content { + display: flex; + justify-content: space-between; + align-items: center; +} +@media only screen and (max-width: 767px) { + .verify-content { + display: block; + } + .verify-content .btn { + margin-left: 65px; + margin-top: 15px; + } +} + +.icon-circle { + height: 50px; + min-width: 50px; + font-size: 22px; + display: flex; + justify-content: center; + align-items: center; + border-radius: 50px; +} + +.card .card { + box-shadow: none; + background: transparent; +} + +.app-link p { + margin-bottom: 30px; +} +.app-link .btn { + min-width: 150px; +} + +.user-info { + margin: 15px 0px; +} +.user-info span { + margin-bottom: 5px; + display: inline-block; +} + +.welcome-profile .card-body img { + border: 4px solid #fff; + border-radius: 100px; + width: 60px; +} +.welcome-profile .card-body h4, .welcome-profile .card-body .h4 { + margin-top: 10px; + font-size: 18px; +} +.welcome-profile .card-body p { + opacity: 0.75; +} +.welcome-profile .card-body ul { + text-align: left; +} +.welcome-profile .card-body ul li { + padding: 15px 0px; + border-bottom: 1px solid #e5e5e5; +} +.welcome-profile .card-body ul li:last-child { + border: 0px; + padding-bottom: 0px; +} +.welcome-profile .card-body ul li a { + display: flex; + align-items: center; + transition: all 0.25 ease-in-out; +} +.welcome-profile .card-body ul li a span { + padding: 5px; + border-radius: 50px; + width: 30px; + height: 30px; + display: inline-flex; + align-items: center; + justify-content: center; + margin-right: 10px; + transition: all 0.25 ease-in-out; +} +.welcome-profile .card-body ul li a span.verified { + background: #51BB25; + color: #fff; +} +.welcome-profile .card-body ul li a span.not-verified { + background: #1652F0; + color: #fff; +} + +.invoice-stats { + background: #fff; + border-radius: 16px; + padding: 30px; + margin-bottom: 30px; +} +.invoice-stats .invoice-stats-content p { + margin-bottom: 0; +} +.invoice-stats .invoice-stats-icon span { + display: flex; + height: 75px; + width: 75px; + align-items: center; + justify-content: center; + border: 1px solid rgba(53, 70, 171, 0.12); + border-radius: 50%; + margin-left: 1rem; +} +.invoice-stats .invoice-stats-icon span i { + font-size: 32px; + line-height: 0px; +} + +.total-balance p { + margin-bottom: 0px; +} + +.balance-stats { + background: #F5F6FA; + margin-top: 15px; + padding: 21px; + border-radius: 6px; +} +.balance-stats:hover, .balance-stats:focus, .balance-stats.active { + border-color: #1652F0; + background: #1652F0; +} +.balance-stats:hover p, .balance-stats:focus p, .balance-stats.active p { + color: #fff; + opacity: 0.75; +} +.balance-stats:hover h3, .balance-stats:hover .h3, .balance-stats:focus h3, .balance-stats:focus .h3, .balance-stats.active h3, .balance-stats.active .h3 { + color: #fff; +} +.balance-stats p { + color: #a2a5b9; + font-size: 14px; + font-weight: 400; + margin-bottom: 0px; +} +.balance-stats h3, .balance-stats .h3 { + margin-bottom: 0px; + font-size: 18px; +} + +.bills-widget-content { + border: 1px solid #e5e5e5; + padding: 15px 20px; + border-radius: 6px; + margin-bottom: 18px; +} +.bills-widget-content:hover, .bills-widget-content:focus, .bills-widget-content.active { + border-color: #1652F0; +} +.bills-widget-content:last-child { + margin-bottom: 0px; +} +.bills-widget-content p { + margin-bottom: 5px; +} +.bills-widget-content h4, .bills-widget-content .h4 { + margin-bottom: 0px; +} + +#transaction-graph { + height: 300px !important; +} + +#chart-1 { + height: 365px !important; +} + +.unpaid-content li { + padding: 15px 0px; + display: flex; + justify-content: space-between; + border-bottom: 1px solid #e5e5e5; +} +.unpaid-content li:first-child { + padding-top: 0px; +} +.unpaid-content li:last-child { + padding-bottom: 0px; + border: 0px; +} +.unpaid-content li h5, .unpaid-content li .h5 { + font-size: 14px; +} + +#activityBar { + height: 287px !important; +} + +.all-notification a { + display: block; + border-bottom: 1px solid #e5e5e5; + padding: 10px 0px; +} +.all-notification a:last-child { + border: 0px; + display: flex; + justify-content: flex-end; + align-items: center; + color: #070707; + padding-bottom: 0px; +} +.all-notification a:last-child i { + margin-left: 5px; + font-size: 18px; +} +.all-notification a p { + margin-bottom: 0px; + color: #212529; + font-weight: 600; + font-size: 14px; +} +.all-notification a span { + font-size: 13px; + color: #a2a5b9; +} +.all-notification a span.icon { + height: 40px; + width: 40px; + color: #fff; + display: flex; + align-items: center; + justify-content: center; + border-radius: 50px; +} +.all-notification a span.icon i { + font-size: 20px; +} +.all-notification a span.success { + background: #51BB25; +} +.all-notification a span.fail { + background: #DC3545; +} +.all-notification a span.pending { + background: #F8D62B; +} + +.app-link p { + margin-bottom: 30px; +} +.app-link .btn { + min-width: 150px; +} + +.user-info { + margin: 15px 0px; +} +.user-info span { + margin-bottom: 5px; + display: inline-block; +} + +.welcome-profile .card-body img { + border: 4px solid #fff; + border-radius: 100px; + width: 60px; +} +.welcome-profile .card-body h4, .welcome-profile .card-body .h4 { + margin-top: 10px; + font-size: 18px; +} +.welcome-profile .card-body p { + opacity: 0.75; +} +.welcome-profile .card-body ul { + text-align: left; +} +.welcome-profile .card-body ul li { + padding: 15px 0px; + border-bottom: 1px solid #e5e5e5; +} +.welcome-profile .card-body ul li:last-child { + border: 0px; + padding-bottom: 0px; +} +.welcome-profile .card-body ul li a { + display: flex; + align-items: center; + transition: all 0.25 ease-in-out; +} +.welcome-profile .card-body ul li a span { + padding: 5px; + border-radius: 50px; + width: 30px; + height: 30px; + display: inline-flex; + align-items: center; + justify-content: center; + margin-right: 10px; + transition: all 0.25 ease-in-out; +} +.welcome-profile .card-body ul li a span.verified { + background: #51BB25; + color: #fff; +} +.welcome-profile .card-body ul li a span.not-verified { + background: #1652F0; + color: #fff; +} + +.demo_img { + text-align: center; + margin-bottom: 60px; +} +.demo_img .img-wrap { + overflow: hidden; + margin-bottom: 15px; + box-shadow: 0 0.75rem 1.5rem rgba(18, 38, 63, 0.03); + background: #fff; + padding: 10px; + border-radius: 16px; + border: 1px solid #EFF2F7; +} +.demo_img img { + border-radius: 5px; +} + +.intro-demo_img { + background: #fff; + box-shadow: 0px 36px 48px rgba(31, 66, 135, 0.04); + padding: 10px; + border-radius: 16px; +} +.intro-demo_img img { + border-radius: 5px; +}/*# sourceMappingURL=style.css.map */ + +.auth-bg{ + font-size: 100px; + background: url("./../../images/login/auth.jpg"); + display: none; +} \ No newline at end of file diff --git a/public/scss/style.css.map b/public/scss/style.css.map new file mode 100644 index 0000000..f91a46a --- /dev/null +++ b/public/scss/style.css.map @@ -0,0 +1 @@ +{"version":3,"sources":["style.css","style.scss","../../node_modules/bootstrap/scss/mixins/_banner.scss","base/_fonts.scss","../../node_modules/bootstrap/scss/_root.scss","../../node_modules/bootstrap/scss/vendor/_rfs.scss","../../node_modules/bootstrap/scss/mixins/_color-mode.scss","../../node_modules/bootstrap/scss/_reboot.scss","../../node_modules/bootstrap/scss/_variables.scss","abstract/_variable.scss","../../node_modules/bootstrap/scss/mixins/_border-radius.scss","../../node_modules/bootstrap/scss/_type.scss","../../node_modules/bootstrap/scss/mixins/_lists.scss","../../node_modules/bootstrap/scss/_images.scss","../../node_modules/bootstrap/scss/mixins/_image.scss","../../node_modules/bootstrap/scss/_containers.scss","../../node_modules/bootstrap/scss/mixins/_container.scss","../../node_modules/bootstrap/scss/mixins/_breakpoints.scss","../../node_modules/bootstrap/scss/_grid.scss","../../node_modules/bootstrap/scss/mixins/_grid.scss","../../node_modules/bootstrap/scss/_tables.scss","../../node_modules/bootstrap/scss/mixins/_table-variants.scss","../../node_modules/bootstrap/scss/forms/_labels.scss","../../node_modules/bootstrap/scss/forms/_form-text.scss","../../node_modules/bootstrap/scss/forms/_form-control.scss","../../node_modules/bootstrap/scss/mixins/_transition.scss","../../node_modules/bootstrap/scss/mixins/_gradients.scss","../../node_modules/bootstrap/scss/forms/_form-select.scss","../../node_modules/bootstrap/scss/forms/_form-check.scss","../../node_modules/bootstrap/scss/forms/_form-range.scss","../../node_modules/bootstrap/scss/forms/_floating-labels.scss","../../node_modules/bootstrap/scss/forms/_input-group.scss","../../node_modules/bootstrap/scss/mixins/_forms.scss","../../node_modules/bootstrap/scss/_buttons.scss","../../node_modules/bootstrap/scss/mixins/_buttons.scss","../../node_modules/bootstrap/scss/_transitions.scss","../../node_modules/bootstrap/scss/_dropdown.scss","../../node_modules/bootstrap/scss/mixins/_caret.scss","../../node_modules/bootstrap/scss/_button-group.scss","../../node_modules/bootstrap/scss/_nav.scss","../../node_modules/bootstrap/scss/_navbar.scss","../../node_modules/bootstrap/scss/_card.scss","../../node_modules/bootstrap/scss/_accordion.scss","../../node_modules/bootstrap/scss/_breadcrumb.scss","../../node_modules/bootstrap/scss/_pagination.scss","../../node_modules/bootstrap/scss/mixins/_pagination.scss","../../node_modules/bootstrap/scss/_badge.scss","../../node_modules/bootstrap/scss/_alert.scss","../../node_modules/bootstrap/scss/_progress.scss","../../node_modules/bootstrap/scss/_list-group.scss","../../node_modules/bootstrap/scss/_close.scss","../../node_modules/bootstrap/scss/_toasts.scss","../../node_modules/bootstrap/scss/_modal.scss","../../node_modules/bootstrap/scss/mixins/_backdrop.scss","../../node_modules/bootstrap/scss/_tooltip.scss","../../node_modules/bootstrap/scss/mixins/_reset-text.scss","../../node_modules/bootstrap/scss/_popover.scss","../../node_modules/bootstrap/scss/_carousel.scss","../../node_modules/bootstrap/scss/mixins/_clearfix.scss","../../node_modules/bootstrap/scss/_spinners.scss","../../node_modules/bootstrap/scss/_offcanvas.scss","../../node_modules/bootstrap/scss/_placeholders.scss","../../node_modules/bootstrap/scss/helpers/_color-bg.scss","../../node_modules/bootstrap/scss/helpers/_colored-links.scss","../../node_modules/bootstrap/scss/helpers/_focus-ring.scss","../../node_modules/bootstrap/scss/helpers/_icon-link.scss","../../node_modules/bootstrap/scss/helpers/_ratio.scss","../../node_modules/bootstrap/scss/helpers/_position.scss","../../node_modules/bootstrap/scss/helpers/_stacks.scss","../../node_modules/bootstrap/scss/helpers/_visually-hidden.scss","../../node_modules/bootstrap/scss/mixins/_visually-hidden.scss","../../node_modules/bootstrap/scss/helpers/_stretched-link.scss","../../node_modules/bootstrap/scss/helpers/_text-truncation.scss","../../node_modules/bootstrap/scss/mixins/_text-truncate.scss","../../node_modules/bootstrap/scss/helpers/_vr.scss","../../node_modules/bootstrap/scss/mixins/_utilities.scss","../../node_modules/bootstrap/scss/utilities/_api.scss","base/_reset.scss","abstract/_mixins.scss","base/_color.scss","base/_preloader.scss","base/_shortcode.scss","layout/_header.scss","layout/_bottom.scss","layout/_footer.scss","layout/_sidebar.scss","layout/_theme-bg.scss","element/_credit-card.scss","components/_card.scss","components/_form.scss","components/_button.scss","components/_table.scss","pages/_dashboard.scss","pages/_auth.scss","pages/_settings.scss","pages/_profile.scss","pages/_wallet.scss","pages/_balance.scss","pages/_bill.scss","pages/_notification.scss","pages/_demo.scss"],"names":[],"mappings":"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FkMQ,mCAAA;ALnCR;AKzHI;EEtCJ;IFyMQ,mBAAA;ELtCN;AACF;;AO/JA;EF6LQ,iCAAA;AL1BR;AKlII;EEjCJ;IFoMQ,iBAAA;EL7BN;AACF;;AOnKA;EFoLM,mBALI;ALRV;;AOlKA;EF+KM,eALI;ALJV;;AOjKA;EF0KM,eALI;ALAV;;AO1JA;EACE,aAAA;EACA,mBCwV0B;AR3L5B;;AOnJA;EACE,yCAAA;UAAA,iCAAA;EACA,YAAA;EACA,sCAAA;UAAA,8BAAA;APsJF;;AOhJA;EACE,mBAAA;EACA,kBAAA;EACA,oBAAA;APmJF;;AO7IA;;EAEE,kBAAA;APgJF;;AO7IA;;;EAGE,aAAA;EACA,mBAAA;APgJF;;AO7IA;;;;EAIE,gBAAA;APgJF;;AO7IA;EACE,gBC6b4B;AR7S9B;;AO3IA;EACE,qBAAA;EACA,cAAA;AP8IF;;AOxIA;EACE,gBAAA;AP2IF;;AOnIA;;EAEE,mBCsa4B;ARhS9B;;AO9HA;EF6EM,kBALI;AL0DV;;AO3HA;EACE,iBCqf4B;EDpf5B,gCAAA;EACA,wCAAA;AP8HF;;AOrHA;;EAEE,kBAAA;EFwDI,iBALI;EEjDR,cAAA;EACA,wBAAA;APwHF;;AOrHA;EAAM,eAAA;APyHN;;AOxHA;EAAM,WAAA;AP4HN;;AOvHA;EACE,gEAAA;EACA,0BCgNwC;ARtF1C;AOxHE;EACE,mDAAA;AP0HJ;;AO/GE;EAEE,cAAA;EACA,qBAAA;APiHJ;;AO1GA;;;;EAIE,qCCgV4B;EHlUxB,cALI;ALqGV;;AOtGA;EACE,cAAA;EACA,aAAA;EACA,mBAAA;EACA,cAAA;EFEI,kBALI;AL6GV;AOrGE;EFHI,kBALI;EEUN,cAAA;EACA,kBAAA;APuGJ;;AOnGA;EFVM,kBALI;EEiBR,2BAAA;EACA,qBAAA;APsGF;AOnGE;EACE,cAAA;APqGJ;;AOjGA;EACE,2BAAA;EFtBI,kBALI;EE6BR,wBCu5CkC;EDt5ClC,sCCu5CkC;EE5rDhC,sBAAA;AV0YJ;AOlGE;EACE,UAAA;EF7BE,cALI;ALuIV;;AO1FA;EACE,gBAAA;AP6FF;;AOvFA;;EAEE,sBAAA;AP0FF;;AOlFA;EACE,oBAAA;EACA,yBAAA;APqFF;;AOlFA;EACE,mBC4X4B;ED3X5B,sBC2X4B;ED1X5B,gCC4Z4B;ED3Z5B,gBAAA;APqFF;;AO9EA;EAEE,mBAAA;EACA,gCAAA;APgFF;;AO7EA;;;;;;EAME,qBAAA;EACA,mBAAA;EACA,eAAA;APgFF;;AOxEA;EACE,qBAAA;AP2EF;;AOrEA;EAEE,gBAAA;APuEF;;AO/DA;EACE,UAAA;APkEF;;AO7DA;;;;;EAKE,SAAA;EACA,oBAAA;EF5HI,kBALI;EEmIR,oBAAA;APgEF;;AO5DA;;EAEE,oBAAA;AP+DF;;AO1DA;EACE,eAAA;AP6DF;;AO1DA;EAGE,iBAAA;AP2DF;AOxDE;EACE,UAAA;AP0DJ;;AOnDA;EACE,wBAAA;APsDF;;AO9CA;;;;EAIE,0BAAA;APiDF;AO9CI;;;;EACE,eAAA;APmDN;;AO5CA;EACE,UAAA;EACA,kBAAA;AP+CF;;AO1CA;EACE,gBAAA;AP6CF;;AOnCA;EACE,YAAA;EACA,UAAA;EACA,SAAA;EACA,SAAA;APsCF;;AO9BA;EACE,WAAA;EACA,WAAA;EACA,UAAA;EACA,qBCmN4B;EHpatB,iCAAA;EEoNN,oBAAA;APgCF;AKhZI;EEyWJ;IFtMQ,iBAAA;ELiPN;AACF;AOnCE;EACE,WAAA;APqCJ;;AO9BA;;;;;;;EAOE,UAAA;APiCF;;AO9BA;EACE,YAAA;APiCF;;AOxBA;EACE,6BAAA;EACA,oBAAA;AP2BF;;AOnBA;;;;;;;CAAA;AAWA;EACE,wBAAA;APmBF;;AOdA;EACE,UAAA;APiBF;;AOVA;EACE,aAAA;EACA,0BAAA;APaF;;AORA;EACE,qBAAA;APWF;;AONA;EACE,SAAA;APSF;;AOFA;EACE,kBAAA;EACA,eAAA;APKF;;AOGA;EACE,wBAAA;APAF;;AOQA;EACE,wBAAA;APLF;;AWhkBA;ENmQM,qBALI;EM5PR,gBHwoB4B;ARrE9B;;AW9jBE;ENgQM,iCAAA;EM5PJ,gBHynBkB;EGxnBlB,gBFlBsB;ATilB1B;AKheI;EMpGF;INuQM,eAAA;ELiUN;AACF;;AWzkBE;ENgQM,iCAAA;EM5PJ,gBHynBkB;EGxnBlB,gBFlBsB;AT4lB1B;AK3eI;EMpGF;INuQM,iBAAA;EL4UN;AACF;;AWplBE;ENgQM,iCAAA;EM5PJ,gBHynBkB;EGxnBlB,gBFlBsB;ATumB1B;AKtfI;EMpGF;INuQM,eAAA;ELuVN;AACF;;AW/lBE;ENgQM,iCAAA;EM5PJ,gBHynBkB;EGxnBlB,gBFlBsB;ATknB1B;AKjgBI;EMpGF;INuQM,iBAAA;ELkWN;AACF;;AW1mBE;ENgQM,iCAAA;EM5PJ,gBHynBkB;EGxnBlB,gBFlBsB;AT6nB1B;AK5gBI;EMpGF;INuQM,eAAA;EL6WN;AACF;;AWrnBE;ENgQM,iCAAA;EM5PJ,gBHynBkB;EGxnBlB,gBFlBsB;ATwoB1B;AKvhBI;EMpGF;INuQM,iBAAA;ELwXN;AACF;;AWxmBA;ECvDE,eAAA;EACA,gBAAA;AZmqBF;;AWxmBA;EC5DE,eAAA;EACA,gBAAA;AZwqBF;;AW1mBA;EACE,qBAAA;AX6mBF;AW3mBE;EACE,oBHsoB0B;ARzB9B;;AWnmBA;EN8MM,kBALI;EMvMR,yBAAA;AXsmBF;;AWlmBA;EACE,mBHiUO;EH1HH,qBALI;ALoaV;AWnmBE;EACE,gBAAA;AXqmBJ;;AWjmBA;EACE,iBAAA;EACA,mBHuTO;EH1HH,kBALI;EMtLR,cHtFS;AR0rBX;AWlmBE;EACE,aAAA;AXomBJ;;AapsBA;ECIE,eAAA;EAGA,YAAA;AdksBF;;AansBA;EACE,gBL6jDkC;EK5jDlC,mCL6jDkC;EK5jDlC,2DAAA;EHGE,sCAAA;EIRF,eAAA;EAGA,YAAA;Ad2sBF;;Aa7rBA;EAEE,qBAAA;Ab+rBF;;Aa5rBA;EACE,qBAAA;EACA,cAAA;Ab+rBF;;Aa5rBA;ERyPM,kBALI;EQlPR,gCLgjDkC;ARj3BpC;;AejuBE;;;;;;;ECHA,mBAAA;EACA,gBAAA;EACA,WAAA;EACA,6CAAA;EACA,4CAAA;EACA,kBAAA;EACA,iBAAA;AhB8uBF;;AiBxrBI;EF5CE;IACE,gBPkee;ERsQrB;AACF;AiB9rBI;EF5CE;IACE,gBPkee;ER2QrB;AACF;AiBnsBI;EF5CE;IACE,gBPkee;ERgRrB;AACF;Ai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gB3yBpC,UAAA;AxBkiEJ;AwB9hEE;EACE,yBAAA;EACA,0BAAA;EACA,0BhBorB0B;EgBnrB1B,2BhBsyBoC;EkBp4BtC,uClBqiCgC;EgBr8B9B,oBAAA;EACA,qBAAA;EACA,mBAAA;EACA,eAAA;EACA,+ChBgsB0B;EgB/rB1B,gBAAA;ECzFE,qID0FF;AxBgiEJ;AyBtnEM;ED0EJ;ICzEM,gBAAA;EzBynEN;AACF;AwBliEE;EACE,wChB47B8B;ARwmClC;;AwB3hEA;EACE,cAAA;EACA,WAAA;EACA,mBAAA;EACA,gBAAA;EACA,gBhBwf4B;EgBvf5B,2BhB2xBsC;EgB1xBtC,6BAAA;EACA,yBAAA;EACA,sCAAA;AxB8hEF;AwB5hEE;EACE,UAAA;AxB8hEJ;AwB3hEE;EAEE,gBAAA;EACA,eAAA;AxB4hEJ;;AwBjhEA;EACE,mEhB4wBsC;EgB3wBtC,uBAAA;EnByII,sBALI;EKvQN,yCAAA;AVypEJ;AwBlhEE;EACE,uBAAA;EACA,wBAAA;EACA,yBhBooB0B;ARg5C9B;;AwBhhEA;EACE,iEhBgwBsC;EgB/vBtC,oBAAA;EnB4HI,qBALI;EKvQN,yCAAA;AVqqEJ;AwBjhEE;EACE,oBAAA;EACA,qBAAA;EACA,uBhB2nB0B;ARw5C9B;;AwB3gEE;EACE,oEhB6uBoC;ARiyCxC;AwB3gEE;EACE,mEhB0uBoC;ARmyCxC;AwB1gEE;EACE,iEhBuuBoC;ARqyCxC;;AwBvgEA;EACE,WhBquBsC;EgBpuBtC,gEhB8tBsC;EgB7tBtC,iBhBilB4B;ARy7C9B;AwBxgEE;EACE,eAAA;AxB0gEJ;AwBvgEE;EACE,oBAAA;EdvLA,sCAAA;AVisEJ;AwBtgEE;EACE,oBAAA;Ed5LA,sCAAA;AVqsEJ;AwBrgEE;EAAoB,+DhB8sBkB;AR0zCxC;AwBvgEE;EAAoB,6DhB8sBkB;AR4zCxC;;A2BztEA;EACE,wPAAA;EAEA,cAAA;EACA,WAAA;EACA,0CAAA;EtBqRI,mBALI;EsB7QR,gBlBOwB;EkBNxB,gBnBsmB4B;EmBrmB5B,2BnBy3BsC;EmBx3BtC,wBAAA;KAAA,qBAAA;UAAA,gBAAA;EACA,mCnBk3BsC;EmBj3BtC,mFAAA;EACA,4BAAA;EACA,yCnB+9BkC;EmB99BlC,0BnB+9BkC;EmB99BlC,2DAAA;EjBHE,sCAAA;EeHE,wEESJ;A3BytEF;AyB9tEM;EEfN;IFgBQ,gBAAA;EzBiuEN;AACF;A2B5tEE;EACE,qBnBs3BoC;EmBr3BpC,UAAA;EAKE,8CnBi+B4B;ARyvClC;A2BttEE;EAEE,sBnB6uB0B;EmB5uB1B,sBAAA;A3ButEJ;A2BptEE;EAEE,wCnBu1BoC;AR83CxC;A2BhtEE;EACE,kBAAA;EACA,uCAAA;A3BktEJ;;A2B9sEA;EACE,oBnBsuB4B;EmBruB5B,uBnBquB4B;EmBpuB5B,oBnBquB4B;EHlgBxB,sBALI;EKvQN,yCAAA;AV4vEJ;;A2B9sEA;EACE,mBnBkuB4B;EmBjuB5B,sBnBiuB4B;EmBhuB5B,kBnBiuB4B;EHtgBxB,qBALI;EKvQN,yCAAA;AVowEJ;;A2B5sEI;EACE,wPAAA;A3B+sEN;;A4BvxEA;EACE,cAAA;EACA,qBpBq6BwC;EoBp6BxC,mBpBq6BwC;EoBp6BxC,uBpBq6BwC;ARq3C1C;A4BxxEE;EACE,WAAA;EACA,mBAAA;A5B0xEJ;;A4BtxEA;EACE,oBpB25BwC;EoB15BxC,eAAA;EACA,iBAAA;A5ByxEF;A4BvxEE;EACE,YAAA;EACA,oBAAA;EACA,cAAA;A5ByxEJ;;A4BrxEA;EACE,qCAAA;EAEA,cAAA;EACA,UpB04BwC;EoBz4BxC,WpBy4BwC;EoBx4BxC,kBAAA;EACA,mBAAA;EACA,wBAAA;KAAA,qBAAA;UAAA,gBAAA;EACA,yCAAA;EACA,+CAAA;EACA,4BAAA;EACA,2BAAA;EACA,wBAAA;EACA,2DpB24BwC;EoB14BxC,iCAAA;UAAA,yBAAA;A5BuxEF;A4BpxEE;ElB3BE,qBAAA;AVkzEJ;A4BnxEE;EAEE,kBpBm4BsC;ARi5C1C;A4BjxEE;EACE,uBpB03BsC;ARy5C1C;A4BhxEE;EACE,qBpBs1BoC;EoBr1BpC,UAAA;EACA,iDpB8foB;ARoxDxB;A4B/wEE;EACE,yBnBjEQ;EmBkER,qBnBlEQ;ATm1EZ;A4B/wEI;EAII,uPAAA;A5B8wER;A4B1wEI;EAII,+JAAA;A5BywER;A4BpwEE;EACE,yBnBtFQ;EmBuFR,qBnBvFQ;EmB4FN,iPAAA;A5BkwEN;A4B9vEE;EACE,oBAAA;EACA,YAAA;EACA,YpBk2BuC;AR85C3C;A4BzvEI;EACE,eAAA;EACA,YpBy1BqC;ARk6C3C;;A4B7uEA;EACE,mBpBo1BgC;AR45ClC;A4B9uEE;EACE,2KAAA;EAEA,UpB80B8B;EoB70B9B,mBAAA;EACA,0CAAA;EACA,gCAAA;ElBjHA,kBAAA;EeHE,iDGsHF;A5B+uEJ;AyBj2EM;EG0GJ;IHzGM,gBAAA;EzBo2EN;AACF;A4BlvEI;EACE,6JAAA;A5BovEN;A4BjvEI;EACE,iCpB60B4B;EoBx0B1B,0JAAA;A5B+uER;A4B1uEE;EACE,oBpBwzB8B;EoBvzB9B,eAAA;A5B4uEJ;A4B1uEI;EACE,oBAAA;EACA,cAAA;A5B4uEN;;A4BvuEA;EACE,qBAAA;EACA,kBpBsyBgC;ARo8ClC;;A4BvuEA;EACE,kBAAA;EACA,sBAAA;EACA,oBAAA;A5B0uEF;A4BtuEI;EACE,oBAAA;EACA,YAAA;EACA,apBspBwB;ARklD9B;;A4BjuEI;EACE,iLAAA;A5BouEN;;A6Bv5EA;EACE,WAAA;EACA,YAAA;EACA,UAAA;EACA,wBAAA;KAAA,qBAAA;UAAA,gBAAA;EACA,6BAAA;A7B05EF;A6Bx5EE;EACE,UAAA;A7B05EJ;A6Bt5EI;EAA0B,oErB8gCa;AR24C3C;A6Bx5EI;EAA0B,oErB6gCa;AR84C3C;A6Bx5EE;EACE,SAAA;A7B05EJ;A6Bv5EE;EACE,WrB+/BuC;EqB9/BvC,YrB8/BuC;EqB7/BvC,oBAAA;EACA,wBAAA;UAAA,gBAAA;EH1BF,yBjBHU;EoB+BR,SrB6/BuC;EE1gCvC,mBAAA;EeHE,oHImBF;EJnBE,4GImBF;A7Bw5EJ;AyBv6EM;EIMJ;IJLM,wBAAA;IAAA,gBAAA;EzB06EN;AACF;A6B35EI;EHjCF,yBlB8hCyC;ARi6C3C;A6Bz5EE;EACE,WrBw+B8B;EqBv+B9B,crBw+B8B;EqBv+B9B,kBAAA;EACA,erBu+B8B;EqBt+B9B,wCrBu+B8B;EqBt+B9B,yBAAA;EnB7BA,mBAAA;AVy7EJ;A6Bv5EE;EACE,WrBo+BuC;EqBn+BvC,YrBm+BuC;EqBl+BvC,qBAAA;OAAA,gBAAA;EHpDF,yBjBHU;EoByDR,SrBm+BuC;EE1gCvC,mBAAA;EeHE,iHI6CF;EJ7CE,4GI6CF;A7Bw5EJ;AyBj8EM;EIiCJ;IJhCM,qBAAA;IAAA,gBAAA;EzBo8EN;AACF;A6B35EI;EH3DF,yBlB8hCyC;AR27C3C;A6Bz5EE;EACE,WrB88B8B;EqB78B9B,crB88B8B;EqB78B9B,kBAAA;EACA,erB68B8B;EqB58B9B,wCrB68B8B;EqB58B9B,yBAAA;EnBvDA,mBAAA;AVm9EJ;A6Bv5EE;EACE,oBAAA;A7By5EJ;A6Bv5EI;EACE,2CrBg9BqC;ARy8C3C;A6Bt5EI;EACE,2CrB48BqC;AR48C3C;;A8B/+EA;EACE,kBAAA;A9Bk/EF;A8Bh/EE;;;EAGE,uDtBwiCoC;EsBviCpC,2DtBuiCoC;EsBtiCpC,iBtBuiCoC;AR28CxC;A8B/+EE;EACE,kBAAA;EACA,MAAA;EACA,OAAA;EACA,UAAA;EACA,YAAA;EACA,qBAAA;EACA,gBAAA;EACA,iBAAA;EACA,uBAAA;EACA,mBAAA;EACA,oBAAA;EACA,gDAAA;EACA,qBAAA;ELRE,gEKSF;A9Bi/EJ;AyBt/EM;EKTJ;ILUM,gBAAA;EzBy/EN;AACF;A8Bn/EE;;EAEE,qBAAA;A9Bq/EJ;A8Bn/EI;EACE,kBAAA;A9Bs/EN;A8Bv/EI;;EACE,kBAAA;A9Bs/EN;A8Bn/EI;EAEE,qBtB4gCkC;EsB3gClC,wBtB4gCkC;AR0+CxC;A8Bz/EI;;;EAEE,qBtB4gCkC;EsB3gClC,wBtB4gCkC;AR0+CxC;A8Bn/EI;;EACE,qBtBugCkC;EsBtgClC,wBtBugCkC;AR++CxC;A8Bl/EE;EACE,qBtBigCoC;EsBhgCpC,wBtBigCoC;ARm/CxC;A8B7+EI;EACE,2CAAA;EACA,8DtB2/BkC;ARu/CxC;A8Bp/EI;;;;EACE,2CAAA;EACA,8DtB2/BkC;ARu/CxC;A8Bh/EM;EACE,kBAAA;EACA,oBAAA;EACA,WAAA;EACA,atBm/BgC;EsBl/BhC,WAAA;EACA,mCtBg0BgC;EEh3BpC,sCAAA;AVsiFJ;A8B5/EM;;;;EACE,kBAAA;EACA,oBAAA;EACA,WAAA;EACA,atBm/BgC;EsBl/BhC,WAAA;EACA,mCtBg0BgC;EEh3BpC,sCAAA;AVsiFJ;A8B/+EI;EACE,2CAAA;EACA,8DtB0+BkC;ARugDxC;A8B5+EI;EACE,sCAAA;A9B8+EN;A8B1+EE;;EAEE,ctB1EO;ARsjFX;A8B1+EI;;EACE,wCtB0yBkC;ARmsDxC;;A+BpkFA;EACE,kBAAA;EACA,aAAA;EACA,eAAA;EACA,oBAAA;EACA,WAAA;A/BukFF;A+BrkFE;;;EAGE,kBAAA;EACA,cAAA;EACA,SAAA;EACA,YAAA;A/BukFJ;A+BnkFE;;;EAGE,UAAA;A/BqkFJ;A+B/jFE;EACE,kBAAA;EACA,UAAA;A/BikFJ;A+B/jFI;EACE,UAAA;A/BikFN;;A+BtjFA;EACE,aAAA;EACA,mBAAA;EACA,yBAAA;E1B8OI,mBALI;E0BvOR,gBtB/BwB;EsBgCxB,gBvBgkB4B;EuB/jB5B,2BvBm1BsC;EuBl1BtC,kBAAA;EACA,mBAAA;EACA,uCvB06BsC;EuBz6BtC,2DAAA;ErBtCE,sCAAA;AVgmFJ;;A+BhjFA;;;;EAIE,oBAAA;E1BwNI,qBALI;EKvQN,yCAAA;AVymFJ;;A+BhjFA;;;;EAIE,uBAAA;E1B+MI,sBALI;EKvQN,yCAAA;AVknFJ;;A+BhjFA;;EAEE,mBAAA;A/BmjFF;;A+BtiFI;;;;ErBjEA,0BAAA;EACA,6BAAA;AV8mFJ;A+BriFI;;;;ErB1EA,0BAAA;EACA,6BAAA;AVqnFJ;A+B/hFE;EACE,8CAAA;ErB1EA,yBAAA;EACA,4BAAA;AV4mFJ;A+B/hFE;;ErB9EE,yBAAA;EACA,4BAAA;AVinFJ;;AgCzoFE;EACE,aAAA;EACA,WAAA;EACA,mBxBu0BoC;EHrkBlC,kBALI;E2B1PN,iCxBkjCqB;ARylDzB;;AgCxoFE;EACE,kBAAA;EACA,SAAA;EACA,UAAA;EACA,aAAA;EACA,eAAA;EACA,uBAAA;EACA,kBAAA;E3BqPE,sBALI;E2B7ON,WxBqiCqB;EwBpiCrB,mCxBoiCqB;EE/jCrB,sCAAA;AVsqFJ;;AgCtoFI;;;;EAEE,cAAA;AhC2oFN;;AgC1rFI;EAqDE,+CxBuhCmB;EwBphCjB,oCxB81BgC;EwB71BhC,2PAAA;EACA,4BAAA;EACA,2DAAA;EACA,gEAAA;AhCuoFR;AgCpoFM;EACE,+CxB4gCiB;EwB3gCjB,wDxB2gCiB;AR2nDzB;;AgCvsFI;EA0EI,oCxB40BgC;EwB30BhC,kFAAA;AhCioFR;;AgC5sFI;EAkFE,+CxB0/BmB;ARooDzB;AgC3nFQ;EAEE,mQAAA;EACA,uBxB05B8B;EwBz5B9B,+DAAA;EACA,2EAAA;AhC4nFV;AgCxnFM;EACE,+CxB6+BiB;EwB5+BjB,wDxB4+BiB;AR8oDzB;;AgC1tFI;EAwGI,yCAAA;AhCsnFR;;AgC9tFI;EA+GE,+CxB69BmB;ARspDzB;AgCjnFM;EACE,4CxB09BiB;ARypDzB;AgChnFM;EACE,wDxBs9BiB;AR4pDzB;AgC/mFM;EACE,iCxBk9BiB;AR+pDzB;;AgC5mFI;EACE,kBAAA;AhC+mFN;;AgC/uFI;;;;;EA0IM,UAAA;AhC6mFV;;AgCnuFE;EACE,aAAA;EACA,WAAA;EACA,mBxBu0BoC;EHrkBlC,kBALI;E2B1PN,mCxBkjCqB;ARmrDzB;;AgCluFE;EACE,kBAAA;EACA,SAAA;EACA,UAAA;EACA,aAAA;EACA,eAAA;EACA,uBAAA;EACA,kBAAA;E3BqPE,sBALI;E2B7ON,WxBqiCqB;EwBpiCrB,kCxBoiCqB;EE/jCrB,sCAAA;AVgwFJ;;AgChuFI;;;;EAEE,cAAA;AhCquFN;;AgCpxFI;EAqDE,iDxBuhCmB;EwBphCjB,oCxB81BgC;EwB71BhC,4UAAA;EACA,4BAAA;EACA,2DAAA;EACA,gEAAA;AhCiuFR;AgC9tFM;EACE,iDxB4gCiB;EwB3gCjB,uDxB2gCiB;ARqtDzB;;AgCjyFI;EA0EI,oCxB40BgC;EwB30BhC,kFAAA;AhC2tFR;;AgCtyFI;EAkFE,iDxB0/BmB;AR8tDzB;AgCrtFQ;EAEE,oVAAA;EACA,uBxB05B8B;EwBz5B9B,+DAAA;EACA,2EAAA;AhCstFV;AgCltFM;EACE,iDxB6+BiB;EwB5+BjB,uDxB4+BiB;ARwuDzB;;AgCpzFI;EAwGI,yCAAA;AhCgtFR;;AgCxzFI;EA+GE,iDxB69BmB;ARgvDzB;AgC3sFM;EACE,8CxB09BiB;ARmvDzB;AgC1sFM;EACE,uDxBs9BiB;ARsvDzB;AgCzsFM;EACE,mCxBk9BiB;ARyvDzB;;AgCtsFI;EACE,kBAAA;AhCysFN;;AgCz0FI;;;;;EA4IM,UAAA;AhCqsFV;;AiCn1FA;EAEE,2BAAA;EACA,4BAAA;EACA,sBAAA;E5BuRI,4BALI;E4BhRR,yBAAA;EACA,yBAAA;EACA,oCAAA;EACA,wBAAA;EACA,6CAAA;EACA,kCAAA;EACA,+CAAA;EACA,wCAAA;EACA,4FAAA;EACA,+BAAA;EACA,8EAAA;EAGA,qBAAA;EACA,wDAAA;EACA,sCAAA;E5BsQI,kCALI;E4B/PR,sCAAA;EACA,sCAAA;EACA,0BAAA;EACA,kBAAA;EACA,qBAAA;EAEA,sBAAA;EACA,eAAA;EACA,yBAAA;KAAA,sBAAA;UAAA,iBAAA;EACA,mEAAA;EvBjBE,0CAAA;EgBfF,kCOkCqB;ERtBjB,qIQwBJ;AjCi1FF;AyBr2FM;EQhBN;IRiBQ,gBAAA;EzBw2FN;AACF;AiCp1FE;EACE,gCAAA;EAEA,wCAAA;EACA,8CAAA;AjCq1FJ;AiCl1FE;EAEE,0BAAA;EACA,kCAAA;EACA,wCAAA;AjCm1FJ;AiCh1FE;EACE,gCAAA;EPrDF,wCOsDuB;EACrB,8CAAA;EACA,UAAA;EAKE,0CAAA;AjC80FN;AiC10FE;EACE,8CAAA;EACA,UAAA;EAKE,0CAAA;AjCw0FN;AiCp0FE;EAKE,iCAAA;EACA,yCAAA;EAGA,+CAAA;AjCg0FJ;AiC7zFI;EAKI,0CAAA;AjC2zFR;AiCtzFE;EAGE,mCAAA;EACA,oBAAA;EACA,2CAAA;EAEA,iDAAA;EACA,uCAAA;AjCqzFJ;;AiCzyFE;ECtGA,oBAAA;EACA,oBAAA;EACA,8BAAA;EACA,0BAAA;EACA,0BAAA;EACA,oCAAA;EACA,uCAAA;EACA,2BAAA;EACA,2BAAA;EACA,qCAAA;EACA,4DAAA;EACA,6BAAA;EACA,6BAAA;EACA,uCAAA;AlCm5FF;;AiC1zFE;ECtGA,oBAAA;EACA,oBAAA;EACA,8BAAA;EACA,0BAAA;EACA,0BAAA;EACA,oCAAA;EACA,sCAAA;EACA,2BAAA;EACA,2BAAA;EACA,qCAAA;EACA,4DAAA;EACA,6BAAA;EACA,6BAAA;EACA,uCAAA;AlCo6FF;;AiC30FE;ECtGA,oBAAA;EACA,oBAAA;EACA,8BAAA;EACA,0BAAA;EACA,0BAAA;EACA,oCAAA;EACA,sCAAA;EACA,2BAAA;EACA,2BAAA;EACA,qCAAA;EACA,4DAAA;EACA,6BAAA;EACA,6BAAA;EACA,uCAAA;AlCq7FF;;AiC51FE;ECtGA,oBAAA;EACA,oBAAA;EACA,8BAAA;EACA,0BAAA;EACA,0BAAA;EACA,oCAAA;EACA,uCAAA;EACA,2BAAA;EACA,2BAAA;EACA,qCAAA;EACA,4DAAA;EACA,6BAAA;EACA,6BAAA;EACA,uCAAA;AlCs8FF;;AiC72FE;ECtGA,oBAAA;EACA,oBAAA;EACA,8BAAA;EACA,0BAAA;EACA,0BAAA;EACA,oCAAA;EACA,uCAAA;EACA,2BAAA;EACA,2BAAA;EACA,qCAAA;EACA,4DAAA;EACA,6BAAA;EACA,6BAAA;EACA,uCAAA;AlCu9FF;;AiC93FE;ECtGA,oBAAA;EACA,oBAAA;EACA,8BAAA;EACA,0BAAA;EACA,0BAAA;EACA,oCAAA;EACA,sCAAA;EACA,2BAAA;EACA,2BAAA;EACA,qCAAA;EACA,4DAAA;EACA,6BAAA;EACA,6BAAA;EACA,uCAAA;AlCw+FF;;AiC/4FE;ECtGA,oBAAA;EACA,oBAAA;EACA,8BAAA;EACA,0BAAA;EACA,0BAAA;EACA,oCAAA;EACA,wCAAA;EACA,2BAAA;EACA,2BAAA;EACA,qCAAA;EACA,4DAAA;EACA,6BAAA;EACA,6BAAA;EACA,uCAAA;AlCy/FF;;AiCh6FE;ECtGA,oBAAA;EACA,oBAAA;EACA,8BAAA;EACA,0BAAA;EACA,0BAAA;EACA,oCAAA;EACA,qCAAA;EACA,2BAAA;EACA,2BAAA;EACA,qCAAA;EACA,4DAAA;EACA,6BAAA;EACA,6BAAA;EACA,uCAAA;AlC0gGF;;AiCv5FE;ECvGA,uBAAA;EACA,8BAAA;EACA,0BAAA;EACA,0BAAA;EACA,oCAAA;EACA,sCAAA;EACA,2BAAA;EACA,2BAAA;EACA,qCAAA;EACA,4DAAA;EACA,gCAAA;EACA,iCAAA;EACA,uCAAA;EACA,mBAAA;AlCkgGF;;AiCx6FE;ECvGA,uBAAA;EACA,8BAAA;EACA,0BAAA;EACA,0BAAA;EACA,oCAAA;EACA,uCAAA;EACA,2BAAA;EACA,2BAAA;EACA,qCAAA;EACA,4DAAA;EACA,gCAAA;EACA,iCAAA;EACA,uCAAA;EACA,mBAAA;AlCmhGF;;AiCz7FE;ECvGA,uBAAA;EACA,8BAAA;EACA,0BAAA;EACA,0BAAA;EACA,oCAAA;EACA,sCAAA;EACA,2BAAA;EACA,2BAAA;EACA,qCAAA;EACA,4DAAA;EACA,gCAAA;EACA,iCAAA;EACA,uCAAA;EACA,mBAAA;AlCoiGF;;AiC18FE;ECvGA,uBAAA;EACA,8BAAA;EACA,0BAAA;EACA,0BAAA;EACA,oCAAA;EACA,uCAAA;EACA,2BAAA;EACA,2BAAA;EACA,qCAAA;EACA,4DAAA;EACA,gCAAA;EACA,iCAAA;EACA,uCAAA;EACA,mBAAA;AlCqjGF;;AiC39FE;ECvGA,uBAAA;EACA,8BAAA;EACA,0BAAA;EACA,0BAAA;EACA,oCAAA;EACA,uCAAA;EACA,2BAAA;EACA,2BAAA;EACA,qCAAA;EACA,4DAAA;EACA,gCAAA;EACA,iCAAA;EACA,uCAAA;EACA,mBAAA;AlCskGF;;AiC5+FE;ECvGA,uBAAA;EACA,8BAAA;EACA,0BAAA;EACA,0BAAA;EACA,oCAAA;EACA,sCAAA;EACA,2BAAA;EACA,2BAAA;EACA,qCAAA;EACA,4DAAA;EACA,gCAAA;EACA,iCAAA;EACA,uCAAA;EACA,mBAAA;AlCulGF;;AiC7/FE;ECvGA,uBAAA;EACA,8BAAA;EACA,0BAAA;EACA,0BAAA;EACA,oCAAA;EACA,wCAAA;EACA,2BAAA;EACA,2BAAA;EACA,qCAAA;EACA,4DAAA;EACA,gCAAA;EACA,iCAAA;EACA,uCAAA;EACA,mBAAA;AlCwmGF;;AiC9gGE;ECvGA,uBAAA;EACA,8BAAA;EACA,0BAAA;EACA,0BAAA;EACA,oCAAA;EACA,kCAAA;EACA,2BAAA;EACA,2BAAA;EACA,qCAAA;EACA,4DAAA;EACA,gCAAA;EACA,iCAAA;EACA,uCAAA;EACA,mBAAA;AlCynGF;;AiCnhGA;EACE,yBAAA;EACA,oCAAA;EACA,wBAAA;EACA,kCAAA;EACA,gDAAA;EACA,wCAAA;EACA,iDAAA;EACA,yCAAA;EACA,gCAAA;EACA,2CAAA;EACA,+BAAA;EACA,uCAAA;EAEA,0BzBuRwC;AR8vF1C;AiC3gGE;EACE,0BAAA;AjC6gGJ;AiC1gGE;EACE,gCAAA;AjC4gGJ;;AiCjgGA;ECxIE,0BAAA;EACA,wBAAA;E7B8NI,8BALI;E6BvNR,kDAAA;AlC6oGF;;AiCpgGA;EC5IE,2BAAA;EACA,0BAAA;E7B8NI,+BALI;E6BvNR,kDAAA;AlCopGF;;AmCvtGA;EVgBM,gCUfJ;AnC0tGF;AyBvsGM;EUpBN;IVqBQ,gBAAA;EzB0sGN;AACF;AmC7tGE;EACE,UAAA;AnC+tGJ;;AmCztGE;EACE,aAAA;AnC4tGJ;;AmCxtGA;EACE,SAAA;EACA,gBAAA;EVDI,6BUEJ;AnC2tGF;AyBztGM;EULN;IVMQ,gBAAA;EzB4tGN;AACF;AmC9tGE;EACE,QAAA;EACA,YAAA;EVNE,4BUOF;AnCguGJ;AyBnuGM;EUAJ;IVCM,gBAAA;EzBsuGN;AACF;;AoC3vGA;;;;;;EAME,kBAAA;ApC8vGF;;AoC3vGA;EACE,mBAAA;ApC8vGF;AqCtuGI;EACE,qBAAA;EACA,oB7B6hBwB;E6B5hBxB,uB7B2hBwB;E6B1hBxB,WAAA;EArCJ,uBAAA;EACA,qCAAA;EACA,gBAAA;EACA,oCAAA;ArC8wGF;AqCptGI;EACE,cAAA;ArCstGN;;AoCpwGA;EAEE,0BAAA;EACA,8BAAA;EACA,0BAAA;EACA,+BAAA;EACA,8BAAA;E/BuQI,iCALI;E+BhQR,yCAAA;EACA,mCAAA;EACA,8DAAA;EACA,oDAAA;EACA,kDAAA;EACA,yFAAA;EACA,4DAAA;EACA,sCAAA;EACA,8CAAA;EACA,8CAAA;EACA,oDAAA;EACA,kDAAA;EACA,qCAAA;EACA,qCAAA;EACA,2DAAA;EACA,kCAAA;EACA,qCAAA;EACA,mCAAA;EACA,oCAAA;EACA,sCAAA;EAGA,kBAAA;EACA,kCAAA;EACA,aAAA;EACA,uCAAA;EACA,kEAAA;EACA,SAAA;E/B0OI,uCALI;E+BnOR,+BAAA;EACA,gBAAA;EACA,gBAAA;EACA,uCAAA;EACA,4BAAA;EACA,6EAAA;E1BzCE,+CAAA;AV8yGJ;AoCjwGE;EACE,SAAA;EACA,OAAA;EACA,qCAAA;ApCmwGJ;;AoC3uGI;EACE,oBAAA;ApC8uGN;AoC5uGM;EACE,WAAA;EACA,OAAA;ApC8uGR;;AoC1uGI;EACE,kBAAA;ApC6uGN;AoC3uGM;EACE,QAAA;EACA,UAAA;ApC6uGR;;AiBvxGI;EmB4BA;IACE,oBAAA;EpC+vGJ;EoC7vGI;IACE,WAAA;IACA,OAAA;EpC+vGN;EoC3vGE;IACE,kBAAA;EpC6vGJ;EoC3vGI;IACE,QAAA;IACA,UAAA;EpC6vGN;AACF;AiBxyGI;EmB4BA;IACE,oBAAA;EpC+wGJ;EoC7wGI;IACE,WAAA;IACA,OAAA;EpC+wGN;EoC3wGE;IACE,kBAAA;EpC6wGJ;EoC3wGI;IACE,QAAA;IACA,UAAA;EpC6wGN;AACF;AiBxzGI;EmB4BA;IACE,oBAAA;EpC+xGJ;EoC7xGI;IACE,WAAA;IACA,OAAA;EpC+xGN;EoC3xGE;IACE,kBAAA;EpC6xGJ;EoC3xGI;IACE,QAAA;IACA,UAAA;EpC6xGN;AACF;AiBx0GI;EmB4BA;IACE,oBAAA;EpC+yGJ;EoC7yGI;IACE,WAAA;IACA,OAAA;EpC+yGN;EoC3yGE;IACE,kBAAA;EpC6yGJ;EoC3yGI;IACE,QAAA;IACA,UAAA;EpC6yGN;AACF;AiBx1GI;EmB4BA;IACE,oBAAA;EpC+zGJ;EoC7zGI;IACE,WAAA;IACA,OAAA;EpC+zGN;EoC3zGE;IACE,kBAAA;EpC6zGJ;EoC3zGI;IACE,QAAA;IACA,UAAA;EpC6zGN;AACF;AoCpzGE;EACE,SAAA;EACA,YAAA;EACA,aAAA;EACA,wCAAA;ApCszGJ;AqC14GI;EACE,qBAAA;EACA,oB7B6hBwB;E6B5hBxB,uB7B2hBwB;E6B1hBxB,WAAA;EA9BJ,aAAA;EACA,qCAAA;EACA,0BAAA;EACA,oCAAA;ArC26GF;AqCx3GI;EACE,cAAA;ArC03GN;;AoC1zGE;EACE,MAAA;EACA,WAAA;EACA,UAAA;EACA,aAAA;EACA,sCAAA;ApC6zGJ;AqC/5GI;EACE,qBAAA;EACA,oB7B6hBwB;E6B5hBxB,uB7B2hBwB;E6B1hBxB,WAAA;EAvBJ,mCAAA;EACA,eAAA;EACA,sCAAA;EACA,wBAAA;ArCy7GF;AqC74GI;EACE,cAAA;ArC+4GN;AoCr0GI;EACE,iBAAA;ApCu0GN;;AoCj0GE;EACE,MAAA;EACA,WAAA;EACA,UAAA;EACA,aAAA;EACA,uCAAA;ApCo0GJ;AqCv7GI;EACE,qBAAA;EACA,oB7B6hBwB;E6B5hBxB,uB7B2hBwB;E6B1hBxB,WAAA;ArCy7GN;AqC96GM;EACE,aAAA;ArCg7GR;AqC76GM;EACE,qBAAA;EACA,qB7B0gBsB;E6BzgBtB,uB7BwgBsB;E6BvgBtB,WAAA;EAnCN,mCAAA;EACA,yBAAA;EACA,sCAAA;ArCm9GF;AqC76GI;EACE,cAAA;ArC+6GN;AoCp1GI;EACE,iBAAA;ApCs1GN;;AoC/0GA;EACE,SAAA;EACA,6CAAA;EACA,gBAAA;EACA,mDAAA;EACA,UAAA;ApCk1GF;;AoC50GA;EACE,cAAA;EACA,WAAA;EACA,4EAAA;EACA,WAAA;EACA,gB5Byb4B;E4Bxb5B,oCAAA;EACA,mBAAA;EACA,qBAAA;EACA,mBAAA;EACA,6BAAA;EACA,SAAA;E1BtKE,uDAAA;AVs/GJ;AoC70GE;EAEE,0CAAA;EV1LF,kDU4LuB;ApC60GzB;AoC10GE;EAEE,2CAAA;EACA,qBAAA;EVlMF,mDUmMuB;ApC20GzB;AoCx0GE;EAEE,6CAAA;EACA,oBAAA;EACA,6BAAA;ApCy0GJ;;AoCn0GA;EACE,cAAA;ApCs0GF;;AoCl0GA;EACE,cAAA;EACA,gFAAA;EACA,gBAAA;E/BmEI,sBALI;E+B5DR,sCAAA;EACA,mBAAA;ApCq0GF;;AoCj0GA;EACE,cAAA;EACA,4EAAA;EACA,oCAAA;ApCo0GF;;AoCh0GA;EAEE,4BAAA;EACA,yBAAA;EACA,8DAAA;EACA,0BAAA;EACA,iCAAA;EACA,oCAAA;EACA,4DAAA;EACA,sDAAA;EACA,qCAAA;EACA,qCAAA;EACA,0CAAA;EACA,mCAAA;ApCk0GF;;AsCxjHA;;EAEE,kBAAA;EACA,oBAAA;EACA,sBAAA;AtC2jHF;AsCzjHE;;EACE,kBAAA;EACA,cAAA;AtC4jHJ;AsCvjHE;;;;;;;;;;;;EAME,UAAA;AtC+jHJ;;AsC1jHA;EACE,aAAA;EACA,eAAA;EACA,2BAAA;AtC6jHF;AsC3jHE;EACE,WAAA;AtC6jHJ;;AsCzjHA;E5BhBI,sCAAA;AV6kHJ;AsCzjHE;;EAEE,8CAAA;AtC2jHJ;AsCvjHE;;;E5BVE,0BAAA;EACA,6BAAA;AVskHJ;AsCnjHE;;;E5BNE,yBAAA;EACA,4BAAA;AV8jHJ;;AsCtiHA;EACE,wBAAA;EACA,uBAAA;AtCyiHF;AsCviHE;EAGE,cAAA;AtCuiHJ;AsCpiHE;EACE,eAAA;AtCsiHJ;;AsCliHA;EACE,uBAAA;EACA,sBAAA;AtCqiHF;;AsCliHA;EACE,sBAAA;EACA,qBAAA;AtCqiHF;;AsCjhHA;EACE,sBAAA;EACA,uBAAA;EACA,uBAAA;AtCohHF;AsClhHE;;EAEE,WAAA;AtCohHJ;AsCjhHE;;EAEE,6CAAA;AtCmhHJ;AsC/gHE;;E5B1FE,6BAAA;EACA,4BAAA;AV6mHJ;AsC/gHE;;E5B7GE,yBAAA;EACA,0BAAA;AVgoHJ;;AuCxpHA;EAEE,6BAAA;EACA,+BAAA;EAEA,2BAAA;EACA,yCAAA;EACA,qDAAA;EACA,uDAAA;EAGA,aAAA;EACA,eAAA;EACA,eAAA;EACA,gBAAA;EACA,gBAAA;AvCupHF;;AuCppHA;EACE,cAAA;EACA,kEAAA;ElCsQI,uCALI;EkC/PR,2CAAA;EACA,+BAAA;EACA,qBAAA;EACA,gBAAA;EACA,SAAA;EdfI,uGcgBJ;AvCupHF;AyBnqHM;EcGN;IdFQ,gBAAA;EzBsqHN;AACF;AuC1pHE;EAEE,qCAAA;AvC2pHJ;AuCvpHE;EACE,UAAA;EACA,iD/BkhBoB;ARuoGxB;AuCrpHE;EAEE,wCAAA;EACA,oBAAA;EACA,eAAA;AvCspHJ;;AuC9oHA;EAEE,kDAAA;EACA,kDAAA;EACA,oDAAA;EACA,2GAAA;EACA,yDAAA;EACA,+CAAA;EACA,uGAAA;EAGA,oFAAA;AvC8oHF;AuC5oHE;EACE,yDAAA;EACA,yDAAA;E7B7CA,wDAAA;EACA,yDAAA;AV4rHJ;AuC7oHI;EAGE,kBAAA;EACA,wDAAA;AvC6oHN;AuCzoHE;;EAEE,2CAAA;EACA,mDAAA;EACA,yDAAA;AvC2oHJ;AuCxoHE;EAEE,sDAAA;E7BjEA,yBAAA;EACA,0BAAA;AV2sHJ;;AuChoHA;EAEE,qDAAA;EACA,sCAAA;EACA,sCAAA;AvCkoHF;AuC/nHE;E7B5FE,gDAAA;AV8tHJ;AuC9nHE;;EAEE,4CAAA;EbjHF,oDakHuB;AvCgoHzB;;AuCvnHA;EAEE,4BAAA;EACA,yCAAA;EACA,8DAAA;EAGA,gCAAA;AvCunHF;AuCrnHE;EACE,gBAAA;EACA,eAAA;EACA,qEAAA;AvCunHJ;AuCrnHI;EAEE,iCAAA;AvCsnHN;AuClnHE;;EAEE,gB/B0d0B;E+Bzd1B,gDAAA;EACA,iCAAA;AvConHJ;;AuC1mHE;;EAEE,cAAA;EACA,kBAAA;AvC6mHJ;;AuCxmHE;;EAEE,aAAA;EACA,YAAA;EACA,kBAAA;AvC2mHJ;;AuCrmHE;;EACE,WAAA;AvCymHJ;;AuC/lHE;EACE,aAAA;AvCkmHJ;AuChmHE;EACE,cAAA;AvCkmHJ;;AwC/xHA;EAEE,wBAAA;EACA,6BAAA;EACA,2DAAA;EACA,gEAAA;EACA,mEAAA;EACA,+DAAA;EACA,yCAAA;EACA,kCAAA;EACA,uCAAA;EACA,8DAAA;EACA,oEAAA;EACA,sCAAA;EACA,sCAAA;EACA,sCAAA;EACA,yCAAA;EACA,8QAAA;EACA,0EAAA;EACA,0DAAA;EACA,qCAAA;EACA,4DAAA;EAGA,kBAAA;EACA,aAAA;EACA,eAAA;EACA,mBAAA;EACA,8BAAA;EACA,8DAAA;AxC+xHF;AwCzxHE;;;;;;;EACE,aAAA;EACA,kBAAA;EACA,mBAAA;EACA,8BAAA;AxCiyHJ;AwC7wHA;EACE,6CAAA;EACA,gDAAA;EACA,+CAAA;EnC4NI,2CALI;EmCrNR,mCAAA;EACA,qBAAA;EACA,mBAAA;AxC+wHF;AwC7wHE;EAEE,yCAAA;AxC8wHJ;;AwCpwHA;EAEE,0BAAA;EACA,+BAAA;EAEA,2BAAA;EACA,2CAAA;EACA,uDAAA;EACA,6DAAA;EAGA,aAAA;EACA,sBAAA;EACA,eAAA;EACA,gBAAA;EACA,gBAAA;AxCmwHF;AwChwHI;EAEE,oCAAA;AxCiwHN;AwC7vHE;EACE,gBAAA;AxC+vHJ;;AwCtvHA;EACE,mBhC8gCkC;EgC7gClC,sBhC6gCkC;EgC5gClC,6BAAA;AxCyvHF;AwCvvHE;;;EAGE,oCAAA;AxCyvHJ;;AwC5uHA;EACE,gBAAA;EACA,YAAA;EAGA,mBAAA;AxC6uHF;;AwCzuHA;EACE,8EAAA;EnCyII,6CALI;EmClIR,cAAA;EACA,6BAAA;EACA,6BAAA;EACA,0EAAA;E9BxIE,qDAAA;EeHE,+Ce6IJ;AxC4uHF;AyBr3HM;EeiIN;IfhIQ,gBAAA;EzBw3HN;AACF;AwC/uHE;EACE,qBAAA;AxCivHJ;AwC9uHE;EACE,qBAAA;EACA,UAAA;EACA,sDAAA;AxCgvHJ;;AwC1uHA;EACE,qBAAA;EACA,YAAA;EACA,aAAA;EACA,sBAAA;EACA,kDAAA;EACA,4BAAA;EACA,2BAAA;EACA,qBAAA;AxC6uHF;;AwC1uHA;EACE,yCAAA;EACA,gBAAA;AxC6uHF;;AiBv2HI;EuBsIA;IAEI,iBAAA;IACA,2BAAA;ExCouHN;EwCluHM;IACE,mBAAA;ExCouHR;EwCluHQ;IACE,kBAAA;ExCouHV;EwCjuHQ;IACE,kDAAA;IACA,iDAAA;ExCmuHV;EwC/tHM;IACE,iBAAA;ExCiuHR;EwC9tHM;IACE,wBAAA;IACA,gBAAA;ExCguHR;EwC7tHM;IACE,aAAA;ExC+tHR;EwC5tHM;IAEE,gBAAA;IACA,aAAA;IACA,YAAA;IACA,sBAAA;IACA,uBAAA;IACA,8BAAA;IACA,wCAAA;IACA,oBAAA;IACA,0BAAA;If9NJ,gBegOI;ExC4tHR;EwCztHQ;IACE,aAAA;ExC2tHV;EwCxtHQ;IACE,aAAA;IACA,YAAA;IACA,UAAA;IACA,mBAAA;ExC0tHV;AACF;AiBv5HI;EuBsIA;IAEI,iBAAA;IACA,2BAAA;ExCmxHN;EwCjxHM;IACE,mBAAA;ExCmxHR;EwCjxHQ;IACE,kBAAA;ExCmxHV;EwChxHQ;IACE,kDAAA;IACA,iDAAA;ExCkxHV;EwC9wHM;IACE,iBAAA;ExCgxHR;EwC7wHM;IACE,wBAAA;IACA,gBAAA;ExC+wHR;EwC5wHM;IACE,aAAA;ExC8wHR;EwC3wHM;IAEE,gBAAA;IACA,aAAA;IACA,YAAA;IACA,sBAAA;IACA,uBAAA;IACA,8BAAA;IACA,wCAAA;IACA,oBAAA;IACA,0BAAA;If9NJ,gBegOI;ExC2wHR;EwCxwHQ;IACE,aAAA;ExC0wHV;EwCvwHQ;IACE,aAAA;IACA,YAAA;IACA,UAAA;IACA,mBAAA;ExCywHV;AACF;AiBt8HI;EuBsIA;IAEI,iBAAA;IACA,2BAAA;ExCk0HN;EwCh0HM;IACE,mBAAA;ExCk0HR;EwCh0HQ;IACE,kBAAA;ExCk0HV;EwC/zHQ;IACE,kDAAA;IACA,iDAAA;ExCi0HV;EwC7zHM;IACE,iBAAA;ExC+zHR;EwC5zHM;IACE,wBAAA;IACA,gBAAA;ExC8zHR;EwC3zHM;IACE,aAAA;ExC6zHR;EwC1zHM;IAEE,gBAAA;IACA,aAAA;IACA,YAAA;IACA,sBAAA;IACA,uBAAA;IACA,8BAAA;IACA,wCAAA;IACA,oBAAA;IACA,0BAAA;If9NJ,gBegOI;ExC0zHR;EwCvzHQ;IACE,aAAA;ExCyzHV;EwCtzHQ;IACE,aAAA;IACA,YAAA;IACA,UAAA;IACA,mBAAA;ExCwzHV;AACF;AiBr/HI;EuBsIA;IAEI,iBAAA;IACA,2BAAA;ExCi3HN;EwC/2HM;IACE,mBAAA;ExCi3HR;EwC/2HQ;IACE,kBAAA;ExCi3HV;EwC92HQ;IACE,kDAAA;IACA,iDAAA;ExCg3HV;EwC52HM;IACE,iBAAA;ExC82HR;EwC32HM;IACE,wBAAA;IACA,gBAAA;ExC62HR;EwC12HM;IACE,aAAA;ExC42HR;EwCz2HM;IAEE,gBAAA;IACA,aAAA;IACA,YAAA;IACA,sBAAA;IACA,uBAAA;IACA,8BAAA;IACA,wCAAA;IACA,oBAAA;IACA,0BAAA;If9NJ,gBegOI;ExCy2HR;EwCt2HQ;IACE,aAAA;ExCw2HV;EwCr2HQ;IACE,aAAA;IACA,YAAA;IACA,UAAA;IACA,mBAAA;ExCu2HV;AACF;AiBpiII;EuBsIA;IAEI,iBAAA;IACA,2BAAA;ExCg6HN;EwC95HM;IACE,mBAAA;ExCg6HR;EwC95HQ;IACE,kBAAA;ExCg6HV;EwC75HQ;IACE,kDAAA;IACA,iDAAA;ExC+5HV;EwC35HM;IACE,iBAAA;ExC65HR;EwC15HM;IACE,wBAAA;IACA,gBAAA;ExC45HR;EwCz5HM;IACE,aAAA;ExC25HR;EwCx5HM;IAEE,gBAAA;IACA,aAAA;IACA,YAAA;IACA,sBAAA;IACA,uBAAA;IACA,8BAAA;IACA,wCAAA;IACA,oBAAA;IACA,0BAAA;If9NJ,gBegOI;ExCw5HR;EwCr5HQ;IACE,aAAA;ExCu5HV;EwCp5HQ;IACE,aAAA;IACA,YAAA;IACA,UAAA;IACA,mBAAA;ExCs5HV;AACF;AwC78HI;EAEI,iBAAA;EACA,2BAAA;AxC88HR;AwC58HQ;EACE,mBAAA;AxC88HV;AwC58HU;EACE,kBAAA;AxC88HZ;AwC38HU;EACE,kDAAA;EACA,iDAAA;AxC68HZ;AwCz8HQ;EACE,iBAAA;AxC28HV;AwCx8HQ;EACE,wBAAA;EACA,gBAAA;AxC08HV;AwCv8HQ;EACE,aAAA;AxCy8HV;AwCt8HQ;EAEE,gBAAA;EACA,aAAA;EACA,YAAA;EACA,sBAAA;EACA,uBAAA;EACA,8BAAA;EACA,wCAAA;EACA,oBAAA;EACA,0BAAA;Ef9NJ,gBegOI;AxCs8HV;AwCn8HU;EACE,aAAA;AxCq8HZ;AwCl8HU;EACE,aAAA;EACA,YAAA;EACA,UAAA;EACA,mBAAA;AxCo8HZ;;AwCn7HA;;EAGE,4CAAA;EACA,kDAAA;EACA,qDAAA;EACA,8BAAA;EACA,6BAAA;EACA,mCAAA;EACA,0DAAA;EACA,8QAAA;AxCq7HF;;AwC/6HI;EACE,8QAAA;AxCk7HN;;AyC3sIA;EAEE,wBAAA;EACA,wBAAA;EACA,gCAAA;EACA,uBAAA;EACA,0BAAA;EACA,8CAAA;EACA,0DAAA;EACA,gDAAA;EACA,sBAAA;EACA,uFAAA;EACA,+BAAA;EACA,6BAAA;EACA,sDAAA;EACA,qBAAA;EACA,kBAAA;EACA,iBAAA;EACA,+BAAA;EACA,mCAAA;EACA,4BAAA;EAGA,kBAAA;EACA,aAAA;EACA,sBAAA;EACA,YAAA;EACA,6BAAA;EACA,2BAAA;EACA,qBAAA;EACA,mCAAA;EACA,2BAAA;EACA,qEAAA;E/BjBE,2CAAA;AV6tIJ;AyCxsIE;EACE,eAAA;EACA,cAAA;AzC0sIJ;AyCvsIE;EACE,mBAAA;EACA,sBAAA;AzCysIJ;AyCvsII;EACE,mBAAA;E/BtBF,0DAAA;EACA,2DAAA;AVguIJ;AyCvsII;EACE,sBAAA;E/BbF,8DAAA;EACA,6DAAA;AVutIJ;AyCpsIE;;EAEE,aAAA;AzCssIJ;;AyClsIA;EAGE,cAAA;EACA,wDAAA;EACA,2BAAA;AzCmsIF;;AyChsIA;EACE,4CAAA;EACA,iCAAA;AzCmsIF;;AyChsIA;EACE,sDAAA;EACA,gBAAA;EACA,oCAAA;AzCmsIF;;AyChsIA;EACE,gBAAA;AzCmsIF;;AyC3rIE;EACE,oCAAA;AzC8rIJ;;AyCtrIA;EACE,kEAAA;EACA,gBAAA;EACA,+BAAA;EACA,uCAAA;EACA,4EAAA;AzCyrIF;AyCvrIE;E/B7FE,wFAAA;AVuxIJ;;AyCrrIA;EACE,kEAAA;EACA,+BAAA;EACA,uCAAA;EACA,yEAAA;AzCwrIF;AyCtrIE;E/BxGE,wFAAA;AViyIJ;;AyC/qIA;EACE,uDAAA;EACA,sDAAA;EACA,sDAAA;EACA,gBAAA;AzCkrIF;AyChrIE;EACE,mCAAA;EACA,sCAAA;AzCkrIJ;;AyC9qIA;EACE,uDAAA;EACA,sDAAA;AzCirIF;;AyC7qIA;EACE,kBAAA;EACA,MAAA;EACA,QAAA;EACA,SAAA;EACA,OAAA;EACA,2CAAA;E/B1IE,iDAAA;AV2zIJ;;AyC7qIA;;;EAGE,WAAA;AzCgrIF;;AyC7qIA;;E/B3II,0DAAA;EACA,2DAAA;AV6zIJ;;AyC9qIA;;E/BlII,8DAAA;EACA,6DAAA;AVqzIJ;;AyCvqIE;EACE,0CAAA;AzC0qIJ;AiBryII;EwBuHJ;IAQI,aAAA;IACA,mBAAA;EzC0qIF;EyCvqIE;IAEE,YAAA;IACA,gBAAA;EzCwqIJ;EyCtqII;IACE,cAAA;IACA,cAAA;EzCwqIN;EyCnqIM;I/B3KJ,0BAAA;IACA,6BAAA;EVi1IF;EyCpqIQ;;IAGE,0BAAA;EzCqqIV;EyCnqIQ;;IAGE,6BAAA;EzCoqIV;EyChqIM;I/B5KJ,yBAAA;IACA,4BAAA;EV+0IF;EyCjqIQ;;IAGE,yBAAA;EzCkqIV;EyChqIQ;;IAGE,4BAAA;EzCiqIV;AACF;;A0Ct4IA;EAEE,0CAAA;EACA,oCAAA;EACA,8KAAA;EACA,mDAAA;EACA,mDAAA;EACA,qDAAA;EACA,4FAAA;EACA,qCAAA;EACA,kCAAA;EACA,8CAAA;EACA,6CAAA;EACA,wSAAA;EACA,sCAAA;EACA,kDAAA;EACA,8DAAA;EACA,+SAAA;EACA,8CAAA;EACA,0EAAA;EACA,sCAAA;EACA,mCAAA;EACA,4DAAA;EACA,qDAAA;A1Cw4IF;;A0Cp4IA;EACE,kBAAA;EACA,aAAA;EACA,mBAAA;EACA,WAAA;EACA,4EAAA;ErC2PI,mBALI;EqCpPR,oCAAA;EACA,gBAAA;EACA,4CAAA;EACA,SAAA;EhCtBE,gBAAA;EgCwBF,qBAAA;EjB3BI,0CiB4BJ;A1Cu4IF;AyB/5IM;EiBWN;IjBVQ,gBAAA;EzBk6IN;AACF;A0C14IE;EACE,uCAAA;EACA,+CAAA;EACA,kGAAA;A1C44IJ;A0C14II;EACE,qDAAA;EACA,iDAAA;A1C44IN;A0Cv4IE;EACE,cAAA;EACA,yCAAA;EACA,0CAAA;EACA,iBAAA;EACA,WAAA;EACA,8CAAA;EACA,4BAAA;EACA,mDAAA;EjBlDE,mDiBmDF;A1Cy4IJ;AyBx7IM;EiBsCJ;IjBrCM,gBAAA;EzB27IN;AACF;A0C34IE;EACE,UAAA;A1C64IJ;A0C14IE;EACE,UAAA;EACA,wDAAA;EACA,UAAA;EACA,oDAAA;A1C44IJ;;A0Cx4IA;EACE,gBAAA;A1C24IF;;A0Cx4IA;EACE,gCAAA;EACA,wCAAA;EACA,+EAAA;A1C24IF;A0Cz4IE;EhC/DE,yDAAA;EACA,0DAAA;AV28IJ;A0C14II;EhClEA,+DAAA;EACA,gEAAA;AV+8IJ;A0Cz4IE;EACE,aAAA;A1C24IJ;A0Cv4IE;EhC9DE,6DAAA;EACA,4DAAA;AVw8IJ;A0Cv4IM;EhClEF,mEAAA;EACA,kEAAA;AV48IJ;A0Ct4II;EhCvEA,6DAAA;EACA,4DAAA;AVg9IJ;;A0Cp4IA;EACE,8EAAA;A1Cu4IF;;A0C93IE;EACE,eAAA;A1Ci4IJ;A0C93IE;EACE,eAAA;EACA,cAAA;EhCpHA,gBAAA;AVq/IJ;A0C93II;EAAgB,aAAA;A1Ci4IpB;A0Ch4II;EAAe,gBAAA;A1Cm4InB;A0Ch4IM;EhC3HF,gBAAA;AV8/IJ;;A0Cz3II;EACE,wSAAA;EACA,+SAAA;A1C43IN;;A2CthJA;EAEE,4BAAA;EACA,4BAAA;EACA,mCAAA;EAEA,oBAAA;EACA,+BAAA;EACA,wDAAA;EACA,sCAAA;EACA,4DAAA;EAGA,aAAA;EACA,eAAA;EACA,sEAAA;EACA,iDAAA;EtC+QI,yCALI;EsCxQR,gBAAA;EACA,yCAAA;EjCAE,iDAAA;AVshJJ;;A2ChhJE;EACE,iDAAA;A3CmhJJ;A2CjhJI;EACE,WAAA;EACA,kDAAA;EACA,yCAAA;EACA,uFAAA;A3CmhJN;A2C/gJE;EACE,6CAAA;A3CihJJ;;A4CtjJA;EAEE,kCAAA;EACA,mCAAA;EvC4RI,mCALI;EuCrRR,2CAAA;EACA,qCAAA;EACA,oDAAA;EACA,oDAAA;EACA,sDAAA;EACA,uDAAA;EACA,+CAAA;EACA,0DAAA;EACA,uDAAA;EACA,gDAAA;EACA,uEAAA;EACA,kCAAA;EACA,kCAAA;EACA,4CAAA;EACA,yDAAA;EACA,mDAAA;EACA,6DAAA;EAGA,aAAA;EhCpBA,eAAA;EACA,gBAAA;AZ2kJF;;A4CpjJA;EACE,kBAAA;EACA,cAAA;EACA,sEAAA;EvCgQI,yCALI;EuCzPR,iCAAA;EACA,qBAAA;EACA,yCAAA;EACA,iFAAA;EnBpBI,qImBqBJ;A5CujJF;AyBxkJM;EmBQN;InBPQ,gBAAA;EzB2kJN;AACF;A4C1jJE;EACE,UAAA;EACA,uCAAA;EAEA,+CAAA;EACA,qDAAA;A5C2jJJ;A4CxjJE;EACE,UAAA;EACA,uCAAA;EACA,+CAAA;EACA,UpC2uCgC;EoC1uChC,iDAAA;A5C0jJJ;A4CvjJE;EAEE,UAAA;EACA,wCAAA;ElBtDF,gDkBuDuB;EACrB,sDAAA;A5CwjJJ;A4CrjJE;EAEE,0CAAA;EACA,oBAAA;EACA,kDAAA;EACA,wDAAA;A5CsjJJ;;A4CjjJE;EACE,8CpC8sCgC;ARs2GpC;A4C/iJM;ElC9BF,0DAAA;EACA,6DAAA;AVglJJ;A4C7iJM;ElClDF,2DAAA;EACA,8DAAA;AVkmJJ;;A4ChiJA;EClGE,iCAAA;EACA,kCAAA;ExC0RI,qCALI;EwCnRR,yDAAA;A7CsoJF;;A4CniJA;ECtGE,iCAAA;EACA,kCAAA;ExC0RI,sCALI;EwCnRR,yDAAA;A7C6oJF;;A8C/oJA;EAEE,4BAAA;EACA,4BAAA;EzCuRI,4BALI;EyChRR,2BAAA;EACA,sBAAA;EACA,iDAAA;EAGA,qBAAA;EACA,4DAAA;EzC+QI,oCALI;EyCxQR,wCAAA;EACA,cAAA;EACA,4BAAA;EACA,kBAAA;EACA,mBAAA;EACA,wBAAA;EpCJE,4CAAA;AVopJJ;A8C3oJE;EACE,aAAA;A9C6oJJ;;A8CxoJA;EACE,kBAAA;EACA,SAAA;A9C2oJF;;A+C3qJA;EAEE,0BAAA;EACA,0BAAA;EACA,0BAAA;EACA,8BAAA;EACA,yBAAA;EACA,oCAAA;EACA,4EAAA;EACA,iDAAA;EACA,8BAAA;EAGA,kBAAA;EACA,4DAAA;EACA,4CAAA;EACA,4BAAA;EACA,oCAAA;EACA,8BAAA;ErCHE,4CAAA;AV+qJJ;;A+CvqJA;EAEE,cAAA;A/CyqJF;;A+CrqJA;EACE,gBvC6kB4B;EuC5kB5B,iCAAA;A/CwqJF;;A+ChqJA;EACE,mBvCo+C8B;AR+rGhC;A+ChqJE;EACE,kBAAA;EACA,MAAA;EACA,QAAA;EACA,UAAA;EACA,qBAAA;A/CkqJJ;;A+C1pJE;EACE,iDAAA;EACA,0CAAA;EACA,wDAAA;EACA,sDAAA;A/C6pJJ;;A+CjqJE;EACE,mDAAA;EACA,4CAAA;EACA,0DAAA;EACA,wDAAA;A/CoqJJ;;A+CxqJE;EACE,iDAAA;EACA,0CAAA;EACA,wDAAA;EACA,sDAAA;A/C2qJJ;;A+C/qJE;EACE,8CAAA;EACA,uCAAA;EACA,qDAAA;EACA,mDAAA;A/CkrJJ;;A+CtrJE;EACE,iDAAA;EACA,0CAAA;EACA,wDAAA;EACA,sDAAA;A/CyrJJ;;A+C7rJE;EACE,gDAAA;EACA,yCAAA;EACA,uDAAA;EACA,qDAAA;A/CgsJJ;;A+CpsJE;EACE,+CAAA;EACA,wCAAA;EACA,sDAAA;EACA,oDAAA;A/CusJJ;;A+C3sJE;EACE,8CAAA;EACA,uCAAA;EACA,qDAAA;EACA,mDAAA;A/C8sJJ;;AgD1wJE;EACE;IAAK,2BxCuhD2B;ERuvGlC;AACF;AgD1wJA;;EAGE,0BAAA;E3CkRI,mCALI;E2C3QR,wCAAA;EACA,oDAAA;EACA,oDAAA;EACA,6BAAA;EACA,6BAAA;EACA,6CAAA;EAGA,aAAA;EACA,iCAAA;EACA,gBAAA;E3CsQI,uCALI;E2C/PR,uCAAA;EtCRE,+CAAA;AVkxJJ;;AgDrwJA;EACE,aAAA;EACA,sBAAA;EACA,uBAAA;EACA,gBAAA;EACA,mCAAA;EACA,kBAAA;EACA,mBAAA;EACA,2CAAA;EvBxBI,6CuByBJ;AhDwwJF;AyB7xJM;EuBYN;IvBXQ,gBAAA;EzBgyJN;AACF;;AgD1wJA;EtBAE,qMAAA;EsBEA,oEAAA;AhD6wJF;;AgD1wJA;EACE,iBAAA;AhD6wJF;;AgD1wJA;EACE,WAAA;AhD6wJF;;AgDzwJE;EACE,kDAAA;AhD4wJJ;AgDzwJM;EAJJ;IAKM,eAAA;EhD4wJN;AACF;;AiDx0JA;EAEE,2CAAA;EACA,qCAAA;EACA,oDAAA;EACA,oDAAA;EACA,sDAAA;EACA,oCAAA;EACA,sCAAA;EACA,uDAAA;EACA,4DAAA;EACA,sDAAA;EACA,yDAAA;EACA,wDAAA;EACA,yDAAA;EACA,8CAAA;EACA,kCAAA;EACA,kCAAA;EACA,4CAAA;EAGA,aAAA;EACA,sBAAA;EAGA,eAAA;EACA,gBAAA;EvCXE,iDAAA;AVk1JJ;;AiDn0JA;EACE,qBAAA;EACA,sBAAA;AjDs0JF;AiDp0JE;EAEE,oCAAA;EACA,0BAAA;AjDq0JJ;;AiD5zJA;EACE,WAAA;EACA,wCAAA;EACA,mBAAA;AjD+zJF;AiD5zJE;EAEE,UAAA;EACA,8CAAA;EACA,qBAAA;EACA,sDAAA;AjD6zJJ;AiD1zJE;EACE,+CAAA;EACA,uDAAA;AjD4zJJ;;AiDpzJA;EACE,kBAAA;EACA,cAAA;EACA,gFAAA;EACA,iCAAA;EACA,qBAAA;EACA,yCAAA;EACA,iFAAA;AjDuzJF;AiDrzJE;EvCvDE,+BAAA;EACA,gCAAA;AV+2JJ;AiDrzJE;EvC7CE,mCAAA;EACA,kCAAA;AVq2JJ;AiDrzJE;EAEE,0CAAA;EACA,oBAAA;EACA,kDAAA;AjDszJJ;AiDlzJE;EACE,UAAA;EACA,wCAAA;EACA,gDAAA;EACA,sDAAA;AjDozJJ;AiDhzJE;EACE,mBAAA;AjDkzJJ;AiDhzJI;EACE,wDAAA;EACA,mDAAA;AjDkzJN;;AiDryJI;EACE,mBAAA;AjDwyJN;AiDryJQ;EvCvDJ,6DAAA;EAZA,0BAAA;AV42JJ;AiDpyJQ;EvCxEJ,2DAAA;EAYA,4BAAA;AVo2JJ;AiDnyJQ;EACE,aAAA;AjDqyJV;AiDlyJQ;EACE,mDAAA;EACA,oBAAA;AjDoyJV;AiDlyJU;EACE,yDAAA;EACA,oDAAA;AjDoyJZ;;AiB13JI;EgC8DA;IACE,mBAAA;EjDg0JJ;EiD7zJM;IvCvDJ,6DAAA;IAZA,0BAAA;EVo4JF;EiD5zJM;IvCxEJ,2DAAA;IAYA,4BAAA;EV43JF;EiD3zJM;IACE,aAAA;EjD6zJR;EiD1zJM;IACE,mDAAA;IACA,oBAAA;EjD4zJR;EiD1zJQ;IACE,yDAAA;IACA,oDAAA;EjD4zJV;AACF;AiBn5JI;EgC8DA;IACE,mBAAA;EjDw1JJ;EiDr1JM;IvCvDJ,6DAAA;IAZA,0BAAA;EV45JF;EiDp1JM;IvCxEJ,2DAAA;IAYA,4BAAA;EVo5JF;EiDn1JM;IACE,aAAA;EjDq1JR;EiDl1JM;IACE,mDAAA;IACA,oBAAA;EjDo1JR;EiDl1JQ;IACE,yDAAA;IACA,oDAAA;EjDo1JV;AACF;AiB36JI;EgC8DA;IACE,mBAAA;EjDg3JJ;EiD72JM;IvCvDJ,6DAAA;IAZA,0BAAA;EVo7JF;EiD52JM;IvCxEJ,2DAAA;IAYA,4BAAA;EV46JF;EiD32JM;IACE,aAAA;EjD62JR;EiD12JM;IACE,mDAAA;IACA,oBAAA;EjD42JR;EiD12JQ;IACE,yDAAA;IACA,oDAAA;EjD42JV;AACF;AiBn8JI;EgC8DA;IACE,mBAAA;EjDw4JJ;EiDr4JM;IvCvDJ,6DAAA;IAZA,0BAAA;EV48JF;EiDp4JM;IvCxEJ,2DAAA;IAYA,4BAAA;EVo8JF;EiDn4JM;IACE,aAAA;EjDq4JR;EiDl4JM;IACE,mDAAA;IACA,oBAAA;EjDo4JR;EiDl4JQ;IACE,yDAAA;IACA,oDAAA;EjDo4JV;AACF;AiB39JI;EgC8DA;IACE,mBAAA;EjDg6JJ;EiD75JM;IvCvDJ,6DAAA;IAZA,0BAAA;EVo+JF;EiD55JM;IvCxEJ,2DAAA;IAYA,4BAAA;EV49JF;EiD35JM;IACE,aAAA;EjD65JR;EiD15JM;IACE,mDAAA;IACA,oBAAA;EjD45JR;EiD15JQ;IACE,yDAAA;IACA,oDAAA;EjD45JV;AACF;AiD/4JA;EvChJI,gBAAA;AVkiKJ;AiD/4JE;EACE,mDAAA;AjDi5JJ;AiD/4JI;EACE,sBAAA;AjDi5JN;;AiDp4JE;EACE,sDAAA;EACA,+CAAA;EACA,6DAAA;EACA,4DAAA;EACA,gEAAA;EACA,6DAAA;EACA,iEAAA;EACA,yDAAA;EACA,0DAAA;EACA,oEAAA;AjDu4JJ;;AiDj5JE;EACE,wDAAA;EACA,iDAAA;EACA,+DAAA;EACA,4DAAA;EACA,kEAAA;EACA,6DAAA;EACA,mEAAA;EACA,2DAAA;EACA,4DAAA;EACA,sEAAA;AjDo5JJ;;AiD95JE;EACE,sDAAA;EACA,+CAAA;EACA,6DAAA;EACA,4DAAA;EACA,gEAAA;EACA,6DAAA;EACA,iEAAA;EACA,yDAAA;EACA,0DAAA;EACA,oEAAA;AjDi6JJ;;AiD36JE;EACE,mDAAA;EACA,4CAAA;EACA,0DAAA;EACA,4DAAA;EACA,6DAAA;EACA,6DAAA;EACA,8DAAA;EACA,sDAAA;EACA,uDAAA;EACA,iEAAA;AjD86JJ;;AiDx7JE;EACE,sDAAA;EACA,+CAAA;EACA,6DAAA;EACA,4DAAA;EACA,gEAAA;EACA,6DAAA;EACA,iEAAA;EACA,yDAAA;EACA,0DAAA;EACA,oEAAA;AjD27JJ;;AiDr8JE;EACE,qDAAA;EACA,8CAAA;EACA,4DAAA;EACA,4DAAA;EACA,+DAAA;EACA,6DAAA;EACA,gEAAA;EACA,wDAAA;EACA,yDAAA;EACA,mEAAA;AjDw8JJ;;AiDl9JE;EACE,oDAAA;EACA,6CAAA;EACA,2DAAA;EACA,4DAAA;EACA,8DAAA;EACA,6DAAA;EACA,+DAAA;EACA,uDAAA;EACA,wDAAA;EACA,kEAAA;AjDq9JJ;;AiD/9JE;EACE,mDAAA;EACA,4CAAA;EACA,0DAAA;EACA,4DAAA;EACA,6DAAA;EACA,6DAAA;EACA,8DAAA;EACA,sDAAA;EACA,uDAAA;EACA,iEAAA;AjDk+JJ;;AkD9pKA;EAEE,0BAAA;EACA,oVAAA;EACA,2BAAA;EACA,kCAAA;EACA,kEAAA;EACA,+BAAA;EACA,qCAAA;EACA,uEAAA;EAGA,uBAAA;EACA,U1CmpD2B;E0ClpD3B,W1CkpD2B;E0CjpD3B,sBAAA;EACA,gCAAA;EACA,wEAAA;EACA,SAAA;ExCJE,kBAAA;EwCMF,oCAAA;AlD8pKF;AkD3pKE;EACE,gCAAA;EACA,qBAAA;EACA,0CAAA;AlD6pKJ;AkD1pKE;EACE,UAAA;EACA,4CAAA;EACA,0CAAA;AlD4pKJ;AkDzpKE;EAEE,oBAAA;EACA,yBAAA;KAAA,sBAAA;UAAA,iBAAA;EACA,6CAAA;AlD0pKJ;;AkDlpKA;EAHE,wCAAA;AlDypKF;;AkDhpKI;EATF,wCAAA;AlD6pKF;;AmD9sKA;EAEE,uBAAA;EACA,6BAAA;EACA,4BAAA;EACA,wBAAA;EACA,2BAAA;E9CyRI,8BALI;E8ClRR,kBAAA;EACA,gDAAA;EACA,+CAAA;EACA,2DAAA;EACA,iDAAA;EACA,2CAAA;EACA,kDAAA;EACA,uDAAA;EACA,kEAAA;EAGA,gCAAA;EACA,eAAA;E9C2QI,oCALI;E8CpQR,4BAAA;EACA,oBAAA;EACA,oCAAA;EACA,4BAAA;EACA,uEAAA;EACA,sCAAA;EzCRE,4CAAA;AVutKJ;AmD5sKE;EACE,UAAA;AnD8sKJ;AmD3sKE;EACE,aAAA;AnD6sKJ;;AmDzsKA;EACE,uBAAA;EAEA,kBAAA;EACA,+BAAA;EACA,uBAAA;EAAA,kBAAA;EACA,eAAA;EACA,oBAAA;AnD2sKF;AmDzsKE;EACE,sCAAA;AnD2sKJ;;AmDvsKA;EACE,aAAA;EACA,mBAAA;EACA,4DAAA;EACA,mCAAA;EACA,2CAAA;EACA,4BAAA;EACA,qFAAA;EzChCE,0FAAA;EACA,2FAAA;AV2uKJ;AmDzsKE;EACE,oDAAA;EACA,sCAAA;AnD2sKJ;;AmDvsKA;EACE,kCAAA;EACA,qBAAA;AnD0sKF;;AoDxwKA;EAEE,uBAAA;EACA,uBAAA;EACA,wBAAA;EACA,yBAAA;EACA,kBAAA;EACA,gCAAA;EACA,2DAAA;EACA,+CAAA;EACA,oDAAA;EACA,8CAAA;EACA,2FAAA;EACA,iCAAA;EACA,iCAAA;EACA,oCAAA;EACA,sDAAA;EACA,sDAAA;EACA,iCAAA;EACA,6BAAA;EACA,sBAAA;EACA,sDAAA;EACA,sDAAA;EAGA,eAAA;EACA,MAAA;EACA,OAAA;EACA,+BAAA;EACA,aAAA;EACA,WAAA;EACA,YAAA;EACA,kBAAA;EACA,gBAAA;EAGA,UAAA;ApDswKF;;AoD/vKA;EACE,kBAAA;EACA,WAAA;EACA,8BAAA;EAEA,oBAAA;ApDiwKF;AoD9vKE;E3B5CI,mC2B6CF;EACA,8B5Cg8CgC;ARg0HpC;AyB1yKM;E2BwCJ;I3BvCM,gBAAA;EzB6yKN;AACF;AoDnwKE;EACE,e5C87CgC;ARu0HpC;AoDjwKE;EACE,sB5C27CgC;ARw0HpC;;AoD/vKA;EACE,+CAAA;ApDkwKF;AoDhwKE;EACE,gBAAA;EACA,gBAAA;ApDkwKJ;AoD/vKE;EACE,gBAAA;ApDiwKJ;;AoD7vKA;EACE,aAAA;EACA,mBAAA;EACA,mDAAA;ApDgwKF;;AoD5vKA;EACE,kBAAA;EACA,aAAA;EACA,sBAAA;EACA,WAAA;EAEA,4BAAA;EACA,oBAAA;EACA,oCAAA;EACA,4BAAA;EACA,uEAAA;E1CrFE,4CAAA;E0CyFF,UAAA;ApD4vKF;;AoDxvKA;EAEE,0BAAA;EACA,sBAAA;EACA,0BAAA;EClHA,eAAA;EACA,MAAA;EACA,OAAA;EACA,kCDkH0B;ECjH1B,YAAA;EACA,aAAA;EACA,uCD+G4D;ApD8vK9D;AqD12KE;EAAS,UAAA;ArD62KX;AqD52KE;EAAS,mCD2GiF;ApDowK5F;;AoD/vKA;EACE,aAAA;EACA,cAAA;EACA,mBAAA;EACA,8BAAA;EACA,uCAAA;EACA,4FAAA;E1CtGE,2DAAA;EACA,4DAAA;AVy2KJ;AoDjwKE;EACE,kGAAA;EACA,sJAAA;ApDmwKJ;;AoD9vKA;EACE,gBAAA;EACA,8CAAA;ApDiwKF;;AoD5vKA;EACE,kBAAA;EAGA,cAAA;EACA,gCAAA;ApD6vKF;;AoDzvKA;EACE,aAAA;EACA,cAAA;EACA,eAAA;EACA,mBAAA;EACA,yBAAA;EACA,yEAAA;EACA,2CAAA;EACA,yFAAA;E1C1HE,+DAAA;EACA,8DAAA;AVu3KJ;AoDxvKE;EACE,8CAAA;ApD0vKJ;;AiBt2KI;EmCkHF;IACE,0BAAA;IACA,2CAAA;EpDwvKF;EoDpvKA;IACE,gCAAA;IACA,kBAAA;IACA,iBAAA;EpDsvKF;EoDnvKA;IACE,uBAAA;EpDqvKF;AACF;AiBr3KI;EmCoIF;;IAEE,uBAAA;EpDovKF;AACF;AiB33KI;EmC2IF;IACE,wBAAA;EpDmvKF;AACF;AoD1uKI;EACE,YAAA;EACA,eAAA;EACA,YAAA;EACA,SAAA;ApD4uKN;AoD1uKM;EACE,YAAA;EACA,SAAA;E1C1MJ,gBAAA;AVu7KJ;AoDzuKM;;E1C9MF,gBAAA;AV27KJ;AoDxuKM;EACE,gBAAA;ApD0uKR;;AiBr4KI;EmCyIA;IACE,YAAA;IACA,eAAA;IACA,YAAA;IACA,SAAA;EpDgwKJ;EoD9vKI;IACE,YAAA;IACA,SAAA;I1C1MJ,gBAAA;EV28KF;EoD7vKI;;I1C9MF,gBAAA;EV+8KF;EoD5vKI;IACE,gBAAA;EpD8vKN;AACF;AiB15KI;EmCyIA;IACE,YAAA;IACA,eAAA;IACA,YAAA;IACA,SAAA;EpDoxKJ;EoDlxKI;IACE,YAAA;IACA,SAAA;I1C1MJ,gBAAA;EV+9KF;EoDjxKI;;I1C9MF,gBAAA;EVm+KF;EoDhxKI;IACE,gBAAA;EpDkxKN;AACF;AiB96KI;EmCyIA;IACE,YAAA;IACA,eAAA;IACA,YAAA;IACA,SAAA;EpDwyKJ;EoDtyKI;IACE,YAAA;IACA,SAAA;I1C1MJ,gBAAA;EVm/KF;EoDryKI;;I1C9MF,gBAAA;EVu/KF;EoDpyKI;IACE,gBAAA;EpDsyKN;AACF;AiBl8KI;EmCyIA;IACE,YAAA;IACA,eAAA;IACA,YAAA;IACA,SAAA;EpD4zKJ;EoD1zKI;IACE,YAAA;IACA,SAAA;I1C1MJ,gBAAA;EVugLF;EoDzzKI;;I1C9MF,gBAAA;EV2gLF;EoDxzKI;IACE,gBAAA;EpD0zKN;AACF;AiBt9KI;EmCyIA;IACE,YAAA;IACA,eAAA;IACA,YAAA;IACA,SAAA;EpDg1KJ;EoD90KI;IACE,YAAA;IACA,SAAA;I1C1MJ,gBAAA;EV2hLF;EoD70KI;;I1C9MF,gBAAA;EV+hLF;EoD50KI;IACE,gBAAA;EpD80KN;AACF;AsDrjLA;EAEE,yBAAA;EACA,6BAAA;EACA,8BAAA;EACA,+BAAA;EACA,qBAAA;EjDwRI,mCALI;EiDjRR,qCAAA;EACA,yCAAA;EACA,mDAAA;EACA,yBAAA;EACA,gCAAA;EACA,iCAAA;EAGA,iCAAA;EACA,cAAA;EACA,gCAAA;EClBA,iC9CeiB;E8CbjB,kBAAA;EACA,gB/CwmB4B;E+CvmB5B,gB/C+mB4B;E+C9mB5B,gBAAA;EACA,iBAAA;EACA,qBAAA;EACA,iBAAA;EACA,oBAAA;EACA,sBAAA;EACA,kBAAA;EACA,mBAAA;EACA,oBAAA;EACA,gBAAA;ElDgRI,sCALI;EiDhQR,qBAAA;EACA,UAAA;AtD6jLF;AsD3jLE;EAAS,kCAAA;AtD8jLX;AsD5jLE;EACE,cAAA;EACA,oCAAA;EACA,sCAAA;AtD8jLJ;AsD5jLI;EACE,kBAAA;EACA,WAAA;EACA,yBAAA;EACA,mBAAA;AtD8jLN;;AsDzjLA;EACE,iDAAA;AtD4jLF;AsD1jLE;EACE,SAAA;EACA,wFAAA;EACA,sCAAA;AtD4jLJ;;AsDxjLA,qBAAA;AACA;EACE,+CAAA;EACA,qCAAA;EACA,qCAAA;AtD2jLF;AsDzjLE;EACE,WAAA;EACA,kIAAA;EACA,wCAAA;AtD2jLJ;;AsDvjLA,mBAAA;AAEA;EACE,8CAAA;AtDyjLF;AsDvjLE;EACE,YAAA;EACA,wFAAA;EACA,yCAAA;AtDyjLJ;;AsDrjLA,qBAAA;AACA;EACE,gDAAA;EACA,qCAAA;EACA,qCAAA;AtDwjLF;AsDtjLE;EACE,UAAA;EACA,kIAAA;EACA,uCAAA;AtDwjLJ;;AsDpjLA,mBAAA;AAkBA;EACE,sCAAA;EACA,gEAAA;EACA,8BAAA;EACA,kBAAA;EACA,sCAAA;E5CjGE,8CAAA;AVwoLJ;;AwD3pLA;EAEE,yBAAA;EACA,6BAAA;EnD4RI,mCALI;EmDrRR,kCAAA;EACA,iDAAA;EACA,6DAAA;EACA,sDAAA;EACA,2FAAA;EACA,6CAAA;EACA,mCAAA;EACA,qCAAA;EnDmRI,uCALI;EmD5QR,kCAAA;EACA,8CAAA;EACA,iCAAA;EACA,iCAAA;EACA,6CAAA;EACA,8BAAA;EACA,iCAAA;EACA,yDAAA;EAGA,iCAAA;EACA,cAAA;EACA,sCAAA;EDzBA,iC9CeiB;E8CbjB,kBAAA;EACA,gB/CwmB4B;E+CvmB5B,gB/C+mB4B;E+C9mB5B,gBAAA;EACA,iBAAA;EACA,qBAAA;EACA,iBAAA;EACA,oBAAA;EACA,sBAAA;EACA,kBAAA;EACA,mBAAA;EACA,oBAAA;EACA,gBAAA;ElDgRI,sCALI;EmD1PR,qBAAA;EACA,sCAAA;EACA,4BAAA;EACA,2EAAA;E9ChBE,8CAAA;AVsrLJ;AwDlqLE;EACE,cAAA;EACA,oCAAA;EACA,sCAAA;AxDoqLJ;AwDlqLI;EAEE,kBAAA;EACA,cAAA;EACA,WAAA;EACA,yBAAA;EACA,mBAAA;EACA,eAAA;AxDmqLN;;AwD7pLE;EACE,oFAAA;AxDgqLJ;AwD9pLI;EAEE,wFAAA;AxD+pLN;AwD5pLI;EACE,SAAA;EACA,gDAAA;AxD8pLN;AwD3pLI;EACE,sCAAA;EACA,sCAAA;AxD6pLN;;AwDxpLA,qBAAA;AAEE;EACE,kFAAA;EACA,qCAAA;EACA,qCAAA;AxD0pLJ;AwDxpLI;EAEE,kIAAA;AxDypLN;AwDtpLI;EACE,OAAA;EACA,kDAAA;AxDwpLN;AwDrpLI;EACE,oCAAA;EACA,wCAAA;AxDupLN;;AwDlpLA,mBAAA;AAGE;EACE,iFAAA;AxDmpLJ;AwDjpLI;EAEE,wFAAA;AxDkpLN;AwD/oLI;EACE,MAAA;EACA,mDAAA;AxDipLN;AwD9oLI;EACE,mCAAA;EACA,yCAAA;AxDgpLN;AwD3oLE;EACE,kBAAA;EACA,MAAA;EACA,SAAA;EACA,cAAA;EACA,oCAAA;EACA,uDAAA;EACA,WAAA;EACA,+EAAA;AxD6oLJ;;AwDzoLA,qBAAA;AAEE;EACE,mFAAA;EACA,qCAAA;EACA,qCAAA;AxD2oLJ;AwDzoLI;EAEE,kIAAA;AxD0oLN;AwDvoLI;EACE,QAAA;EACA,iDAAA;AxDyoLN;AwDtoLI;EACE,qCAAA;EACA,uCAAA;AxDwoLN;;AwDnoLA,mBAAA;AAkBA;EACE,8EAAA;EACA,gBAAA;EnD2GI,6CALI;EmDpGR,qCAAA;EACA,6CAAA;EACA,kFAAA;E9C5JE,6DAAA;EACA,8DAAA;AVkxLJ;AwDpnLE;EACE,aAAA;AxDsnLJ;;AwDlnLA;EACE,0EAAA;EACA,mCAAA;AxDqnLF;;AyD1yLA;EACE,kBAAA;AzD6yLF;;AyD1yLA;EACE,mBAAA;AzD6yLF;;AyD1yLA;EACE,kBAAA;EACA,WAAA;EACA,gBAAA;AzD6yLF;A0Dn0LE;EACE,cAAA;EACA,WAAA;EACA,WAAA;A1Dq0LJ;;AyD9yLA;EACE,kBAAA;EACA,aAAA;EACA,WAAA;EACA,WAAA;EACA,mBAAA;EACA,2BAAA;EhClBI,sCgCmBJ;AzDizLF;AyBh0LM;EgCQN;IhCPQ,gBAAA;EzBm0LN;AACF;;AyDnzLA;;;EAGE,cAAA;AzDszLF;;AyDnzLA;;EAEE,2BAAA;AzDszLF;;AyDnzLA;;EAEE,4BAAA;AzDszLF;;AyD7yLE;EACE,UAAA;EACA,4BAAA;EACA,eAAA;AzDgzLJ;AyD7yLE;;;EAGE,UAAA;EACA,UAAA;AzD+yLJ;AyD5yLE;;EAEE,UAAA;EACA,UAAA;EhC5DE,2BgC6DF;AzD8yLJ;AyBv2LM;EgCqDJ;;IhCpDM,gBAAA;EzB22LN;AACF;;AyD3yLA;;EAEE,kBAAA;EACA,MAAA;EACA,SAAA;EACA,UAAA;EAEA,aAAA;EACA,mBAAA;EACA,uBAAA;EACA,UjDghDmC;EiD/gDnC,UAAA;EACA,WjD1FS;EiD2FT,kBAAA;EACA,gBAAA;EACA,SAAA;EACA,YjD2gDmC;EiBjmD/B,8BgCuFJ;AzD6yLF;AyBh4LM;EgCkEN;;IhCjEQ,gBAAA;EzBo4LN;AACF;AyDhzLE;;;EAEE,WjDpGO;EiDqGP,qBAAA;EACA,UAAA;EACA,YjDmgDiC;ARgzIrC;;AyDhzLA;EACE,OAAA;AzDmzLF;;AyDhzLA;EACE,QAAA;AzDmzLF;;AyD9yLA;;EAEE,qBAAA;EACA,WjDogDmC;EiDngDnC,YjDmgDmC;EiDlgDnC,4BAAA;EACA,wBAAA;EACA,0BAAA;AzDizLF;;AyD9yLA;;;;;;;GAAA;AAQA;EACE,yQAAA;AzDizLF;;AyD/yLA;EACE,0QAAA;AzDkzLF;;AyD1yLA;EACE,kBAAA;EACA,QAAA;EACA,SAAA;EACA,OAAA;EACA,UAAA;EACA,aAAA;EACA,uBAAA;EACA,UAAA;EAEA,iBjD48CmC;EiD38CnC,mBAAA;EACA,gBjD08CmC;ARk2IrC;AyD1yLE;EACE,uBAAA;EACA,cAAA;EACA,WjD08CiC;EiDz8CjC,WjD08CiC;EiDz8CjC,UAAA;EACA,iBjD08CiC;EiDz8CjC,gBjDy8CiC;EiDx8CjC,mBAAA;EACA,eAAA;EACA,sBjD1KO;EiD2KP,4BAAA;EACA,SAAA;EAEA,kCAAA;EACA,qCAAA;EACA,YjDi8CiC;EiBzmD/B,6BgCyKF;AzD2yLJ;AyBh9LM;EgCoJJ;IhCnJM,gBAAA;EzBm9LN;AACF;AyD7yLE;EACE,UjD87CiC;ARi3IrC;;AyDtyLA;EACE,kBAAA;EACA,UAAA;EACA,ejDw7CmC;EiDv7CnC,SAAA;EACA,oBjDq7CmC;EiDp7CnC,uBjDo7CmC;EiDn7CnC,WjDrMS;EiDsMT,kBAAA;AzDyyLF;;AyDnyLE;;EAEE,gCjDy7CiC;AR62IrC;AyDnyLE;EACE,sBjDxMO;AR6+LX;AyDlyLE;EACE,WjD5MO;ARg/LX;;AyD9yLE;;;EAEE,gCjDy7CiC;ARy3IrC;AyD/yLE;EACE,sBjDxMO;ARy/LX;AyD9yLE;EACE,WjD5MO;AR4/LX;;A2D1gMA;;EAEE,qBAAA;EACA,8BAAA;EACA,gCAAA;EACA,gDAAA;EAEA,kBAAA;EACA,6FAAA;A3D4gMF;;A2DxgMA;EACE;IAAK,0CAAA;E3D4gML;AACF;A2DzgMA;EAEE,wBAAA;EACA,yBAAA;EACA,qCAAA;EACA,iCAAA;EACA,mCAAA;EACA,2CAAA;EAGA,yDAAA;EACA,+BAAA;A3DwgMF;;A2DrgMA;EAEE,wBAAA;EACA,yBAAA;EACA,gCAAA;A3DugMF;;A2D9/LA;EACE;IACE,mBAAA;E3DigMF;E2D//LA;IACE,UAAA;IACA,eAAA;E3DigMF;AACF;A2D7/LA;EAEE,wBAAA;EACA,yBAAA;EACA,qCAAA;EACA,mCAAA;EACA,yCAAA;EAGA,8BAAA;EACA,UAAA;A3D4/LF;;A2Dz/LA;EACE,wBAAA;EACA,yBAAA;A3D4/LF;;A2Dx/LE;EACE;;IAEE,kCAAA;E3D2/LJ;AACF;A4D3kMA;EAEE,2BAAA;EACA,2BAAA;EACA,2BAAA;EACA,8BAAA;EACA,8BAAA;EACA,0CAAA;EACA,oCAAA;EACA,mDAAA;EACA,+DAAA;EACA,kDAAA;EACA,qDAAA;EACA,qCAAA;A5D4kMF;;AiB/gMI;E2C5CF;IAEI,eAAA;IACA,SAAA;IACA,mCAAA;IACA,aAAA;IACA,sBAAA;IACA,eAAA;IACA,gCAAA;IACA,kBAAA;IACA,wCAAA;IACA,4BAAA;IACA,UAAA;InC5BA,0CmC8BA;E5D6jMJ;AACF;AyBxlMM;EmCYJ;InCXM,gBAAA;EzB2lMN;AACF;AiBriMI;E2C5BE;IACE,MAAA;IACA,OAAA;IACA,gCAAA;IACA,qFAAA;IACA,4BAAA;E5DokMN;E4DjkMI;IACE,MAAA;IACA,QAAA;IACA,gCAAA;IACA,oFAAA;IACA,2BAAA;E5DmkMN;E4DhkMI;IACE,MAAA;IACA,QAAA;IACA,OAAA;IACA,kCAAA;IACA,gBAAA;IACA,sFAAA;IACA,4BAAA;E5DkkMN;E4D/jMI;IACE,QAAA;IACA,OAAA;IACA,kCAAA;IACA,gBAAA;IACA,mFAAA;IACA,2BAAA;E5DikMN;E4D9jMI;IAEE,eAAA;E5D+jMN;E4D5jMI;IAGE,mBAAA;E5D4jMN;AACF;AiBzlMI;E2C/BF;IAiEM,2BAAA;IACA,8BAAA;IACA,wCAAA;E5D2jMN;E4DzjMM;IACE,aAAA;E5D2jMR;E4DxjMM;IACE,aAAA;IACA,YAAA;IACA,UAAA;IACA,mBAAA;IAEA,wCAAA;E5DyjMR;AACF;;AiB7lMI;E2C5CF;IAEI,eAAA;IACA,SAAA;IACA,mCAAA;IACA,aAAA;IACA,sBAAA;IACA,eAAA;IACA,gCAAA;IACA,kBAAA;IACA,wCAAA;IACA,4BAAA;IACA,UAAA;InC5BA,0CmC8BA;E5D2oMJ;AACF;AyBtqMM;EmCYJ;InCXM,gBAAA;EzByqMN;AACF;AiBnnMI;E2C5BE;IACE,MAAA;IACA,OAAA;IACA,gCAAA;IACA,qFAAA;IACA,4BAAA;E5DkpMN;E4D/oMI;IACE,MAAA;IACA,QAAA;IACA,gCAAA;IACA,oFAAA;IACA,2BAAA;E5DipMN;E4D9oMI;IACE,MAAA;IACA,QAAA;IACA,OAAA;IACA,kCAAA;IACA,gBAAA;IACA,sFAAA;IACA,4BAAA;E5DgpMN;E4D7oMI;IACE,QAAA;IACA,OAAA;IACA,kCAAA;IACA,gBAAA;IACA,mFAAA;IACA,2BAAA;E5D+oMN;E4D5oMI;IAEE,eAAA;E5D6oMN;E4D1oMI;IAGE,mBAAA;E5D0oMN;AACF;AiBvqMI;E2C/BF;IAiEM,2BAAA;IACA,8BAAA;IACA,wCAAA;E5DyoMN;E4DvoMM;IACE,aAAA;E5DyoMR;E4DtoMM;IACE,aAAA;IACA,YAAA;IACA,UAAA;IACA,mBAAA;IAEA,wCAAA;E5DuoMR;AACF;;AiB3qMI;E2C5CF;IAEI,eAAA;IACA,SAAA;IACA,mCAAA;IACA,aAAA;IACA,sBAAA;IACA,eAAA;IACA,gCAAA;IACA,kBAAA;IACA,wCAAA;IACA,4BAAA;IACA,UAAA;InC5BA,0CmC8BA;E5DytMJ;AACF;AyBpvMM;EmCYJ;InCXM,gBAAA;EzBuvMN;AACF;AiBjsMI;E2C5BE;IACE,MAAA;IACA,OAAA;IACA,gCAAA;IACA,qFAAA;IACA,4BAAA;E5DguMN;E4D7tMI;IACE,MAAA;IACA,QAAA;IACA,gCAAA;IACA,oFAAA;IACA,2BAAA;E5D+tMN;E4D5tMI;IACE,MAAA;IACA,QAAA;IACA,OAAA;IACA,kCAAA;IACA,gBAAA;IACA,sFAAA;IACA,4BAAA;E5D8tMN;E4D3tMI;IACE,QAAA;IACA,OAAA;IACA,kCAAA;IACA,gBAAA;IACA,mFAAA;IACA,2BAAA;E5D6tMN;E4D1tMI;IAEE,eAAA;E5D2tMN;E4DxtMI;IAGE,mBAAA;E5DwtMN;AACF;AiBrvMI;E2C/BF;IAiEM,2BAAA;IACA,8BAAA;IACA,wCAAA;E5DutMN;E4DrtMM;IACE,aAAA;E5DutMR;E4DptMM;IACE,aAAA;IACA,YAAA;IACA,UAAA;IACA,mBAAA;IAEA,wCAAA;E5DqtMR;AACF;;AiBzvMI;E2C5CF;IAEI,eAAA;IACA,SAAA;IACA,mCAAA;IACA,aAAA;IACA,sBAAA;IACA,eAAA;IACA,gCAAA;IACA,kBAAA;IACA,wCAAA;IACA,4BAAA;IACA,UAAA;InC5BA,0CmC8BA;E5DuyMJ;AACF;AyBl0MM;EmCYJ;InCXM,gBAAA;EzBq0MN;AACF;AiB/wMI;E2C5BE;IACE,MAAA;IACA,OAAA;IACA,gCAAA;IACA,qFAAA;IACA,4BAAA;E5D8yMN;E4D3yMI;IACE,MAAA;IACA,QAAA;IACA,gCAAA;IACA,oFAAA;IACA,2BAAA;E5D6yMN;E4D1yMI;IACE,MAAA;IACA,QAAA;IACA,OAAA;IACA,kCAAA;IACA,gBAAA;IACA,sFAAA;IACA,4BAAA;E5D4yMN;E4DzyMI;IACE,QAAA;IACA,OAAA;IACA,kCAAA;IACA,gBAAA;IACA,mFAAA;IACA,2BAAA;E5D2yMN;E4DxyMI;IAEE,eAAA;E5DyyMN;E4DtyMI;IAGE,mBAAA;E5DsyMN;AACF;AiBn0MI;E2C/BF;IAiEM,2BAAA;IACA,8BAAA;IACA,wCAAA;E5DqyMN;E4DnyMM;IACE,aAAA;E5DqyMR;E4DlyMM;IACE,aAAA;IACA,YAAA;IACA,UAAA;IACA,mBAAA;IAEA,wCAAA;E5DmyMR;AACF;;AiBv0MI;E2C5CF;IAEI,eAAA;IACA,SAAA;IACA,mCAAA;IACA,aAAA;IACA,sBAAA;IACA,eAAA;IACA,gCAAA;IACA,kBAAA;IACA,wCAAA;IACA,4BAAA;IACA,UAAA;InC5BA,0CmC8BA;E5Dq3MJ;AACF;AyBh5MM;EmCYJ;InCXM,gBAAA;EzBm5MN;AACF;AiB71MI;E2C5BE;IACE,MAAA;IACA,OAAA;IACA,gCAAA;IACA,qFAAA;IACA,4BAAA;E5D43MN;E4Dz3MI;IACE,MAAA;IACA,QAAA;IACA,gCAAA;IACA,oFAAA;IACA,2BAAA;E5D23MN;E4Dx3MI;IACE,MAAA;IACA,QAAA;IACA,OAAA;IACA,kCAAA;IACA,gBAAA;IACA,sFAAA;IACA,4BAAA;E5D03MN;E4Dv3MI;IACE,QAAA;IACA,OAAA;IACA,kCAAA;IACA,gBAAA;IACA,mFAAA;IACA,2BAAA;E5Dy3MN;E4Dt3MI;IAEE,eAAA;E5Du3MN;E4Dp3MI;IAGE,mBAAA;E5Do3MN;AACF;AiBj5MI;E2C/BF;IAiEM,2BAAA;IACA,8BAAA;IACA,wCAAA;E5Dm3MN;E4Dj3MM;IACE,aAAA;E5Dm3MR;E4Dh3MM;IACE,aAAA;IACA,YAAA;IACA,UAAA;IACA,mBAAA;IAEA,wCAAA;E5Di3MR;AACF;;A4Dj8ME;EAEI,eAAA;EACA,SAAA;EACA,mCAAA;EACA,aAAA;EACA,sBAAA;EACA,eAAA;EACA,gCAAA;EACA,kBAAA;EACA,wCAAA;EACA,4BAAA;EACA,UAAA;EnC5BA,0CmC8BA;A5Dk8MN;AyB59MM;EmCYJ;InCXM,gBAAA;EzB+9MN;AACF;A4Dr8MM;EACE,MAAA;EACA,OAAA;EACA,gCAAA;EACA,qFAAA;EACA,4BAAA;A5Du8MR;A4Dp8MM;EACE,MAAA;EACA,QAAA;EACA,gCAAA;EACA,oFAAA;EACA,2BAAA;A5Ds8MR;A4Dn8MM;EACE,MAAA;EACA,QAAA;EACA,OAAA;EACA,kCAAA;EACA,gBAAA;EACA,sFAAA;EACA,4BAAA;A5Dq8MR;A4Dl8MM;EACE,QAAA;EACA,OAAA;EACA,kCAAA;EACA,gBAAA;EACA,mFAAA;EACA,2BAAA;A5Do8MR;A4Dj8MM;EAEE,eAAA;A5Dk8MR;A4D/7MM;EAGE,mBAAA;A5D+7MR;;A4Dp6MA;EPpHE,eAAA;EACA,MAAA;EACA,OAAA;EACA,a7C0mCkC;E6CzmClC,YAAA;EACA,aAAA;EACA,sB7CUS;ARkhNX;AqDzhNE;EAAS,UAAA;ArD4hNX;AqD3hNE;EAAS,Y7Ci+CyB;AR6jKpC;;A4Dh7MA;EACE,aAAA;EACA,mBAAA;EACA,8BAAA;EACA,oEAAA;A5Dm7MF;A4Dj7ME;EACE,4FAAA;EACA,sDAAA;EACA,wDAAA;EACA,yDAAA;A5Dm7MJ;;A4D/6MA;EACE,gBAAA;EACA,kDAAA;A5Dk7MF;;A4D/6MA;EACE,YAAA;EACA,oEAAA;EACA,gBAAA;A5Dk7MF;;A6DlkNA;EACE,qBAAA;EACA,eAAA;EACA,sBAAA;EACA,YAAA;EACA,8BAAA;EACA,YrDgzCkC;ARqxKpC;A6DnkNE;EACE,qBAAA;EACA,WAAA;A7DqkNJ;;A6DhkNA;EACE,iBAAA;A7DmkNF;;A6DhkNA;EACE,iBAAA;A7DmkNF;;A6DhkNA;EACE,iBAAA;A7DmkNF;;A6D9jNE;EACE,mDAAA;A7DikNJ;;A6D7jNA;EACE;IACE,YrDmxCgC;ER6yKlC;AACF;A6D7jNA;EACE,uFAAA;UAAA,+EAAA;EACA,4BAAA;UAAA,oBAAA;EACA,8CAAA;A7D+jNF;;A6D5jNA;EACE;IACE,+BAAA;YAAA,uBAAA;E7D+jNF;AACF;A0D9mNE;EACE,cAAA;EACA,WAAA;EACA,WAAA;A1DgnNJ;;A8DnnNE;EACE,sBAAA;EACA,iFAAA;A9DsnNJ;;A8DxnNE;EACE,sBAAA;EACA,mFAAA;A9D2nNJ;;A8D7nNE;EACE,sBAAA;EACA,iFAAA;A9DgoNJ;;A8DloNE;EACE,sBAAA;EACA,8EAAA;A9DqoNJ;;A8DvoNE;EACE,sBAAA;EACA,iFAAA;A9D0oNJ;;A8D5oNE;EACE,sBAAA;EACA,gFAAA;A9D+oNJ;;A8DjpNE;EACE,sBAAA;EACA,+EAAA;A9DopNJ;;A8DtpNE;EACE,sBAAA;EACA,8EAAA;A9DypNJ;;A+D3pNE;EACE,wEAAA;EACA,kGAAA;A/D8pNJ;A+D3pNM;EAGE,8DAAA;EACA,wFAAA;A/D2pNR;;A+DpqNE;EACE,0EAAA;EACA,oGAAA;A/DuqNJ;A+DpqNM;EAGE,+DAAA;EACA,yFAAA;A/DoqNR;;A+D7qNE;EACE,wEAAA;EACA,kGAAA;A/DgrNJ;A+D7qNM;EAGE,+DAAA;EACA,yFAAA;A/D6qNR;;A+DtrNE;EACE,qEAAA;EACA,+FAAA;A/DyrNJ;A+DtrNM;EAGE,+DAAA;EACA,yFAAA;A/DsrNR;;A+D/rNE;EACE,wEAAA;EACA,kGAAA;A/DksNJ;A+D/rNM;EAGE,+DAAA;EACA,yFAAA;A/D+rNR;;A+DxsNE;EACE,uEAAA;EACA,iGAAA;A/D2sNJ;A+DxsNM;EAGE,8DAAA;EACA,wFAAA;A/DwsNR;;A+DjtNE;EACE,sEAAA;EACA,gGAAA;A/DotNJ;A+DjtNM;EAGE,gEAAA;EACA,0FAAA;A/DitNR;;A+D1tNE;EACE,qEAAA;EACA,+FAAA;A/D6tNJ;A+D1tNM;EAGE,0DAAA;EACA,oFAAA;A/D0tNR;;A+DntNA;EACE,+EAAA;EACA,yGAAA;A/DstNF;A+DntNI;EAEE,kFAAA;EACA,4GAAA;A/DotNN;;AgE9uNA;EACE,UAAA;EAEA,kJAAA;AhEgvNF;;AiEnvNA;EACE,oBAAA;EACA,azD6c4B;EyD5c5B,mBAAA;EACA,kFAAA;EACA,6BzD2c4B;EyD1c5B,2BAAA;AjEsvNF;AiEpvNE;EACE,cAAA;EACA,UzDuc0B;EyDtc1B,WzDsc0B;EyDrc1B,kBAAA;ExCIE,sCwCHF;AjEsvNJ;AyB/uNM;EwCZJ;IxCaM,gBAAA;EzBkvNN;AACF;;AiEpvNI;EACE,mEAAA;AjEuvNN;;AkE1wNA;EACE,kBAAA;EACA,WAAA;AlE6wNF;AkE3wNE;EACE,cAAA;EACA,mCAAA;EACA,WAAA;AlE6wNJ;AkE1wNE;EACE,kBAAA;EACA,MAAA;EACA,OAAA;EACA,WAAA;EACA,YAAA;AlE4wNJ;;AkEvwNE;EACE,uBAAA;AlE0wNJ;;AkE3wNE;EACE,sBAAA;AlE8wNJ;;AkE/wNE;EACE,yBAAA;AlEkxNJ;;AkEnxNE;EACE,iCAAA;AlEsxNJ;;AmE3yNA;EACE,eAAA;EACA,MAAA;EACA,QAAA;EACA,OAAA;EACA,a3DumCkC;ARusLpC;;AmE3yNA;EACE,eAAA;EACA,QAAA;EACA,SAAA;EACA,OAAA;EACA,a3D+lCkC;AR+sLpC;;AmEtyNI;EACE,gBAAA;EACA,MAAA;EACA,a3DmlC8B;ARstLpC;;AmEtyNI;EACE,gBAAA;EACA,SAAA;EACA,a3D6kC8B;AR4tLpC;;AiB1wNI;EkDxCA;IACE,gBAAA;IACA,MAAA;IACA,a3DmlC8B;ERmuLlC;EmEnzNE;IACE,gBAAA;IACA,SAAA;IACA,a3D6kC8B;ERwuLlC;AACF;AiBvxNI;EkDxCA;IACE,gBAAA;IACA,MAAA;IACA,a3DmlC8B;ER+uLlC;EmE/zNE;IACE,gBAAA;IACA,SAAA;IACA,a3D6kC8B;ERovLlC;AACF;AiBnyNI;EkDxCA;IACE,gBAAA;IACA,MAAA;IACA,a3DmlC8B;ER2vLlC;EmE30NE;IACE,gBAAA;IACA,SAAA;IACA,a3D6kC8B;ERgwLlC;AACF;AiB/yNI;EkDxCA;IACE,gBAAA;IACA,MAAA;IACA,a3DmlC8B;ERuwLlC;EmEv1NE;IACE,gBAAA;IACA,SAAA;IACA,a3D6kC8B;ER4wLlC;AACF;AiB3zNI;EkDxCA;IACE,gBAAA;IACA,MAAA;IACA,a3DmlC8B;ERmxLlC;EmEn2NE;IACE,gBAAA;IACA,SAAA;IACA,a3D6kC8B;ERwxLlC;AACF;AoEr4NA;EACE,aAAA;EACA,mBAAA;EACA,mBAAA;EACA,mBAAA;ApEu4NF;;AoEp4NA;EACE,aAAA;EACA,cAAA;EACA,sBAAA;EACA,mBAAA;ApEu4NF;;AqE/4NA;;ECIE,qBAAA;EACA,sBAAA;EACA,qBAAA;EACA,uBAAA;EACA,2BAAA;EACA,iCAAA;EACA,8BAAA;EACA,oBAAA;AtEg5NF;AsE74NE;;EACE,6BAAA;AtEg5NJ;;AuE95NE;EACE,kBAAA;EACA,MAAA;EACA,QAAA;EACA,SAAA;EACA,OAAA;EACA,U/DgcsC;E+D/btC,WAAA;AvEi6NJ;;AwEz6NA;ECAE,gBAAA;EACA,uBAAA;EACA,mBAAA;AzE66NF;;A0En7NA;EACE,qBAAA;EACA,mBAAA;EACA,6BlEisB4B;EkEhsB5B,eAAA;EACA,8BAAA;EACA,alE2rB4B;AR2vM9B;;A2E13NQ;EAOI,mCAAA;A3Eu3NZ;;A2E93NQ;EAOI,8BAAA;A3E23NZ;;A2El4NQ;EAOI,iCAAA;A3E+3NZ;;A2Et4NQ;EAOI,iCAAA;A3Em4NZ;;A2E14NQ;EAOI,sCAAA;A3Eu4NZ;;A2E94NQ;EAOI,mCAAA;A3E24NZ;;A2El5NQ;EAOI,sBAAA;A3E+4NZ;;A2Et5NQ;EAOI,uBAAA;A3Em5NZ;;A2E15NQ;EAOI,sBAAA;A3Eu5NZ;;A2E95NQ;EAOI,iCAAA;KAAA,8BAAA;A3E25NZ;;A2El6NQ;EAOI,+BAAA;KAAA,4BAAA;A3E+5NZ;;A2Et6NQ;EAOI,8BAAA;KAAA,2BAAA;A3Em6NZ;;A2E16NQ;EAOI,oCAAA;KAAA,iCAAA;A3Eu6NZ;;A2E96NQ;EAOI,8BAAA;KAAA,2BAAA;A3E26NZ;;A2El7NQ;EAOI,qBAAA;A3E+6NZ;;A2Et7NQ;EAOI,wBAAA;A3Em7NZ;;A2E17NQ;EAOI,uBAAA;A3Eu7NZ;;A2E97NQ;EAOI,wBAAA;A3E27NZ;;A2El8NQ;EAOI,qBAAA;A3E+7NZ;;A2Et8NQ;EAOI,yBAAA;A3Em8NZ;;A2E18NQ;EAOI,2BAAA;A3Eu8NZ;;A2E98NQ;EAOI,4BAAA;A3E28NZ;;A2El9NQ;EAOI,2BAAA;A3E+8NZ;;A2Et9NQ;EAOI,2BAAA;A3Em9NZ;;A2E19NQ;EAOI,6BAAA;A3Eu9NZ;;A2E99NQ;EAOI,8BAAA;A3E29NZ;;A2El+NQ;EAOI,6BAAA;A3E+9NZ;;A2Et+NQ;EAOI,2BAAA;A3Em+NZ;;A2E1+NQ;EAOI,6BAAA;A3Eu+NZ;;A2E9+NQ;EAOI,8BAAA;A3E2+NZ;;A2El/NQ;EAOI,6BAAA;A3E++NZ;;A2Et/NQ;EAOI,0BAAA;A3Em/NZ;;A2E1/NQ;EAOI,gCAAA;A3Eu/NZ;;A2E9/NQ;EAOI,yBAAA;A3E2/NZ;;A2ElgOQ;EAOI,wBAAA;A3E+/NZ;;A2EtgOQ;EAOI,+BAAA;A3EmgOZ;;A2E1gOQ;EAOI,yBAAA;A3EugOZ;;A2E9gOQ;EAOI,6BAAA;A3E2gOZ;;A2ElhOQ;EAOI,8BAAA;A3E+gOZ;;A2EthOQ;EAOI,wBAAA;A3EmhOZ;;A2E1hOQ;EAOI,+BAAA;A3EuhOZ;;A2E9hOQ;EAOI,wBAAA;A3E2hOZ;;A2EliOQ;EAOI,2CAAA;A3E+hOZ;;A2EtiOQ;EAOI,8CAAA;A3EmiOZ;;A2E1iOQ;EAOI,8CAAA;A3EuiOZ;;A2E9iOQ;EAOI,2BAAA;A3E2iOZ;;A2E5jOQ;EACE,gFAAA;A3E+jOV;;A2EhkOQ;EACE,kFAAA;A3EmkOV;;A2EpkOQ;EACE,gFAAA;A3EukOV;;A2ExkOQ;EACE,6EAAA;A3E2kOV;;A2E5kOQ;EACE,gFAAA;A3E+kOV;;A2EhlOQ;EACE,+EAAA;A3EmlOV;;A2EplOQ;EACE,8EAAA;A3EulOV;;A2ExlOQ;EACE,6EAAA;A3E2lOV;;A2EllOQ;EAOI,2BAAA;A3E+kOZ;;A2EtlOQ;EAOI,6BAAA;A3EmlOZ;;A2E1lOQ;EAOI,6BAAA;A3EulOZ;;A2E9lOQ;EAOI,0BAAA;A3E2lOZ;;A2ElmOQ;EAOI,2BAAA;A3E+lOZ;;A2EtmOQ;EAOI,iBAAA;A3EmmOZ;;A2E1mOQ;EAOI,mBAAA;A3EumOZ;;A2E9mOQ;EAOI,oBAAA;A3E2mOZ;;A2ElnOQ;EAOI,oBAAA;A3E+mOZ;;A2EtnOQ;EAOI,sBAAA;A3EmnOZ;;A2E1nOQ;EAOI,uBAAA;A3EunOZ;;A2E9nOQ;EAOI,kBAAA;A3E2nOZ;;A2EloOQ;EAOI,oBAAA;A3E+nOZ;;A2EtoOQ;EAOI,qBAAA;A3EmoOZ;;A2E1oOQ;EAOI,mBAAA;A3EuoOZ;;A2E9oOQ;EAOI,qBAAA;A3E2oOZ;;A2ElpOQ;EAOI,sBAAA;A3E+oOZ;;A2EtpOQ;EAOI,2CAAA;A3EmpOZ;;A2E1pOQ;EAOI,sCAAA;A3EupOZ;;A2E9pOQ;EAOI,sCAAA;A3E2pOZ;;A2ElqOQ;EAOI,uFAAA;A3E+pOZ;;A2EtqOQ;EAOI,oBAAA;A3EmqOZ;;A2E1qOQ;EAOI,2FAAA;A3EuqOZ;;A2E9qOQ;EAOI,wBAAA;A3E2qOZ;;A2ElrOQ;EAOI,6FAAA;A3E+qOZ;;A2EtrOQ;EAOI,0BAAA;A3EmrOZ;;A2E1rOQ;EAOI,8FAAA;A3EurOZ;;A2E9rOQ;EAOI,2BAAA;A3E2rOZ;;A2ElsOQ;EAOI,4FAAA;A3E+rOZ;;A2EtsOQ;EAOI,yBAAA;A3EmsOZ;;A2E1sOQ;EAIQ,sBAAA;EAGJ,8EAAA;A3EwsOZ;;A2E/sOQ;EAIQ,sBAAA;EAGJ,gFAAA;A3E6sOZ;;A2EptOQ;EAIQ,sBAAA;EAGJ,8EAAA;A3EktOZ;;A2EztOQ;EAIQ,sBAAA;EAGJ,2EAAA;A3EutOZ;;A2E9tOQ;EAIQ,sBAAA;EAGJ,8EAAA;A3E4tOZ;;A2EnuOQ;EAIQ,sBAAA;EAGJ,6EAAA;A3EiuOZ;;A2ExuOQ;EAIQ,sBAAA;EAGJ,4EAAA;A3EsuOZ;;A2E7uOQ;EAIQ,sBAAA;EAGJ,2EAAA;A3E2uOZ;;A2ElvOQ;EAIQ,sBAAA;EAGJ,4EAAA;A3EgvOZ;;A2EvvOQ;EAIQ,sBAAA;EAGJ,4EAAA;A3EqvOZ;;A2E5vOQ;EAOI,wDAAA;A3EyvOZ;;A2EhwOQ;EAOI,0DAAA;A3E6vOZ;;A2EpwOQ;EAOI,wDAAA;A3EiwOZ;;A2ExwOQ;EAOI,qDAAA;A3EqwOZ;;A2E5wOQ;EAOI,wDAAA;A3EywOZ;;A2EhxOQ;EAOI,uDAAA;A3E6wOZ;;A2EpxOQ;EAOI,sDAAA;A3EixOZ;;A2ExxOQ;EAOI,qDAAA;A3EqxOZ;;A2E5xOQ;EAOI,4BAAA;A3EyxOZ;;A2EhyOQ;EAOI,4BAAA;A3E6xOZ;;A2EpyOQ;EAOI,4BAAA;A3EiyOZ;;A2ExyOQ;EAOI,4BAAA;A3EqyOZ;;A2E5yOQ;EAOI,4BAAA;A3EyyOZ;;A2E1zOQ;EACE,wBAAA;A3E6zOV;;A2E9zOQ;EACE,yBAAA;A3Ei0OV;;A2El0OQ;EACE,wBAAA;A3Eq0OV;;A2Et0OQ;EACE,yBAAA;A3Ey0OV;;A2E10OQ;EACE,sBAAA;A3E60OV;;A2Ep0OQ;EAOI,qBAAA;A3Ei0OZ;;A2Ex0OQ;EAOI,qBAAA;A3Eq0OZ;;A2E50OQ;EAOI,qBAAA;A3Ey0OZ;;A2Eh1OQ;EAOI,sBAAA;A3E60OZ;;A2Ep1OQ;EAOI,sBAAA;A3Ei1OZ;;A2Ex1OQ;EAOI,0BAAA;A3Eq1OZ;;A2E51OQ;EAOI,uBAAA;A3Ey1OZ;;A2Eh2OQ;EAOI,2BAAA;A3E61OZ;;A2Ep2OQ;EAOI,sBAAA;A3Ei2OZ;;A2Ex2OQ;EAOI,sBAAA;A3Eq2OZ;;A2E52OQ;EAOI,sBAAA;A3Ey2OZ;;A2Eh3OQ;EAOI,uBAAA;A3E62OZ;;A2Ep3OQ;EAOI,uBAAA;A3Ei3OZ;;A2Ex3OQ;EAOI,2BAAA;A3Eq3OZ;;A2E53OQ;EAOI,wBAAA;A3Ey3OZ;;A2Eh4OQ;EAOI,4BAAA;A3E63OZ;;A2Ep4OQ;EAOI,yBAAA;A3Ei4OZ;;A2Ex4OQ;EAOI,8BAAA;A3Eq4OZ;;A2E54OQ;EAOI,iCAAA;A3Ey4OZ;;A2Eh5OQ;EAOI,sCAAA;A3E64OZ;;A2Ep5OQ;EAOI,yCAAA;A3Ei5OZ;;A2Ex5OQ;EAOI,uBAAA;A3Eq5OZ;;A2E55OQ;EAOI,uBAAA;A3Ey5OZ;;A2Eh6OQ;EAOI,yBAAA;A3E65OZ;;A2Ep6OQ;EAOI,yBAAA;A3Ei6OZ;;A2Ex6OQ;EAOI,0BAAA;A3Eq6OZ;;A2E56OQ;EAOI,4BAAA;A3Ey6OZ;;A2Eh7OQ;EAOI,kCAAA;A3E66OZ;;A2Ep7OQ;EAOI,sCAAA;A3Ei7OZ;;A2Ex7OQ;EAOI,oCAAA;A3Eq7OZ;;A2E57OQ;EAOI,kCAAA;A3Ey7OZ;;A2Eh8OQ;EAOI,yCAAA;A3E67OZ;;A2Ep8OQ;EAOI,wC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AOI,wBAAA;E3Ek2RV;E2Ez2RM;IAOI,yBAAA;E3Eq2RV;E2E52RM;IAOI,8BAAA;E3Ew2RV;E2E/2RM;IAOI,iCAAA;E3E22RV;E2El3RM;IAOI,sCAAA;E3E82RV;E2Er3RM;IAOI,yCAAA;E3Ei3RV;E2Ex3RM;IAOI,uBAAA;E3Eo3RV;E2E33RM;IAOI,uBAAA;E3Eu3RV;E2E93RM;IAOI,yBAAA;E3E03RV;E2Ej4RM;IAOI,yBAAA;E3E63RV;E2Ep4RM;IAOI,0BAAA;E3Eg4RV;E2Ev4RM;IAOI,4BAAA;E3Em4RV;E2E14RM;IAOI,kCAAA;E3Es4RV;E2E74RM;IAOI,sCAAA;E3Ey4RV;E2Eh5RM;IAOI,oCAAA;E3E44RV;E2En5RM;IAOI,kCAAA;E3E+4RV;E2Et5RM;IAOI,yCAAA;E3Ek5RV;E2Ez5RM;IAOI,wCAAA;E3Eq5RV;E2E55RM;IAOI,wCAAA;E3Ew5RV;E2E/5RM;IAOI,kCAAA;E3E25RV;E2El6RM;IAOI,gCAAA;E3E85RV;E2Er6RM;IAOI,8BAAA;E3Ei6RV;E2Ex6RM;IAOI,gCAAA;E3Eo6RV;E2E36RM;IAOI,+BAAA;E3Eu6RV;E2E96RM;IAOI,oCAAA;E3E06RV;E2Ej7RM;IAOI,kCAAA;E3E66RV;E2Ep7RM;IAOI,gCAAA;E3Eg7RV;E2Ev7RM;IAOI,uCAAA;E3Em7RV;E2E17RM;IAOI,sCAAA;E3Es7RV;E2E77RM;IAOI,iCAAA;E3Ey7RV;E2Eh8RM;IAOI,2BAAA;E3E47RV;E2En8RM;IAOI,iCAAA;E3E+7RV;E2Et8RM;IAOI,+BAAA;E3Ek8RV;E2Ez8RM;IAOI,6BAAA;E3Eq8RV;E2E58RM;IAOI,+BAAA;E3Ew8RV;E2E/8RM;IAOI,8BAAA;E3E28RV;E2El9RM;IAOI,oBAAA;E3E88RV;E2Er9RM;IAOI,mBAAA;E3Ei9RV;E2Ex9RM;IAOI,mBAAA;E3Eo9RV;E2E39RM;IAOI,mBAAA;E3Eu9RV;E2E99RM;IAOI,mBAAA;E3E09RV;E2Ej+RM;IAOI,mBAAA;E3E69RV;E2Ep+RM;IAOI,mBAAA;E3Eg+RV;E2Ev+RM;IAOI,mBAAA;E3Em+RV;E2E1+RM;IAOI,oBAAA;E3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;E2Ex/VM;IAOI,wBAAA;E3Eo/VV;E2E3/VM;IAOI,+BAAA;E3Eu/VV;E2E9/VM;IAOI,wBAAA;E3E0/VV;E2EjgWM;IAOI,yBAAA;E3E6/VV;E2EpgWM;IAOI,8BAAA;E3EggWV;E2EvgWM;IAOI,iCAAA;E3EmgWV;E2E1gWM;IAOI,sCAAA;E3EsgWV;E2E7gWM;IAOI,yCAAA;E3EygWV;E2EhhWM;IAOI,uBAAA;E3E4gWV;E2EnhWM;IAOI,uBAAA;E3E+gWV;E2EthWM;IAOI,yBAAA;E3EkhWV;E2EzhWM;IAOI,yBAAA;E3EqhWV;E2E5hWM;IAOI,0BAAA;E3EwhWV;E2E/hWM;IAOI,4BAAA;E3E2hWV;E2EliWM;IAOI,kCAAA;E3E8hWV;E2EriWM;IAOI,sCAAA;E3EiiWV;E2ExiWM;IAOI,oCAAA;E3EoiWV;E2E3iWM;IAOI,kCAAA;E3EuiWV;E2E9iWM;IAOI,yCAAA;E3E0iWV;E2EjjWM;IAOI,wCAAA;E3E6iWV;E2EpjWM;IAOI,wCAAA;E3EgjWV;E2EvjWM;IAOI,kCAAA;E3EmjWV;E2E1jWM;IAOI,gCAAA;E3EsjWV;E2E7jWM;IAOI,8BAAA;E3EyjWV;E2EhkWM;IAOI,gCAAA;E3E4jWV;E2EnkWM;IAOI,+BAAA;E3E+jWV;E2EtkWM;IAOI,oCAAA;E3EkkWV;E2EzkWM;IAOI,kCAAA;E3EqkWV;E2E5kWM;IAOI,gCAAA;E3EwkWV;E2E/kWM;IAOI,uCAAA;E3E2kWV;E2EllWM;IAOI,sCAAA;E3E8kWV;E2ErlWM;IAOI,iCAAA;E3EilWV;E2ExlWM;IAOI,2BAAA;E3EolWV;E2E3lWM;IAOI,iCAAA;E3EulWV;E2E9lWM;IAOI,+BAAA;E3E0lWV;E2EjmWM;IAOI,6BAAA;E3E6lWV;E2EpmWM;IAOI,+BAAA;E3EgmWV;E2EvmWM;IAOI,8BAAA;E3EmmWV;E2E1mWM;IAOI,oBAAA;E3EsmWV;E2E7mWM;IAOI,mBAAA;E3EymWV;E2EhnWM;IAOI,mBAAA;E3E4mWV;E2EnnWM;IAOI,mBAAA;E3E+mWV;E2EtnWM;IAOI,mBAAA;E3EknWV;E2EznWM;IAOI,mBAAA;E3EqnWV;E2E5nWM;IAO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8BT,cA7BS;AtF8jZb;AsFvjZI;;;;;;;;;;;;EAYI,W9EZG;ARqkZX;AsFtjZI;;EAEI,W9EjBG;ARykZX;AsFjjZI;EACI,yBAjCK;AtFolZb;AsFhjZI;EACI,yBAnCK;AtFqlZb;AsFhjZQ;EACI,uCArCC;AtFulZb;AsF/iZQ;EACI,sBAAA;AtFijZZ;AsF9iZQ;EACI,uCA7CC;AtF6lZb;AsF5iZY;EACI,yBAAA;AtF8iZhB;AsF5iZgB;EACI,W9EhDT;AR8lZX;AsFxiZI;EACI,W9EvDG;ARimZX;AsFviZI;EACI,W9E3DG;ARomZX;AsFtiZI;EACI,+CAAA;EACA,cAvEK;AtF+mZb;AsFniZQ;;EACI,cA7EC;AtFmnZb;AsFhiZI;EACI,8BAAA;AtFkiZR;AsFhiZQ;EACI,kDAAA;AtFkiZZ;AsFhiZY;EACI,W9EnFL;ARqnZX;AsF5hZQ;EACI,W9E1FD;ARwnZX;AsF1hZI;EACI,W9E/FG;AR2nZX;AsFzhZI;;EAEI,mBA5GK;EA6GL,uCA1GK;EA2GL,cA7GK;AtFwoZb;AsFjhZQ;EACI,cAxHC;AtFopZb;AsF7hZQ;;EACI,cAxHC;AtFopZb;AsFzhZQ;;EACI,uCA1HC;EA2HD,cA7HC;EA8HD,mBA/HC;AtF2pZb;AsFzhZQ;;;;EAGI,uCAlIC;EAmID,cArIC;EAsID,mBAvIC;AtFmqZb;AsFxhZI;EACI,yBA5IK;EA6IL,uCA1IK;EA2IL,cA7IK;AtFuqZb;AsFvhZI;EACI,uCA/IK;EAgJL,mB7ElJI;E6EmJJ,W9E5IG;ARqqZX;AsFthZI;EACI,mBAtJK;EAuJL,W9EjJG;E8EkJH,uCAvJK;AtF+qZb;AsFrhZI;;;;;;;EAOI,W9E5JG;ARmrZX;AsFphZI;EACI,kDAAA;AtFshZR;AsFnhZI;EACI,cA3KK;AtFgsZb;AsFnhZQ;EACI,W9EvKD;E8EwKC,6DAAA;AtFqhZZ;AsFlhZQ;EACI,uCAjLC;AtFqsZb;AsF/gZI;EACI,0BAAA;EACA,yBA3LK;EA4LL,cA3LK;AtF4sZb;AsF7gZQ;EACI,cAhMC;AtF+sZb;AsF7gZY;EAII,W9E/LL;AR2sZX;AsFtgZI;EACI,yBA5MK;AtFo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","file":"style.css"} \ No newline at end of file diff --git a/public/scss/style.scss b/public/scss/style.scss new file mode 100644 index 0000000..6fe79e8 --- /dev/null +++ b/public/scss/style.scss @@ -0,0 +1,27 @@ +/* + Name: Intez + Author: Quixlab + Author Portfolio : https://themeforest.net/user/quixlab/portfolio + Email: quixlab.com@gmail.com + + + Table of Content: + + 1. Abstract + 2. Bootstrap CSS + 3. Base + 4. Layout + 5. Component + 6. Pages + +*/ + +@import "./abstract/abstract"; +@import "../../node_modules/bootstrap/scss/bootstrap"; +@import "./base/base"; +@import "./layout/layout"; +@import "./element/element"; +@import "./components/component"; +@import "./pages/pages"; + + diff --git a/public/vercel.svg b/public/vercel.svg new file mode 100644 index 0000000..fbf0e25 --- /dev/null +++ b/public/vercel.svg @@ -0,0 +1,4 @@ + + + \ No newline at end of file diff --git a/redux/actions/type.js b/redux/actions/type.js new file mode 100644 index 0000000..cbe3f7e --- /dev/null +++ b/redux/actions/type.js @@ -0,0 +1 @@ +export const CHART = 'CHART'; \ No newline at end of file diff --git a/redux/reducers/doughnutChart.js b/redux/reducers/doughnutChart.js new file mode 100644 index 0000000..918813b --- /dev/null +++ b/redux/reducers/doughnutChart.js @@ -0,0 +1,23 @@ +import { CHART } from '../actions/type'; + +const initialState = { + statistics: { + name: 'Statistics', + data: [33, 33, 34], + }, +}; + +const DoughnutChart = (state = initialState, action) => { + const { payload, type } = action; + switch (type) { + case CHART: + return { + ...state, + payload, + }; + default: + return state; + } +}; + +export default DoughnutChart; diff --git a/redux/reducers/lineChart.js b/redux/reducers/lineChart.js new file mode 100644 index 0000000..dcc41f4 --- /dev/null +++ b/redux/reducers/lineChart.js @@ -0,0 +1,24 @@ +import { CHART } from '../actions/type'; + +const initialState = { + expenses: { + name: 'Expenses', + youtube: [65, 59, 80, 81, 56, 55, 40,80, 81, 56, 55, 40], + facebook: [40, 105, 92, 155, 138, 205, 120,92, 155, 138, 205, 120], + }, +}; + +const LineChart = (state = initialState, action) => { + const { payload, type } = action; + switch (type) { + case CHART: + return { + ...state, + payload, + }; + default: + return state; + } +}; + +export default LineChart; diff --git a/redux/reducers/lineInvestment.js b/redux/reducers/lineInvestment.js new file mode 100644 index 0000000..528433d --- /dev/null +++ b/redux/reducers/lineInvestment.js @@ -0,0 +1,23 @@ +import { CHART } from '../actions/type'; + +const initialState = { + investment: { + name: 'Investment', + data: [50, 26, 36, 30, 46, 38, 60], + }, +}; + +const LineInvestment = (state = initialState, action) => { + const { payload, type } = action; + switch (type) { + case CHART: + return { + ...state, + payload, + }; + default: + return state; + } +}; + +export default LineInvestment; diff --git a/redux/reducers/root.js b/redux/reducers/root.js new file mode 100644 index 0000000..36d6bfa --- /dev/null +++ b/redux/reducers/root.js @@ -0,0 +1,11 @@ +import { combineReducers } from 'redux'; +import LineChart from './lineChart'; +import DoughnutChart from './doughnutChart'; +import LineInvestment from './lineInvestment' + + +export default combineReducers({ + LineChart, + DoughnutChart, + LineInvestment +}); diff --git a/redux/store.js b/redux/store.js new file mode 100644 index 0000000..2d0b3ab --- /dev/null +++ b/redux/store.js @@ -0,0 +1,15 @@ +import { applyMiddleware, createStore } from "redux"; +import thunk from "redux-thunk"; +import rootReducers from "./reducers/root"; + +const initialState = {}; + +const middleware = [thunk]; + +const store = createStore( + rootReducers, + initialState, + applyMiddleware(...middleware) +) + +export default store; \ No newline at end of file