`s, which have `min-width: 0;` by default.
+// So we reset that to ensure fieldsets behave more like a standard block element.
+// See https://github.com/twbs/bootstrap/issues/12359
+// and https://html.spec.whatwg.org/multipage/#the-fieldset-and-legend-elements
+// 2. Reset the default outline behavior of fieldsets so they don't affect page layout.
+
+fieldset {
+ min-width: 0; // 1
+ padding: 0; // 2
+ margin: 0; // 2
+ border: 0; // 2
+}
+
+// 1. By using `float: left`, the legend will behave like a block element.
+// This way the border of a fieldset wraps around the legend if present.
+// 2. Fix wrapping bug.
+// See https://github.com/twbs/bootstrap/issues/29712
+
+legend {
+ float: left; // 1
+ width: 100%;
+ padding: 0;
+ margin-bottom: $legend-margin-bottom;
+ @include font-size($legend-font-size);
+ font-weight: $legend-font-weight;
+ line-height: inherit;
+
+ + * {
+ clear: left; // 2
+ }
+}
+
+// Fix height of inputs with a type of datetime-local, date, month, week, or time
+// See https://github.com/twbs/bootstrap/issues/18842
+
+::-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;
+}
+
+// 1. Correct the outline style in Safari.
+// 2. This overrides the extra rounded corners on search inputs in iOS so that our
+// `.form-control` class can properly style them. Note that this cannot simply
+// be added to `.form-control` as it's not specific enough. For details, see
+// https://github.com/twbs/bootstrap/issues/11586.
+
+[type="search"] {
+ outline-offset: -2px; // 1
+ -webkit-appearance: textfield; // 2
+}
+
+// 1. A few input types should stay LTR
+// See https://rtlstyling.com/posts/rtl-styling#form-inputs
+// 2. RTL only output
+// See https://rtlcss.com/learn/usage-guide/control-directives/#raw
+
+/* rtl:raw:
+[type="tel"],
+[type="url"],
+[type="email"],
+[type="number"] {
+ direction: ltr;
+}
+*/
+
+// Remove the inner padding in Chrome and Safari on macOS.
+
+::-webkit-search-decoration {
+ -webkit-appearance: none;
+}
+
+// Remove padding around color pickers in webkit browsers
+
+::-webkit-color-swatch-wrapper {
+ padding: 0;
+}
+
+
+// 1. Inherit font family and line height for file input buttons
+// 2. Correct the inability to style clickable types in iOS and Safari.
+
+::file-selector-button {
+ font: inherit; // 1
+ -webkit-appearance: button; // 2
+}
+
+// Correct element displays
+
+output {
+ display: inline-block;
+}
+
+// Remove border from iframe
+
+iframe {
+ border: 0;
+}
+
+// Summary
+//
+// 1. Add the correct display in all browsers
+
+summary {
+ display: list-item; // 1
+ cursor: pointer;
+}
+
+
+// Progress
+//
+// Add the correct vertical alignment in Chrome, Firefox, and Opera.
+
+progress {
+ vertical-align: baseline;
+}
+
+
+// Hidden attribute
+//
+// Always hide an element with the `hidden` HTML attribute.
+
+[hidden] {
+ display: none !important;
+}
diff --git a/dasena-web/public/assets/admin/scss/bootstrap/_root.scss b/dasena-web/public/assets/admin/scss/bootstrap/_root.scss
new file mode 100644
index 0000000..e16d2a3
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/bootstrap/_root.scss
@@ -0,0 +1,76 @@
+// stylelint-disable custom-property-empty-line-before
+
+:root {
+ // Note: Custom variable values only support SassScript inside `#{}`.
+
+ // Colors
+ //
+ // Generate palettes for full colors, grays, and theme colors.
+
+ @each $color, $value in $colors {
+ --#{$prefix}#{$color}: #{$value};
+ }
+
+ @each $color, $value in $grays {
+ --#{$prefix}gray-#{$color}: #{$value};
+ }
+
+ @each $color, $value in $theme-colors {
+ --#{$prefix}#{$color}: #{$value};
+ }
+
+ @each $color, $value in $theme-colors-rgb {
+ --#{$prefix}#{$color}-rgb: #{$value};
+ }
+
+ --#{$prefix}white-rgb: #{to-rgb($white)};
+ --#{$prefix}black-rgb: #{to-rgb($black)};
+ --#{$prefix}body-color-rgb: #{to-rgb($body-color)};
+ --#{$prefix}body-bg-rgb: #{to-rgb($body-bg)};
+
+ // Fonts
+
+ // Note: Use `inspect` for lists so that quoted items keep the quotes.
+ // See https://github.com/sass/sass/issues/2383#issuecomment-336349172
+ --#{$prefix}font-sans-serif: #{inspect($font-family-sans-serif)};
+ --#{$prefix}font-monospace: #{inspect($font-family-monospace)};
+ --#{$prefix}gradient: #{$gradient};
+
+ // Root and body
+ // scss-docs-start root-body-variables
+ @if $font-size-root != null {
+ --#{$prefix}root-font-size: #{$font-size-root};
+ }
+ --#{$prefix}body-font-family: #{$font-family-base};
+ @include rfs($font-size-base, --#{$prefix}body-font-size);
+ --#{$prefix}body-font-weight: #{$font-weight-base};
+ --#{$prefix}body-line-height: #{$line-height-base};
+ --#{$prefix}body-color: #{$body-color};
+ @if $body-text-align != null {
+ --#{$prefix}body-text-align: #{$body-text-align};
+ }
+ --#{$prefix}body-bg: #{$body-bg};
+ // scss-docs-end root-body-variables
+
+ // scss-docs-start root-border-var
+ --#{$prefix}border-width: #{$border-width};
+ --#{$prefix}border-style: #{$border-style};
+ --#{$prefix}border-color: #{$border-color};
+ --#{$prefix}border-color-translucent: #{$border-color-translucent};
+
+ --#{$prefix}border-radius: #{$border-radius};
+ --#{$prefix}border-radius-sm: #{$border-radius-sm};
+ --#{$prefix}border-radius-lg: #{$border-radius-lg};
+ --#{$prefix}border-radius-xl: #{$border-radius-xl};
+ --#{$prefix}border-radius-2xl: #{$border-radius-2xl};
+ --#{$prefix}border-radius-pill: #{$border-radius-pill};
+ // scss-docs-end root-border-var
+
+ --#{$prefix}heading-color: #{$headings-color};
+ --#{$prefix}link-color: #{$link-color};
+ --#{$prefix}link-hover-color: #{$link-hover-color};
+
+ --#{$prefix}code-color: #{$code-color};
+
+ --#{$prefix}highlight-bg: #{$mark-bg};
+}
diff --git a/dasena-web/public/assets/admin/scss/bootstrap/_spinners.scss b/dasena-web/public/assets/admin/scss/bootstrap/_spinners.scss
new file mode 100644
index 0000000..ec84732
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/bootstrap/_spinners.scss
@@ -0,0 +1,85 @@
+//
+// Rotating border
+//
+
+.spinner-grow,
+.spinner-border {
+ display: inline-block;
+ width: var(--#{$prefix}spinner-width);
+ height: var(--#{$prefix}spinner-height);
+ vertical-align: var(--#{$prefix}spinner-vertical-align);
+ // stylelint-disable-next-line property-disallowed-list
+ border-radius: 50%;
+ animation: var(--#{$prefix}spinner-animation-speed) linear infinite var(--#{$prefix}spinner-animation-name);
+}
+
+// scss-docs-start spinner-border-keyframes
+@keyframes spinner-border {
+ to { transform: rotate(360deg) #{"/* rtl:ignore */"}; }
+}
+// scss-docs-end spinner-border-keyframes
+
+.spinner-border {
+ // scss-docs-start spinner-border-css-vars
+ --#{$prefix}spinner-width: #{$spinner-width};
+ --#{$prefix}spinner-height: #{$spinner-height};
+ --#{$prefix}spinner-vertical-align: #{$spinner-vertical-align};
+ --#{$prefix}spinner-border-width: #{$spinner-border-width};
+ --#{$prefix}spinner-animation-speed: #{$spinner-animation-speed};
+ --#{$prefix}spinner-animation-name: spinner-border;
+ // scss-docs-end spinner-border-css-vars
+
+ border: var(--#{$prefix}spinner-border-width) solid currentcolor;
+ border-right-color: transparent;
+}
+
+.spinner-border-sm {
+ // scss-docs-start spinner-border-sm-css-vars
+ --#{$prefix}spinner-width: #{$spinner-width-sm};
+ --#{$prefix}spinner-height: #{$spinner-height-sm};
+ --#{$prefix}spinner-border-width: #{$spinner-border-width-sm};
+ // scss-docs-end spinner-border-sm-css-vars
+}
+
+//
+// Growing circle
+//
+
+// scss-docs-start spinner-grow-keyframes
+@keyframes spinner-grow {
+ 0% {
+ transform: scale(0);
+ }
+ 50% {
+ opacity: 1;
+ transform: none;
+ }
+}
+// scss-docs-end spinner-grow-keyframes
+
+.spinner-grow {
+ // scss-docs-start spinner-grow-css-vars
+ --#{$prefix}spinner-width: #{$spinner-width};
+ --#{$prefix}spinner-height: #{$spinner-height};
+ --#{$prefix}spinner-vertical-align: #{$spinner-vertical-align};
+ --#{$prefix}spinner-animation-speed: #{$spinner-animation-speed};
+ --#{$prefix}spinner-animation-name: spinner-grow;
+ // scss-docs-end spinner-grow-css-vars
+
+ background-color: currentcolor;
+ opacity: 0;
+}
+
+.spinner-grow-sm {
+ --#{$prefix}spinner-width: #{$spinner-width-sm};
+ --#{$prefix}spinner-height: #{$spinner-height-sm};
+}
+
+@if $enable-reduced-motion {
+ @media (prefers-reduced-motion: reduce) {
+ .spinner-border,
+ .spinner-grow {
+ --#{$prefix}spinner-animation-speed: #{$spinner-animation-speed * 2};
+ }
+ }
+}
diff --git a/dasena-web/public/assets/admin/scss/bootstrap/_tables.scss b/dasena-web/public/assets/admin/scss/bootstrap/_tables.scss
new file mode 100644
index 0000000..601d86c
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/bootstrap/_tables.scss
@@ -0,0 +1,164 @@
+//
+// Basic Bootstrap table
+//
+
+.table {
+ --#{$prefix}table-color: #{$table-color};
+ --#{$prefix}table-bg: #{$table-bg};
+ --#{$prefix}table-border-color: #{$table-border-color};
+ --#{$prefix}table-accent-bg: #{$table-accent-bg};
+ --#{$prefix}table-striped-color: #{$table-striped-color};
+ --#{$prefix}table-striped-bg: #{$table-striped-bg};
+ --#{$prefix}table-active-color: #{$table-active-color};
+ --#{$prefix}table-active-bg: #{$table-active-bg};
+ --#{$prefix}table-hover-color: #{$table-hover-color};
+ --#{$prefix}table-hover-bg: #{$table-hover-bg};
+
+ width: 100%;
+ margin-bottom: $spacer;
+ color: var(--#{$prefix}table-color);
+ vertical-align: $table-cell-vertical-align;
+ border-color: var(--#{$prefix}table-border-color);
+
+ // Target th & td
+ // We need the child combinator to prevent styles leaking to nested tables which doesn't have a `.table` class.
+ // We use the universal selectors here to simplify the selector (else we would need 6 different selectors).
+ // Another advantage is that this generates less code and makes the selector less specific making it easier to override.
+ // stylelint-disable-next-line selector-max-universal
+ > :not(caption) > * > * {
+ padding: $table-cell-padding-y $table-cell-padding-x;
+ background-color: var(--#{$prefix}table-bg);
+ border-bottom-width: $table-border-width;
+ box-shadow: inset 0 0 0 9999px var(--#{$prefix}table-accent-bg);
+ }
+
+ > tbody {
+ vertical-align: inherit;
+ }
+
+ > thead {
+ vertical-align: bottom;
+ }
+}
+
+.table-group-divider {
+ border-top: calc(2 * $table-border-width) solid $table-group-separator-color; // stylelint-disable-line function-disallowed-list
+}
+
+//
+// Change placement of captions with a class
+//
+
+.caption-top {
+ caption-side: top;
+}
+
+
+//
+// Condensed table w/ half padding
+//
+
+.table-sm {
+ // stylelint-disable-next-line selector-max-universal
+ > :not(caption) > * > * {
+ padding: $table-cell-padding-y-sm $table-cell-padding-x-sm;
+ }
+}
+
+
+// Border versions
+//
+// Add or remove borders all around the table and between all the columns.
+//
+// When borders are added on all sides of the cells, the corners can render odd when
+// these borders do not have the same color or if they are semi-transparent.
+// Therefor we add top and border bottoms to the `tr`s and left and right borders
+// to the `td`s or `th`s
+
+.table-bordered {
+ > :not(caption) > * {
+ border-width: $table-border-width 0;
+
+ // stylelint-disable-next-line selector-max-universal
+ > * {
+ border-width: 0 $table-border-width;
+ }
+ }
+}
+
+.table-borderless {
+ // stylelint-disable-next-line selector-max-universal
+ > :not(caption) > * > * {
+ border-bottom-width: 0;
+ }
+
+ > :not(:first-child) {
+ border-top-width: 0;
+ }
+}
+
+// Zebra-striping
+//
+// Default zebra-stripe styles (alternating gray and transparent backgrounds)
+
+// For rows
+.table-striped {
+ > tbody > tr:nth-of-type(#{$table-striped-order}) > * {
+ --#{$prefix}table-accent-bg: var(--#{$prefix}table-striped-bg);
+ color: var(--#{$prefix}table-striped-color);
+ }
+}
+
+// For columns
+.table-striped-columns {
+ > :not(caption) > tr > :nth-child(#{$table-striped-columns-order}) {
+ --#{$prefix}table-accent-bg: var(--#{$prefix}table-striped-bg);
+ color: var(--#{$prefix}table-striped-color);
+ }
+}
+
+// Active table
+//
+// The `.table-active` class can be added to highlight rows or cells
+
+.table-active {
+ --#{$prefix}table-accent-bg: var(--#{$prefix}table-active-bg);
+ color: var(--#{$prefix}table-active-color);
+}
+
+// Hover effect
+//
+// Placed here since it has to come after the potential zebra striping
+
+.table-hover {
+ > tbody > tr:hover > * {
+ --#{$prefix}table-accent-bg: var(--#{$prefix}table-hover-bg);
+ color: var(--#{$prefix}table-hover-color);
+ }
+}
+
+
+// Table variants
+//
+// Table variants set the table cell backgrounds, border colors
+// and the colors of the striped, hovered & active tables
+
+@each $color, $value in $table-variants {
+ @include table-variant($color, $value);
+}
+
+// Responsive tables
+//
+// Generate series of `.table-responsive-*` classes for configuring the screen
+// size of where your table will overflow.
+
+@each $breakpoint in map-keys($grid-breakpoints) {
+ $infix: breakpoint-infix($breakpoint, $grid-breakpoints);
+
+ @include media-breakpoint-down($breakpoint) {
+ .table-responsive#{$infix} {
+ overflow-x: auto;
+ -webkit-overflow-scrolling: touch;
+ }
+ }
+}
diff --git a/dasena-web/public/assets/admin/scss/bootstrap/_toasts.scss b/dasena-web/public/assets/admin/scss/bootstrap/_toasts.scss
new file mode 100644
index 0000000..4663e88
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/bootstrap/_toasts.scss
@@ -0,0 +1,70 @@
+.toast {
+ // scss-docs-start toast-css-vars
+ --#{$prefix}toast-padding-x: #{$toast-padding-x};
+ --#{$prefix}toast-padding-y: #{$toast-padding-y};
+ --#{$prefix}toast-spacing: #{$toast-spacing};
+ --#{$prefix}toast-max-width: #{$toast-max-width};
+ @include rfs($toast-font-size, --#{$prefix}toast-font-size);
+ --#{$prefix}toast-color: #{$toast-color}; // stylelint-disable-line custom-property-empty-line-before
+ --#{$prefix}toast-bg: #{$toast-background-color};
+ --#{$prefix}toast-border-width: #{$toast-border-width};
+ --#{$prefix}toast-border-color: #{$toast-border-color};
+ --#{$prefix}toast-border-radius: #{$toast-border-radius};
+ --#{$prefix}toast-box-shadow: #{$toast-box-shadow};
+ --#{$prefix}toast-header-color: #{$toast-header-color};
+ --#{$prefix}toast-header-bg: #{$toast-header-background-color};
+ --#{$prefix}toast-header-border-color: #{$toast-header-border-color};
+ // scss-docs-end toast-css-vars
+
+ width: var(--#{$prefix}toast-max-width);
+ max-width: 100%;
+ @include font-size(var(--#{$prefix}toast-font-size));
+ color: var(--#{$prefix}toast-color);
+ pointer-events: auto;
+ background-color: var(--#{$prefix}toast-bg);
+ background-clip: padding-box;
+ border: var(--#{$prefix}toast-border-width) solid var(--#{$prefix}toast-border-color);
+ box-shadow: var(--#{$prefix}toast-box-shadow);
+ @include border-radius(var(--#{$prefix}toast-border-radius));
+
+ &.showing {
+ opacity: 0;
+ }
+
+ &:not(.show) {
+ display: none;
+ }
+}
+
+.toast-container {
+ position: absolute;
+ z-index: $zindex-toast;
+ width: max-content;
+ max-width: 100%;
+ pointer-events: none;
+
+ > :not(:last-child) {
+ margin-bottom: var(--#{$prefix}toast-spacing);
+ }
+}
+
+.toast-header {
+ display: flex;
+ align-items: center;
+ padding: var(--#{$prefix}toast-padding-y) var(--#{$prefix}toast-padding-x);
+ color: var(--#{$prefix}toast-header-color);
+ background-color: var(--#{$prefix}toast-header-bg);
+ background-clip: padding-box;
+ border-bottom: var(--#{$prefix}toast-border-width) solid var(--#{$prefix}toast-header-border-color);
+ @include border-top-radius(calc(var(--#{$prefix}toast-border-radius) - var(--#{$prefix}toast-border-width)));
+
+ .btn-close {
+ margin-right: calc(var(--#{$prefix}toast-padding-x) * -.5); // stylelint-disable-line function-disallowed-list
+ margin-left: var(--#{$prefix}toast-padding-x);
+ }
+}
+
+.toast-body {
+ padding: var(--#{$prefix}toast-padding-x);
+ word-wrap: break-word;
+}
diff --git a/dasena-web/public/assets/admin/scss/bootstrap/_tooltip.scss b/dasena-web/public/assets/admin/scss/bootstrap/_tooltip.scss
new file mode 100644
index 0000000..922ed85
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/bootstrap/_tooltip.scss
@@ -0,0 +1,122 @@
+// stylelint-disable custom-property-empty-line-before
+
+// Base class
+.tooltip {
+ // scss-docs-start tooltip-css-vars
+ --#{$prefix}tooltip-zindex: #{$zindex-tooltip};
+ --#{$prefix}tooltip-max-width: #{$tooltip-max-width};
+ --#{$prefix}tooltip-padding-x: #{$tooltip-padding-x};
+ --#{$prefix}tooltip-padding-y: #{$tooltip-padding-y};
+ --#{$prefix}tooltip-margin: #{$tooltip-margin};
+ @include rfs($tooltip-font-size, --#{$prefix}tooltip-font-size);
+ --#{$prefix}tooltip-color: #{$tooltip-color};
+ --#{$prefix}tooltip-bg: #{$tooltip-bg};
+ --#{$prefix}tooltip-border-radius: #{$tooltip-border-radius};
+ --#{$prefix}tooltip-opacity: #{$tooltip-opacity};
+ --#{$prefix}tooltip-arrow-width: #{$tooltip-arrow-width};
+ --#{$prefix}tooltip-arrow-height: #{$tooltip-arrow-height};
+ // scss-docs-end tooltip-css-vars
+
+ z-index: var(--#{$prefix}tooltip-zindex);
+ display: block;
+ padding: var(--#{$prefix}tooltip-arrow-height);
+ margin: var(--#{$prefix}tooltip-margin);
+ @include deprecate("`$tooltip-margin`", "v5", "v5.x", true);
+ // Our parent element can be arbitrary since tooltips are by default inserted as a sibling of their target element.
+ // So reset our font and text properties to avoid inheriting weird values.
+ @include reset-text();
+ @include font-size(var(--#{$prefix}tooltip-font-size));
+ // Allow breaking very long words so they don't overflow the tooltip's bounds
+ word-wrap: break-word;
+ opacity: 0;
+
+ &.show { opacity: var(--#{$prefix}tooltip-opacity); }
+
+ .tooltip-arrow {
+ display: block;
+ width: var(--#{$prefix}tooltip-arrow-width);
+ height: var(--#{$prefix}tooltip-arrow-height);
+
+ &::before {
+ position: absolute;
+ content: "";
+ border-color: transparent;
+ border-style: solid;
+ }
+ }
+}
+
+.bs-tooltip-top .tooltip-arrow {
+ bottom: 0;
+
+ &::before {
+ top: -1px;
+ border-width: var(--#{$prefix}tooltip-arrow-height) calc(var(--#{$prefix}tooltip-arrow-width) * .5) 0; // stylelint-disable-line function-disallowed-list
+ border-top-color: var(--#{$prefix}tooltip-bg);
+ }
+}
+
+/* rtl:begin:ignore */
+.bs-tooltip-end .tooltip-arrow {
+ left: 0;
+ width: var(--#{$prefix}tooltip-arrow-height);
+ height: var(--#{$prefix}tooltip-arrow-width);
+
+ &::before {
+ right: -1px;
+ border-width: calc(var(--#{$prefix}tooltip-arrow-width) * .5) var(--#{$prefix}tooltip-arrow-height) calc(var(--#{$prefix}tooltip-arrow-width) * .5) 0; // stylelint-disable-line function-disallowed-list
+ border-right-color: var(--#{$prefix}tooltip-bg);
+ }
+}
+
+/* rtl:end:ignore */
+
+.bs-tooltip-bottom .tooltip-arrow {
+ top: 0;
+
+ &::before {
+ bottom: -1px;
+ border-width: 0 calc(var(--#{$prefix}tooltip-arrow-width) * .5) var(--#{$prefix}tooltip-arrow-height); // stylelint-disable-line function-disallowed-list
+ border-bottom-color: var(--#{$prefix}tooltip-bg);
+ }
+}
+
+/* rtl:begin:ignore */
+.bs-tooltip-start .tooltip-arrow {
+ right: 0;
+ width: var(--#{$prefix}tooltip-arrow-height);
+ height: var(--#{$prefix}tooltip-arrow-width);
+
+ &::before {
+ left: -1px;
+ border-width: calc(var(--#{$prefix}tooltip-arrow-width) * .5) 0 calc(var(--#{$prefix}tooltip-arrow-width) * .5) var(--#{$prefix}tooltip-arrow-height); // stylelint-disable-line function-disallowed-list
+ border-left-color: var(--#{$prefix}tooltip-bg);
+ }
+}
+
+/* rtl:end:ignore */
+
+.bs-tooltip-auto {
+ &[data-popper-placement^="top"] {
+ @extend .bs-tooltip-top;
+ }
+ &[data-popper-placement^="right"] {
+ @extend .bs-tooltip-end;
+ }
+ &[data-popper-placement^="bottom"] {
+ @extend .bs-tooltip-bottom;
+ }
+ &[data-popper-placement^="left"] {
+ @extend .bs-tooltip-start;
+ }
+}
+
+// Wrapper for the tooltip content
+.tooltip-inner {
+ max-width: var(--#{$prefix}tooltip-max-width);
+ padding: var(--#{$prefix}tooltip-padding-y) var(--#{$prefix}tooltip-padding-x);
+ color: var(--#{$prefix}tooltip-color);
+ text-align: center;
+ background-color: var(--#{$prefix}tooltip-bg);
+ border-radius: var(--#{$prefix}tooltip-border-radius, 0); // stylelint-disable-line property-disallowed-list
+}
diff --git a/dasena-web/public/assets/admin/scss/bootstrap/_transitions.scss b/dasena-web/public/assets/admin/scss/bootstrap/_transitions.scss
new file mode 100644
index 0000000..bfb26aa
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/bootstrap/_transitions.scss
@@ -0,0 +1,27 @@
+.fade {
+ @include transition($transition-fade);
+
+ &:not(.show) {
+ opacity: 0;
+ }
+}
+
+// scss-docs-start collapse-classes
+.collapse {
+ &:not(.show) {
+ display: none;
+ }
+}
+
+.collapsing {
+ height: 0;
+ overflow: hidden;
+ @include transition($transition-collapse);
+
+ &.collapse-horizontal {
+ width: 0;
+ height: auto;
+ @include transition($transition-collapse-width);
+ }
+}
+// scss-docs-end collapse-classes
diff --git a/dasena-web/public/assets/admin/scss/bootstrap/_type.scss b/dasena-web/public/assets/admin/scss/bootstrap/_type.scss
new file mode 100644
index 0000000..b2d524c
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/bootstrap/_type.scss
@@ -0,0 +1,104 @@
+//
+// Headings
+//
+.h1 {
+ @extend h1;
+}
+
+.h2 {
+ @extend h2;
+}
+
+.h3 {
+ @extend h3;
+}
+
+.h4 {
+ @extend h4;
+}
+
+.h5 {
+ @extend h5;
+}
+
+.h6 {
+ @extend h6;
+}
+
+
+.lead {
+ @include font-size($lead-font-size);
+ font-weight: $lead-font-weight;
+}
+
+// Type display classes
+@each $display, $font-size in $display-font-sizes {
+ .display-#{$display} {
+ @include font-size($font-size);
+ font-weight: $display-font-weight;
+ line-height: $display-line-height;
+ }
+}
+
+//
+// Emphasis
+//
+.small {
+ @extend small;
+}
+
+.mark {
+ @extend mark;
+}
+
+//
+// Lists
+//
+
+.list-unstyled {
+ @include list-unstyled();
+}
+
+// Inline turns list items into inline-block
+.list-inline {
+ @include list-unstyled();
+}
+.list-inline-item {
+ display: inline-block;
+
+ &:not(:last-child) {
+ margin-right: $list-inline-padding;
+ }
+}
+
+
+//
+// Misc
+//
+
+// Builds on `abbr`
+.initialism {
+ @include font-size($initialism-font-size);
+ text-transform: uppercase;
+}
+
+// Blockquotes
+.blockquote {
+ margin-bottom: $blockquote-margin-y;
+ @include font-size($blockquote-font-size);
+
+ > :last-child {
+ margin-bottom: 0;
+ }
+}
+
+.blockquote-footer {
+ margin-top: -$blockquote-margin-y;
+ margin-bottom: $blockquote-margin-y;
+ @include font-size($blockquote-footer-font-size);
+ color: $blockquote-footer-color;
+
+ &::before {
+ content: "\2014\00A0"; // em dash, nbsp
+ }
+}
diff --git a/dasena-web/public/assets/admin/scss/bootstrap/_utilities.scss b/dasena-web/public/assets/admin/scss/bootstrap/_utilities.scss
new file mode 100644
index 0000000..1e0d141
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/bootstrap/_utilities.scss
@@ -0,0 +1,647 @@
+// Utilities
+
+$utilities: () !default;
+// stylelint-disable-next-line scss/dollar-variable-default
+$utilities: map-merge(
+ (
+ // scss-docs-start utils-vertical-align
+ "align": (
+ property: vertical-align,
+ class: align,
+ values: baseline top middle bottom text-bottom text-top
+ ),
+ // scss-docs-end utils-vertical-align
+ // scss-docs-start utils-float
+ "float": (
+ responsive: true,
+ property: float,
+ values: (
+ start: left,
+ end: right,
+ none: none,
+ )
+ ),
+ // scss-docs-end utils-float
+ // Opacity utilities
+ // scss-docs-start utils-opacity
+ "opacity": (
+ property: opacity,
+ values: (
+ 0: 0,
+ 25: .25,
+ 50: .5,
+ 75: .75,
+ 100: 1,
+ )
+ ),
+ // scss-docs-end utils-opacity
+ // scss-docs-start utils-overflow
+ "overflow": (
+ property: overflow,
+ values: auto hidden visible scroll,
+ ),
+ // scss-docs-end utils-overflow
+ // scss-docs-start utils-display
+ "display": (
+ responsive: true,
+ print: true,
+ property: display,
+ class: d,
+ values: inline inline-block block grid table table-row table-cell flex inline-flex none
+ ),
+ // scss-docs-end utils-display
+ // scss-docs-start utils-shadow
+ "shadow": (
+ property: box-shadow,
+ class: shadow,
+ values: (
+ null: $box-shadow,
+ sm: $box-shadow-sm,
+ lg: $box-shadow-lg,
+ none: none,
+ )
+ ),
+ // scss-docs-end utils-shadow
+ // scss-docs-start utils-position
+ "position": (
+ property: position,
+ values: static relative absolute fixed sticky
+ ),
+ "top": (
+ property: top,
+ values: $position-values
+ ),
+ "bottom": (
+ property: bottom,
+ values: $position-values
+ ),
+ "start": (
+ property: left,
+ class: start,
+ values: $position-values
+ ),
+ "end": (
+ property: right,
+ class: end,
+ values: $position-values
+ ),
+ "translate-middle": (
+ property: transform,
+ class: translate-middle,
+ values: (
+ null: translate(-50%, -50%),
+ x: translateX(-50%),
+ y: translateY(-50%),
+ )
+ ),
+ // scss-docs-end utils-position
+ // scss-docs-start utils-borders
+ "border": (
+ property: border,
+ values: (
+ null: var(--#{$prefix}border-width) var(--#{$prefix}border-style) var(--#{$prefix}border-color),
+ 0: 0,
+ )
+ ),
+ "border-top": (
+ property: border-top,
+ values: (
+ null: var(--#{$prefix}border-width) var(--#{$prefix}border-style) var(--#{$prefix}border-color),
+ 0: 0,
+ )
+ ),
+ "border-end": (
+ property: border-right,
+ class: border-end,
+ values: (
+ null: var(--#{$prefix}border-width) var(--#{$prefix}border-style) var(--#{$prefix}border-color),
+ 0: 0,
+ )
+ ),
+ "border-bottom": (
+ property: border-bottom,
+ values: (
+ null: var(--#{$prefix}border-width) var(--#{$prefix}border-style) var(--#{$prefix}border-color),
+ 0: 0,
+ )
+ ),
+ "border-start": (
+ property: border-left,
+ class: border-start,
+ values: (
+ null: var(--#{$prefix}border-width) var(--#{$prefix}border-style) var(--#{$prefix}border-color),
+ 0: 0,
+ )
+ ),
+ "border-color": (
+ property: border-color,
+ class: border,
+ local-vars: (
+ "border-opacity": 1
+ ),
+ values: $utilities-border-colors
+ ),
+ "border-width": (
+ css-var: true,
+ css-variable-name: border-width,
+ class: border,
+ values: $border-widths
+ ),
+ "border-opacity": (
+ css-var: true,
+ class: border-opacity,
+ values: (
+ 10: .1,
+ 25: .25,
+ 50: .5,
+ 75: .75,
+ 100: 1
+ )
+ ),
+ // scss-docs-end utils-borders
+ // Sizing utilities
+ // scss-docs-start utils-sizing
+ "width": (
+ property: width,
+ class: w,
+ values: (
+ 25: 25%,
+ 50: 50%,
+ 75: 75%,
+ 100: 100%,
+ auto: auto
+ )
+ ),
+ "max-width": (
+ property: max-width,
+ class: mw,
+ values: (100: 100%)
+ ),
+ "viewport-width": (
+ property: width,
+ class: vw,
+ values: (100: 100vw)
+ ),
+ "min-viewport-width": (
+ property: min-width,
+ class: min-vw,
+ values: (100: 100vw)
+ ),
+ "height": (
+ property: height,
+ class: h,
+ values: (
+ 25: 25%,
+ 50: 50%,
+ 75: 75%,
+ 100: 100%,
+ auto: auto
+ )
+ ),
+ "max-height": (
+ property: max-height,
+ class: mh,
+ values: (100: 100%)
+ ),
+ "viewport-height": (
+ property: height,
+ class: vh,
+ values: (100: 100vh)
+ ),
+ "min-viewport-height": (
+ property: min-height,
+ class: min-vh,
+ values: (100: 100vh)
+ ),
+ // scss-docs-end utils-sizing
+ // Flex utilities
+ // scss-docs-start utils-flex
+ "flex": (
+ responsive: true,
+ property: flex,
+ values: (fill: 1 1 auto)
+ ),
+ "flex-direction": (
+ responsive: true,
+ property: flex-direction,
+ class: flex,
+ values: row column row-reverse column-reverse
+ ),
+ "flex-grow": (
+ responsive: true,
+ property: flex-grow,
+ class: flex,
+ values: (
+ grow-0: 0,
+ grow-1: 1,
+ )
+ ),
+ "flex-shrink": (
+ responsive: true,
+ property: flex-shrink,
+ class: flex,
+ values: (
+ shrink-0: 0,
+ shrink-1: 1,
+ )
+ ),
+ "flex-wrap": (
+ responsive: true,
+ property: flex-wrap,
+ class: flex,
+ values: wrap nowrap wrap-reverse
+ ),
+ "justify-content": (
+ responsive: true,
+ property: justify-content,
+ values: (
+ start: flex-start,
+ end: flex-end,
+ center: center,
+ between: space-between,
+ around: space-around,
+ evenly: space-evenly,
+ )
+ ),
+ "align-items": (
+ responsive: true,
+ property: align-items,
+ values: (
+ start: flex-start,
+ end: flex-end,
+ center: center,
+ baseline: baseline,
+ stretch: stretch,
+ )
+ ),
+ "align-content": (
+ responsive: true,
+ property: align-content,
+ values: (
+ start: flex-start,
+ end: flex-end,
+ center: center,
+ between: space-between,
+ around: space-around,
+ stretch: stretch,
+ )
+ ),
+ "align-self": (
+ responsive: true,
+ property: align-self,
+ values: (
+ auto: auto,
+ start: flex-start,
+ end: flex-end,
+ center: center,
+ baseline: baseline,
+ stretch: stretch,
+ )
+ ),
+ "order": (
+ responsive: true,
+ property: order,
+ values: (
+ first: -1,
+ 0: 0,
+ 1: 1,
+ 2: 2,
+ 3: 3,
+ 4: 4,
+ 5: 5,
+ last: 6,
+ ),
+ ),
+ // scss-docs-end utils-flex
+ // Margin utilities
+ // scss-docs-start utils-spacing
+ "margin": (
+ responsive: true,
+ property: margin,
+ class: m,
+ values: map-merge($spacers, (auto: auto))
+ ),
+ "margin-x": (
+ responsive: true,
+ property: margin-right margin-left,
+ class: mx,
+ values: map-merge($spacers, (auto: auto))
+ ),
+ "margin-y": (
+ responsive: true,
+ property: margin-top margin-bottom,
+ class: my,
+ values: map-merge($spacers, (auto: auto))
+ ),
+ "margin-top": (
+ responsive: true,
+ property: margin-top,
+ class: mt,
+ values: map-merge($spacers, (auto: auto))
+ ),
+ "margin-end": (
+ responsive: true,
+ property: margin-right,
+ class: me,
+ values: map-merge($spacers, (auto: auto))
+ ),
+ "margin-bottom": (
+ responsive: true,
+ property: margin-bottom,
+ class: mb,
+ values: map-merge($spacers, (auto: auto))
+ ),
+ "margin-start": (
+ responsive: true,
+ property: margin-left,
+ class: ms,
+ values: map-merge($spacers, (auto: auto))
+ ),
+ // Negative margin utilities
+ "negative-margin": (
+ responsive: true,
+ property: margin,
+ class: m,
+ values: $negative-spacers
+ ),
+ "negative-margin-x": (
+ responsive: true,
+ property: margin-right margin-left,
+ class: mx,
+ values: $negative-spacers
+ ),
+ "negative-margin-y": (
+ responsive: true,
+ property: margin-top margin-bottom,
+ class: my,
+ values: $negative-spacers
+ ),
+ "negative-margin-top": (
+ responsive: true,
+ property: margin-top,
+ class: mt,
+ values: $negative-spacers
+ ),
+ "negative-margin-end": (
+ responsive: true,
+ property: margin-right,
+ class: me,
+ values: $negative-spacers
+ ),
+ "negative-margin-bottom": (
+ responsive: true,
+ property: margin-bottom,
+ class: mb,
+ values: $negative-spacers
+ ),
+ "negative-margin-start": (
+ responsive: true,
+ property: margin-left,
+ class: ms,
+ values: $negative-spacers
+ ),
+ // Padding utilities
+ "padding": (
+ responsive: true,
+ property: padding,
+ class: p,
+ values: $spacers
+ ),
+ "padding-x": (
+ responsive: true,
+ property: padding-right padding-left,
+ class: px,
+ values: $spacers
+ ),
+ "padding-y": (
+ responsive: true,
+ property: padding-top padding-bottom,
+ class: py,
+ values: $spacers
+ ),
+ "padding-top": (
+ responsive: true,
+ property: padding-top,
+ class: pt,
+ values: $spacers
+ ),
+ "padding-end": (
+ responsive: true,
+ property: padding-right,
+ class: pe,
+ values: $spacers
+ ),
+ "padding-bottom": (
+ responsive: true,
+ property: padding-bottom,
+ class: pb,
+ values: $spacers
+ ),
+ "padding-start": (
+ responsive: true,
+ property: padding-left,
+ class: ps,
+ values: $spacers
+ ),
+ // Gap utility
+ "gap": (
+ responsive: true,
+ property: gap,
+ class: gap,
+ values: $spacers
+ ),
+ // scss-docs-end utils-spacing
+ // Text
+ // scss-docs-start utils-text
+ "font-family": (
+ property: font-family,
+ class: font,
+ values: (monospace: var(--#{$prefix}font-monospace))
+ ),
+ "font-size": (
+ rfs: true,
+ property: font-size,
+ class: fs,
+ values: $font-sizes
+ ),
+ "font-style": (
+ property: font-style,
+ class: fst,
+ values: italic normal
+ ),
+ "font-weight": (
+ property: font-weight,
+ class: fw,
+ values: (
+ light: $font-weight-light,
+ lighter: $font-weight-lighter,
+ normal: $font-weight-normal,
+ bold: $font-weight-bold,
+ semibold: $font-weight-semibold,
+ bolder: $font-weight-bolder
+ )
+ ),
+ "line-height": (
+ property: line-height,
+ class: lh,
+ values: (
+ 1: 1,
+ sm: $line-height-sm,
+ base: $line-height-base,
+ lg: $line-height-lg,
+ )
+ ),
+ "text-align": (
+ responsive: true,
+ property: text-align,
+ class: text,
+ values: (
+ start: left,
+ end: right,
+ center: center,
+ )
+ ),
+ "text-decoration": (
+ property: text-decoration,
+ values: none underline line-through
+ ),
+ "text-transform": (
+ property: text-transform,
+ class: text,
+ values: lowercase uppercase capitalize
+ ),
+ "white-space": (
+ property: white-space,
+ class: text,
+ values: (
+ wrap: normal,
+ nowrap: nowrap,
+ )
+ ),
+ "word-wrap": (
+ property: word-wrap word-break,
+ class: text,
+ values: (break: break-word),
+ rtl: false
+ ),
+ // scss-docs-end utils-text
+ // scss-docs-start utils-color
+ "color": (
+ property: color,
+ class: text,
+ local-vars: (
+ "text-opacity": 1
+ ),
+ values: map-merge(
+ $utilities-text-colors,
+ (
+ "muted": $text-muted,
+ "black-50": rgba($black, .5), // deprecated
+ "white-50": rgba($white, .5), // deprecated
+ "reset": inherit,
+ )
+ )
+ ),
+ "text-opacity": (
+ css-var: true,
+ class: text-opacity,
+ values: (
+ 25: .25,
+ 50: .5,
+ 75: .75,
+ 100: 1
+ )
+ ),
+ // scss-docs-end utils-color
+ // scss-docs-start utils-bg-color
+ "background-color": (
+ property: background-color,
+ class: bg,
+ local-vars: (
+ "bg-opacity": 1
+ ),
+ values: map-merge(
+ $utilities-bg-colors,
+ (
+ "transparent": transparent
+ )
+ )
+ ),
+ "bg-opacity": (
+ css-var: true,
+ class: bg-opacity,
+ values: (
+ 10: .1,
+ 25: .25,
+ 50: .5,
+ 75: .75,
+ 100: 1
+ )
+ ),
+ // scss-docs-end utils-bg-color
+ "gradient": (
+ property: background-image,
+ class: bg,
+ values: (gradient: var(--#{$prefix}gradient))
+ ),
+ // scss-docs-start utils-interaction
+ "user-select": (
+ property: user-select,
+ values: all auto none
+ ),
+ "pointer-events": (
+ property: pointer-events,
+ class: pe,
+ values: none auto,
+ ),
+ // scss-docs-end utils-interaction
+ // scss-docs-start utils-border-radius
+ "rounded": (
+ property: border-radius,
+ class: rounded,
+ values: (
+ null: var(--#{$prefix}border-radius),
+ 0: 0,
+ 1: var(--#{$prefix}border-radius-sm),
+ 2: var(--#{$prefix}border-radius),
+ 3: var(--#{$prefix}border-radius-lg),
+ 4: var(--#{$prefix}border-radius-xl),
+ 5: var(--#{$prefix}border-radius-2xl),
+ circle: 50%,
+ pill: var(--#{$prefix}border-radius-pill)
+ )
+ ),
+ "rounded-top": (
+ property: border-top-left-radius border-top-right-radius,
+ class: rounded-top,
+ values: (null: var(--#{$prefix}border-radius))
+ ),
+ "rounded-end": (
+ property: border-top-right-radius border-bottom-right-radius,
+ class: rounded-end,
+ values: (null: var(--#{$prefix}border-radius))
+ ),
+ "rounded-bottom": (
+ property: border-bottom-right-radius border-bottom-left-radius,
+ class: rounded-bottom,
+ values: (null: var(--#{$prefix}border-radius))
+ ),
+ "rounded-start": (
+ property: border-bottom-left-radius border-top-left-radius,
+ class: rounded-start,
+ values: (null: var(--#{$prefix}border-radius))
+ ),
+ // scss-docs-end utils-border-radius
+ // scss-docs-start utils-visibility
+ "visibility": (
+ property: visibility,
+ class: null,
+ values: (
+ visible: visible,
+ invisible: hidden,
+ )
+ )
+ // scss-docs-end utils-visibility
+ ),
+ $utilities
+);
diff --git a/dasena-web/public/assets/admin/scss/bootstrap/_variables.scss b/dasena-web/public/assets/admin/scss/bootstrap/_variables.scss
new file mode 100644
index 0000000..2346575
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/bootstrap/_variables.scss
@@ -0,0 +1,1631 @@
+// Variables
+//
+// Variables should follow the `$component-state-property-size` formula for
+// consistent naming. Ex: $nav-link-disabled-color and $modal-content-box-shadow-xs.
+
+// Color system
+
+// scss-docs-start gray-color-variables
+$white: #fff !default;
+$gray-100: #f8f9fa !default;
+$gray-200: #e9ecef !default;
+$gray-300: #dee2e6 !default;
+$gray-400: #ced4da !default;
+$gray-500: #adb5bd !default;
+$gray-600: #6c757d !default;
+$gray-700: #495057 !default;
+$gray-800: #343a40 !default;
+$gray-900: #212529 !default;
+$black: #000 !default;
+// scss-docs-end gray-color-variables
+
+// fusv-disable
+// scss-docs-start gray-colors-map
+$grays: (
+ "100": $gray-100,
+ "200": $gray-200,
+ "300": $gray-300,
+ "400": $gray-400,
+ "500": $gray-500,
+ "600": $gray-600,
+ "700": $gray-700,
+ "800": $gray-800,
+ "900": $gray-900
+) !default;
+// scss-docs-end gray-colors-map
+// fusv-enable
+
+// scss-docs-start color-variables
+$blue: #0d6efd !default;
+$indigo: #6610f2 !default;
+$purple: #6f42c1 !default;
+$pink: #d63384 !default;
+$red: #dc3545 !default;
+$orange: #fd7e14 !default;
+$yellow: #ffc107 !default;
+$green: #198754 !default;
+$teal: #20c997 !default;
+$cyan: #0dcaf0 !default;
+// scss-docs-end color-variables
+
+// scss-docs-start colors-map
+$colors: (
+ "blue": $blue,
+ "indigo": $indigo,
+ "purple": $purple,
+ "pink": $pink,
+ "red": $red,
+ "orange": $orange,
+ "yellow": $yellow,
+ "green": $green,
+ "teal": $teal,
+ "cyan": $cyan,
+ "black": $black,
+ "white": $white,
+ "gray": $gray-600,
+ "gray-dark": $gray-800
+) !default;
+// scss-docs-end colors-map
+
+// The contrast ratio to reach against white, to determine if color changes from "light" to "dark". Acceptable values for WCAG 2.0 are 3, 4.5 and 7.
+// See https://www.w3.org/TR/WCAG20/#visual-audio-contrast-contrast
+$min-contrast-ratio: 4.5 !default;
+
+// Customize the light and dark text colors for use in our color contrast function.
+$color-contrast-dark: $black !default;
+$color-contrast-light: $white !default;
+
+// fusv-disable
+$blue-100: tint-color($blue, 80%) !default;
+$blue-200: tint-color($blue, 60%) !default;
+$blue-300: tint-color($blue, 40%) !default;
+$blue-400: tint-color($blue, 20%) !default;
+$blue-500: $blue !default;
+$blue-600: shade-color($blue, 20%) !default;
+$blue-700: shade-color($blue, 40%) !default;
+$blue-800: shade-color($blue, 60%) !default;
+$blue-900: shade-color($blue, 80%) !default;
+
+$indigo-100: tint-color($indigo, 80%) !default;
+$indigo-200: tint-color($indigo, 60%) !default;
+$indigo-300: tint-color($indigo, 40%) !default;
+$indigo-400: tint-color($indigo, 20%) !default;
+$indigo-500: $indigo !default;
+$indigo-600: shade-color($indigo, 20%) !default;
+$indigo-700: shade-color($indigo, 40%) !default;
+$indigo-800: shade-color($indigo, 60%) !default;
+$indigo-900: shade-color($indigo, 80%) !default;
+
+$purple-100: tint-color($purple, 80%) !default;
+$purple-200: tint-color($purple, 60%) !default;
+$purple-300: tint-color($purple, 40%) !default;
+$purple-400: tint-color($purple, 20%) !default;
+$purple-500: $purple !default;
+$purple-600: shade-color($purple, 20%) !default;
+$purple-700: shade-color($purple, 40%) !default;
+$purple-800: shade-color($purple, 60%) !default;
+$purple-900: shade-color($purple, 80%) !default;
+
+$pink-100: tint-color($pink, 80%) !default;
+$pink-200: tint-color($pink, 60%) !default;
+$pink-300: tint-color($pink, 40%) !default;
+$pink-400: tint-color($pink, 20%) !default;
+$pink-500: $pink !default;
+$pink-600: shade-color($pink, 20%) !default;
+$pink-700: shade-color($pink, 40%) !default;
+$pink-800: shade-color($pink, 60%) !default;
+$pink-900: shade-color($pink, 80%) !default;
+
+$red-100: tint-color($red, 80%) !default;
+$red-200: tint-color($red, 60%) !default;
+$red-300: tint-color($red, 40%) !default;
+$red-400: tint-color($red, 20%) !default;
+$red-500: $red !default;
+$red-600: shade-color($red, 20%) !default;
+$red-700: shade-color($red, 40%) !default;
+$red-800: shade-color($red, 60%) !default;
+$red-900: shade-color($red, 80%) !default;
+
+$orange-100: tint-color($orange, 80%) !default;
+$orange-200: tint-color($orange, 60%) !default;
+$orange-300: tint-color($orange, 40%) !default;
+$orange-400: tint-color($orange, 20%) !default;
+$orange-500: $orange !default;
+$orange-600: shade-color($orange, 20%) !default;
+$orange-700: shade-color($orange, 40%) !default;
+$orange-800: shade-color($orange, 60%) !default;
+$orange-900: shade-color($orange, 80%) !default;
+
+$yellow-100: tint-color($yellow, 80%) !default;
+$yellow-200: tint-color($yellow, 60%) !default;
+$yellow-300: tint-color($yellow, 40%) !default;
+$yellow-400: tint-color($yellow, 20%) !default;
+$yellow-500: $yellow !default;
+$yellow-600: shade-color($yellow, 20%) !default;
+$yellow-700: shade-color($yellow, 40%) !default;
+$yellow-800: shade-color($yellow, 60%) !default;
+$yellow-900: shade-color($yellow, 80%) !default;
+
+$green-100: tint-color($green, 80%) !default;
+$green-200: tint-color($green, 60%) !default;
+$green-300: tint-color($green, 40%) !default;
+$green-400: tint-color($green, 20%) !default;
+$green-500: $green !default;
+$green-600: shade-color($green, 20%) !default;
+$green-700: shade-color($green, 40%) !default;
+$green-800: shade-color($green, 60%) !default;
+$green-900: shade-color($green, 80%) !default;
+
+$teal-100: tint-color($teal, 80%) !default;
+$teal-200: tint-color($teal, 60%) !default;
+$teal-300: tint-color($teal, 40%) !default;
+$teal-400: tint-color($teal, 20%) !default;
+$teal-500: $teal !default;
+$teal-600: shade-color($teal, 20%) !default;
+$teal-700: shade-color($teal, 40%) !default;
+$teal-800: shade-color($teal, 60%) !default;
+$teal-900: shade-color($teal, 80%) !default;
+
+$cyan-100: tint-color($cyan, 80%) !default;
+$cyan-200: tint-color($cyan, 60%) !default;
+$cyan-300: tint-color($cyan, 40%) !default;
+$cyan-400: tint-color($cyan, 20%) !default;
+$cyan-500: $cyan !default;
+$cyan-600: shade-color($cyan, 20%) !default;
+$cyan-700: shade-color($cyan, 40%) !default;
+$cyan-800: shade-color($cyan, 60%) !default;
+$cyan-900: shade-color($cyan, 80%) !default;
+
+$blues: (
+ "blue-100": $blue-100,
+ "blue-200": $blue-200,
+ "blue-300": $blue-300,
+ "blue-400": $blue-400,
+ "blue-500": $blue-500,
+ "blue-600": $blue-600,
+ "blue-700": $blue-700,
+ "blue-800": $blue-800,
+ "blue-900": $blue-900
+) !default;
+
+$indigos: (
+ "indigo-100": $indigo-100,
+ "indigo-200": $indigo-200,
+ "indigo-300": $indigo-300,
+ "indigo-400": $indigo-400,
+ "indigo-500": $indigo-500,
+ "indigo-600": $indigo-600,
+ "indigo-700": $indigo-700,
+ "indigo-800": $indigo-800,
+ "indigo-900": $indigo-900
+) !default;
+
+$purples: (
+ "purple-100": $purple-100,
+ "purple-200": $purple-200,
+ "purple-300": $purple-300,
+ "purple-400": $purple-400,
+ "purple-500": $purple-500,
+ "purple-600": $purple-600,
+ "purple-700": $purple-700,
+ "purple-800": $purple-800,
+ "purple-900": $purple-900
+) !default;
+
+$pinks: (
+ "pink-100": $pink-100,
+ "pink-200": $pink-200,
+ "pink-300": $pink-300,
+ "pink-400": $pink-400,
+ "pink-500": $pink-500,
+ "pink-600": $pink-600,
+ "pink-700": $pink-700,
+ "pink-800": $pink-800,
+ "pink-900": $pink-900
+) !default;
+
+$reds: (
+ "red-100": $red-100,
+ "red-200": $red-200,
+ "red-300": $red-300,
+ "red-400": $red-400,
+ "red-500": $red-500,
+ "red-600": $red-600,
+ "red-700": $red-700,
+ "red-800": $red-800,
+ "red-900": $red-900
+) !default;
+
+$oranges: (
+ "orange-100": $orange-100,
+ "orange-200": $orange-200,
+ "orange-300": $orange-300,
+ "orange-400": $orange-400,
+ "orange-500": $orange-500,
+ "orange-600": $orange-600,
+ "orange-700": $orange-700,
+ "orange-800": $orange-800,
+ "orange-900": $orange-900
+) !default;
+
+$yellows: (
+ "yellow-100": $yellow-100,
+ "yellow-200": $yellow-200,
+ "yellow-300": $yellow-300,
+ "yellow-400": $yellow-400,
+ "yellow-500": $yellow-500,
+ "yellow-600": $yellow-600,
+ "yellow-700": $yellow-700,
+ "yellow-800": $yellow-800,
+ "yellow-900": $yellow-900
+) !default;
+
+$greens: (
+ "green-100": $green-100,
+ "green-200": $green-200,
+ "green-300": $green-300,
+ "green-400": $green-400,
+ "green-500": $green-500,
+ "green-600": $green-600,
+ "green-700": $green-700,
+ "green-800": $green-800,
+ "green-900": $green-900
+) !default;
+
+$teals: (
+ "teal-100": $teal-100,
+ "teal-200": $teal-200,
+ "teal-300": $teal-300,
+ "teal-400": $teal-400,
+ "teal-500": $teal-500,
+ "teal-600": $teal-600,
+ "teal-700": $teal-700,
+ "teal-800": $teal-800,
+ "teal-900": $teal-900
+) !default;
+
+$cyans: (
+ "cyan-100": $cyan-100,
+ "cyan-200": $cyan-200,
+ "cyan-300": $cyan-300,
+ "cyan-400": $cyan-400,
+ "cyan-500": $cyan-500,
+ "cyan-600": $cyan-600,
+ "cyan-700": $cyan-700,
+ "cyan-800": $cyan-800,
+ "cyan-900": $cyan-900
+) !default;
+// fusv-enable
+
+// scss-docs-start theme-color-variables
+$primary: $blue !default;
+$secondary: $gray-600 !default;
+$success: $green !default;
+$info: $cyan !default;
+$warning: $yellow !default;
+$danger: $red !default;
+$light: $gray-100 !default;
+$dark: $gray-900 !default;
+// scss-docs-end theme-color-variables
+
+// scss-docs-start theme-colors-map
+$theme-colors: (
+ "primary": $primary,
+ "secondary": $secondary,
+ "success": $success,
+ "info": $info,
+ "warning": $warning,
+ "danger": $danger,
+ "light": $light,
+ "dark": $dark
+) !default;
+// scss-docs-end theme-colors-map
+
+// Characters which are escaped by the escape-svg function
+$escaped-characters: (
+ ("<", "%3c"),
+ (">", "%3e"),
+ ("#", "%23"),
+ ("(", "%28"),
+ (")", "%29"),
+) !default;
+
+// Options
+//
+// Quickly modify global styling by enabling or disabling optional features.
+
+$enable-caret: true !default;
+$enable-rounded: true !default;
+$enable-shadows: false !default;
+$enable-gradients: false !default;
+$enable-transitions: true !default;
+$enable-reduced-motion: true !default;
+$enable-smooth-scroll: true !default;
+$enable-grid-classes: true !default;
+$enable-container-classes: true !default;
+$enable-cssgrid: false !default;
+$enable-button-pointers: true !default;
+$enable-rfs: true !default;
+$enable-validation-icons: true !default;
+$enable-negative-margins: false !default;
+$enable-deprecation-messages: true !default;
+$enable-important-utilities: true !default;
+
+// Prefix for :root CSS variables
+
+$variable-prefix: bs- !default; // Deprecated in v5.2.0 for the shorter `$prefix`
+$prefix: $variable-prefix !default;
+
+// Gradient
+//
+// The gradient which is added to components if `$enable-gradients` is `true`
+// This gradient is also added to elements with `.bg-gradient`
+// scss-docs-start variable-gradient
+$gradient: linear-gradient(180deg, rgba($white, .15), rgba($white, 0)) !default;
+// scss-docs-end variable-gradient
+
+// Spacing
+//
+// Control the default styling of most Bootstrap elements by modifying these
+// variables. Mostly focused on spacing.
+// You can add more entries to the $spacers map, should you need more variation.
+
+// scss-docs-start spacer-variables-maps
+$spacer: 1rem !default;
+$spacers: (
+ 0: 0,
+ 1: $spacer * .25,
+ 2: $spacer * .5,
+ 3: $spacer,
+ 4: $spacer * 1.5,
+ 5: $spacer * 3,
+) !default;
+// scss-docs-end spacer-variables-maps
+
+// Position
+//
+// Define the edge positioning anchors of the position utilities.
+
+// scss-docs-start position-map
+$position-values: (
+ 0: 0,
+ 50: 50%,
+ 100: 100%
+) !default;
+// scss-docs-end position-map
+
+// Body
+//
+// Settings for the `` element.
+
+$body-bg: $white !default;
+$body-color: $gray-900 !default;
+$body-text-align: null !default;
+
+// Links
+//
+// Style anchor elements.
+
+$link-color: $primary !default;
+$link-decoration: underline !default;
+$link-shade-percentage: 20% !default;
+$link-hover-color: shift-color($link-color, $link-shade-percentage) !default;
+$link-hover-decoration: null !default;
+
+$stretched-link-pseudo-element: after !default;
+$stretched-link-z-index: 1 !default;
+
+// Paragraphs
+//
+// Style p element.
+
+$paragraph-margin-bottom: 1rem !default;
+
+
+// Grid breakpoints
+//
+// Define the minimum dimensions at which your layout will change,
+// adapting to different screen sizes, for use in media queries.
+
+// scss-docs-start grid-breakpoints
+$grid-breakpoints: (
+ xs: 0,
+ sm: 576px,
+ md: 768px,
+ lg: 992px,
+ xl: 1200px,
+ xxl: 1400px
+) !default;
+// scss-docs-end grid-breakpoints
+
+@include _assert-ascending($grid-breakpoints, "$grid-breakpoints");
+@include _assert-starts-at-zero($grid-breakpoints, "$grid-breakpoints");
+
+
+// Grid containers
+//
+// Define the maximum width of `.container` for different screen sizes.
+
+// scss-docs-start container-max-widths
+$container-max-widths: (
+ sm: 540px,
+ md: 720px,
+ lg: 960px,
+ xl: 1140px,
+ xxl: 1320px
+) !default;
+// scss-docs-end container-max-widths
+
+@include _assert-ascending($container-max-widths, "$container-max-widths");
+
+
+// Grid columns
+//
+// Set the number of columns and specify the width of the gutters.
+
+$grid-columns: 12 !default;
+$grid-gutter-width: 1.5rem !default;
+$grid-row-columns: 6 !default;
+
+// Container padding
+
+$container-padding-x: $grid-gutter-width !default;
+
+
+// Components
+//
+// Define common padding and border radius sizes and more.
+
+// scss-docs-start border-variables
+$border-width: 1px !default;
+$border-widths: (
+ 1: 1px,
+ 2: 2px,
+ 3: 3px,
+ 4: 4px,
+ 5: 5px
+) !default;
+
+$border-style: solid !default;
+$border-color: $gray-300 !default;
+$border-color-translucent: rgba($black, .175) !default;
+// scss-docs-end border-variables
+
+// scss-docs-start border-radius-variables
+$border-radius: .375rem !default;
+$border-radius-sm: .25rem !default;
+$border-radius-lg: .5rem !default;
+$border-radius-xl: 1rem !default;
+$border-radius-2xl: 2rem !default;
+$border-radius-pill: 50rem !default;
+// scss-docs-end border-radius-variables
+
+// scss-docs-start box-shadow-variables
+$box-shadow: 0 .5rem 1rem rgba($black, .15) !default;
+$box-shadow-sm: 0 .125rem .25rem rgba($black, .075) !default;
+$box-shadow-lg: 0 1rem 3rem rgba($black, .175) !default;
+$box-shadow-inset: inset 0 1px 2px rgba($black, .075) !default;
+// scss-docs-end box-shadow-variables
+
+$component-active-color: $white !default;
+$component-active-bg: $primary !default;
+
+// scss-docs-start caret-variables
+$caret-width: .3em !default;
+$caret-vertical-align: $caret-width * .85 !default;
+$caret-spacing: $caret-width * .85 !default;
+// scss-docs-end caret-variables
+
+$transition-base: all .2s ease !default;
+$transition-fade: opacity .15s linear !default;
+// scss-docs-start collapse-transition
+$transition-collapse: height .35s ease !default;
+$transition-collapse-width: width .35s ease !default;
+// scss-docs-end collapse-transition
+
+// stylelint-disable function-disallowed-list
+// scss-docs-start aspect-ratios
+$aspect-ratios: (
+ "1x1": 100%,
+ "4x3": calc(3 / 4 * 100%),
+ "16x9": calc(9 / 16 * 100%),
+ "21x9": calc(9 / 21 * 100%)
+) !default;
+// scss-docs-end aspect-ratios
+// stylelint-enable function-disallowed-list
+
+// Typography
+//
+// Font, line-height, and color for body text, headings, and more.
+
+// scss-docs-start font-variables
+// stylelint-disable value-keyword-case
+$font-family-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" !default;
+$font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !default;
+// stylelint-enable value-keyword-case
+$font-family-base: var(--#{$prefix}font-sans-serif) !default;
+$font-family-code: var(--#{$prefix}font-monospace) !default;
+
+// $font-size-root affects the value of `rem`, which is used for as well font sizes, paddings, and margins
+// $font-size-base affects the font size of the body text
+$font-size-root: null !default;
+$font-size-base: 1rem !default; // Assumes the browser default, typically `16px`
+$font-size-sm: $font-size-base * .875 !default;
+$font-size-lg: $font-size-base * 1.25 !default;
+
+$font-weight-lighter: lighter !default;
+$font-weight-light: 300 !default;
+$font-weight-normal: 400 !default;
+$font-weight-semibold: 600 !default;
+$font-weight-bold: 700 !default;
+$font-weight-bolder: bolder !default;
+
+$font-weight-base: $font-weight-normal !default;
+
+$line-height-base: 1.5 !default;
+$line-height-sm: 1.25 !default;
+$line-height-lg: 2 !default;
+
+$h1-font-size: $font-size-base * 2.5 !default;
+$h2-font-size: $font-size-base * 2 !default;
+$h3-font-size: $font-size-base * 1.75 !default;
+$h4-font-size: $font-size-base * 1.5 !default;
+$h5-font-size: $font-size-base * 1.25 !default;
+$h6-font-size: $font-size-base !default;
+// scss-docs-end font-variables
+
+// scss-docs-start font-sizes
+$font-sizes: (
+ 1: $h1-font-size,
+ 2: $h2-font-size,
+ 3: $h3-font-size,
+ 4: $h4-font-size,
+ 5: $h5-font-size,
+ 6: $h6-font-size
+) !default;
+// scss-docs-end font-sizes
+
+// scss-docs-start headings-variables
+$headings-margin-bottom: $spacer * .5 !default;
+$headings-font-family: null !default;
+$headings-font-style: null !default;
+$headings-font-weight: 500 !default;
+$headings-line-height: 1.2 !default;
+$headings-color: null !default;
+// scss-docs-end headings-variables
+
+// scss-docs-start display-headings
+$display-font-sizes: (
+ 1: 5rem,
+ 2: 4.5rem,
+ 3: 4rem,
+ 4: 3.5rem,
+ 5: 3rem,
+ 6: 2.5rem
+) !default;
+
+$display-font-weight: 300 !default;
+$display-line-height: $headings-line-height !default;
+// scss-docs-end display-headings
+
+// scss-docs-start type-variables
+$lead-font-size: $font-size-base * 1.25 !default;
+$lead-font-weight: 300 !default;
+
+$small-font-size: .875em !default;
+
+$sub-sup-font-size: .75em !default;
+
+$text-muted: rgba(var(--#{$prefix}body-color-rgb), .75) !default;
+
+$initialism-font-size: $small-font-size !default;
+
+$blockquote-margin-y: $spacer !default;
+$blockquote-font-size: $font-size-base * 1.25 !default;
+$blockquote-footer-color: $gray-600 !default;
+$blockquote-footer-font-size: $small-font-size !default;
+
+$hr-margin-y: $spacer !default;
+$hr-color: inherit !default;
+
+// fusv-disable
+$hr-bg-color: null !default; // Deprecated in v5.2.0
+$hr-height: null !default; // Deprecated in v5.2.0
+// fusv-enable
+
+$hr-border-color: null !default; // Allows for inherited colors
+$hr-border-width: $border-width !default;
+$hr-opacity: .25 !default;
+
+$legend-margin-bottom: .5rem !default;
+$legend-font-size: 1.5rem !default;
+$legend-font-weight: null !default;
+
+$dt-font-weight: $font-weight-bold !default;
+
+$list-inline-padding: .5rem !default;
+
+$mark-padding: .1875em !default;
+$mark-bg: $yellow-100 !default;
+// scss-docs-end type-variables
+
+
+// Tables
+//
+// Customizes the `.table` component with basic values, each used across all table variations.
+
+// scss-docs-start table-variables
+$table-cell-padding-y: .5rem !default;
+$table-cell-padding-x: .5rem !default;
+$table-cell-padding-y-sm: .25rem !default;
+$table-cell-padding-x-sm: .25rem !default;
+
+$table-cell-vertical-align: top !default;
+
+$table-color: var(--#{$prefix}body-color) !default;
+$table-bg: transparent !default;
+$table-accent-bg: transparent !default;
+
+$table-th-font-weight: null !default;
+
+$table-striped-color: $table-color !default;
+$table-striped-bg-factor: .05 !default;
+$table-striped-bg: rgba($black, $table-striped-bg-factor) !default;
+
+$table-active-color: $table-color !default;
+$table-active-bg-factor: .1 !default;
+$table-active-bg: rgba($black, $table-active-bg-factor) !default;
+
+$table-hover-color: $table-color !default;
+$table-hover-bg-factor: .075 !default;
+$table-hover-bg: rgba($black, $table-hover-bg-factor) !default;
+
+$table-border-factor: .1 !default;
+$table-border-width: $border-width !default;
+$table-border-color: var(--#{$prefix}border-color) !default;
+
+$table-striped-order: odd !default;
+$table-striped-columns-order: even !default;
+
+$table-group-separator-color: currentcolor !default;
+
+$table-caption-color: $text-muted !default;
+
+$table-bg-scale: -80% !default;
+// scss-docs-end table-variables
+
+// scss-docs-start table-loop
+$table-variants: (
+ "primary": shift-color($primary, $table-bg-scale),
+ "secondary": shift-color($secondary, $table-bg-scale),
+ "success": shift-color($success, $table-bg-scale),
+ "info": shift-color($info, $table-bg-scale),
+ "warning": shift-color($warning, $table-bg-scale),
+ "danger": shift-color($danger, $table-bg-scale),
+ "light": $light,
+ "dark": $dark,
+) !default;
+// scss-docs-end table-loop
+
+
+// Buttons + Forms
+//
+// Shared variables that are reassigned to `$input-` and `$btn-` specific variables.
+
+// scss-docs-start input-btn-variables
+$input-btn-padding-y: .375rem !default;
+$input-btn-padding-x: .75rem !default;
+$input-btn-font-family: null !default;
+$input-btn-font-size: $font-size-base !default;
+$input-btn-line-height: $line-height-base !default;
+
+$input-btn-focus-width: .25rem !default;
+$input-btn-focus-color-opacity: .25 !default;
+$input-btn-focus-color: rgba($component-active-bg, $input-btn-focus-color-opacity) !default;
+$input-btn-focus-blur: 0 !default;
+$input-btn-focus-box-shadow: 0 0 $input-btn-focus-blur $input-btn-focus-width $input-btn-focus-color !default;
+
+$input-btn-padding-y-sm: .25rem !default;
+$input-btn-padding-x-sm: .5rem !default;
+$input-btn-font-size-sm: $font-size-sm !default;
+
+$input-btn-padding-y-lg: .5rem !default;
+$input-btn-padding-x-lg: 1rem !default;
+$input-btn-font-size-lg: $font-size-lg !default;
+
+$input-btn-border-width: $border-width !default;
+// scss-docs-end input-btn-variables
+
+
+// Buttons
+//
+// For each of Bootstrap's buttons, define text, background, and border color.
+
+// scss-docs-start btn-variables
+$btn-padding-y: $input-btn-padding-y !default;
+$btn-padding-x: $input-btn-padding-x !default;
+$btn-font-family: $input-btn-font-family !default;
+$btn-font-size: $input-btn-font-size !default;
+$btn-line-height: $input-btn-line-height !default;
+$btn-white-space: null !default; // Set to `nowrap` to prevent text wrapping
+
+$btn-padding-y-sm: $input-btn-padding-y-sm !default;
+$btn-padding-x-sm: $input-btn-padding-x-sm !default;
+$btn-font-size-sm: $input-btn-font-size-sm !default;
+
+$btn-padding-y-lg: $input-btn-padding-y-lg !default;
+$btn-padding-x-lg: $input-btn-padding-x-lg !default;
+$btn-font-size-lg: $input-btn-font-size-lg !default;
+
+$btn-border-width: $input-btn-border-width !default;
+
+$btn-font-weight: $font-weight-normal !default;
+$btn-box-shadow: inset 0 1px 0 rgba($white, .15), 0 1px 1px rgba($black, .075) !default;
+$btn-focus-width: $input-btn-focus-width !default;
+$btn-focus-box-shadow: $input-btn-focus-box-shadow !default;
+$btn-disabled-opacity: .65 !default;
+$btn-active-box-shadow: inset 0 3px 5px rgba($black, .125) !default;
+
+$btn-link-color: var(--#{$prefix}link-color) !default;
+$btn-link-hover-color: var(--#{$prefix}link-hover-color) !default;
+$btn-link-disabled-color: $gray-600 !default;
+
+// Allows for customizing button radius independently from global border radius
+$btn-border-radius: $border-radius !default;
+$btn-border-radius-sm: $border-radius-sm !default;
+$btn-border-radius-lg: $border-radius-lg !default;
+
+$btn-transition: color .15s ease, background-color .15s ease, border-color .15s ease, box-shadow .15s ease !default;
+
+$btn-hover-bg-shade-amount: 15% !default;
+$btn-hover-bg-tint-amount: 15% !default;
+$btn-hover-border-shade-amount: 20% !default;
+$btn-hover-border-tint-amount: 10% !default;
+$btn-active-bg-shade-amount: 20% !default;
+$btn-active-bg-tint-amount: 20% !default;
+$btn-active-border-shade-amount: 25% !default;
+$btn-active-border-tint-amount: 10% !default;
+// scss-docs-end btn-variables
+
+
+// Forms
+
+// scss-docs-start form-text-variables
+$form-text-margin-top: .25rem !default;
+$form-text-font-size: $small-font-size !default;
+$form-text-font-style: null !default;
+$form-text-font-weight: null !default;
+$form-text-color: $text-muted !default;
+// scss-docs-end form-text-variables
+
+// scss-docs-start form-label-variables
+$form-label-margin-bottom: .5rem !default;
+$form-label-font-size: null !default;
+$form-label-font-style: null !default;
+$form-label-font-weight: null !default;
+$form-label-color: null !default;
+// scss-docs-end form-label-variables
+
+// scss-docs-start form-input-variables
+$input-padding-y: $input-btn-padding-y !default;
+$input-padding-x: $input-btn-padding-x !default;
+$input-font-family: $input-btn-font-family !default;
+$input-font-size: $input-btn-font-size !default;
+$input-font-weight: $font-weight-base !default;
+$input-line-height: $input-btn-line-height !default;
+
+$input-padding-y-sm: $input-btn-padding-y-sm !default;
+$input-padding-x-sm: $input-btn-padding-x-sm !default;
+$input-font-size-sm: $input-btn-font-size-sm !default;
+
+$input-padding-y-lg: $input-btn-padding-y-lg !default;
+$input-padding-x-lg: $input-btn-padding-x-lg !default;
+$input-font-size-lg: $input-btn-font-size-lg !default;
+
+$input-bg: $body-bg !default;
+$input-disabled-color: null !default;
+$input-disabled-bg: $gray-200 !default;
+$input-disabled-border-color: null !default;
+
+$input-color: $body-color !default;
+$input-border-color: $gray-400 !default;
+$input-border-width: $input-btn-border-width !default;
+$input-box-shadow: $box-shadow-inset !default;
+
+$input-border-radius: $border-radius !default;
+$input-border-radius-sm: $border-radius-sm !default;
+$input-border-radius-lg: $border-radius-lg !default;
+
+$input-focus-bg: $input-bg !default;
+$input-focus-border-color: tint-color($component-active-bg, 50%) !default;
+$input-focus-color: $input-color !default;
+$input-focus-width: $input-btn-focus-width !default;
+$input-focus-box-shadow: $input-btn-focus-box-shadow !default;
+
+$input-placeholder-color: $gray-600 !default;
+$input-plaintext-color: $body-color !default;
+
+$input-height-border: $input-border-width * 2 !default;
+
+$input-height-inner: add($input-line-height * 1em, $input-padding-y * 2) !default;
+$input-height-inner-half: add($input-line-height * .5em, $input-padding-y) !default;
+$input-height-inner-quarter: add($input-line-height * .25em, $input-padding-y * .5) !default;
+
+$input-height: add($input-line-height * 1em, add($input-padding-y * 2, $input-height-border, false)) !default;
+$input-height-sm: add($input-line-height * 1em, add($input-padding-y-sm * 2, $input-height-border, false)) !default;
+$input-height-lg: add($input-line-height * 1em, add($input-padding-y-lg * 2, $input-height-border, false)) !default;
+
+$input-transition: border-color .15s ease, box-shadow .15s ease !default;
+
+$form-color-width: 3rem !default;
+// scss-docs-end form-input-variables
+
+// scss-docs-start form-check-variables
+$form-check-input-width: 1em !default;
+$form-check-min-height: $font-size-base * $line-height-base !default;
+$form-check-padding-start: $form-check-input-width + .5em !default;
+$form-check-margin-bottom: .125rem !default;
+$form-check-label-color: null !default;
+$form-check-label-cursor: null !default;
+$form-check-transition: null !default;
+
+$form-check-input-active-filter: brightness(90%) !default;
+
+$form-check-input-bg: $input-bg !default;
+$form-check-input-border: 1px solid rgba($black, .25) !default;
+$form-check-input-border-radius: .25em !default;
+$form-check-radio-border-radius: 50% !default;
+$form-check-input-focus-border: $input-focus-border-color !default;
+$form-check-input-focus-box-shadow: $input-btn-focus-box-shadow !default;
+
+$form-check-input-checked-color: $component-active-color !default;
+$form-check-input-checked-bg-color: $component-active-bg !default;
+$form-check-input-checked-border-color: $form-check-input-checked-bg-color !default;
+$form-check-input-checked-bg-image: url("data:image/svg+xml,
") !default;
+$form-check-radio-checked-bg-image: url("data:image/svg+xml,
") !default;
+
+$form-check-input-indeterminate-color: $component-active-color !default;
+$form-check-input-indeterminate-bg-color: $component-active-bg !default;
+$form-check-input-indeterminate-border-color: $form-check-input-indeterminate-bg-color !default;
+$form-check-input-indeterminate-bg-image: url("data:image/svg+xml,
") !default;
+
+$form-check-input-disabled-opacity: .5 !default;
+$form-check-label-disabled-opacity: $form-check-input-disabled-opacity !default;
+$form-check-btn-check-disabled-opacity: $btn-disabled-opacity !default;
+
+$form-check-inline-margin-end: 1rem !default;
+// scss-docs-end form-check-variables
+
+// scss-docs-start form-switch-variables
+$form-switch-color: rgba($black, .25) !default;
+$form-switch-width: 2em !default;
+$form-switch-padding-start: $form-switch-width + .5em !default;
+$form-switch-bg-image: url("data:image/svg+xml,
") !default;
+$form-switch-border-radius: $form-switch-width !default;
+$form-switch-transition: background-position .15s ease !default;
+
+$form-switch-focus-color: $input-focus-border-color !default;
+$form-switch-focus-bg-image: url("data:image/svg+xml,
") !default;
+
+$form-switch-checked-color: $component-active-color !default;
+$form-switch-checked-bg-image: url("data:image/svg+xml,
") !default;
+$form-switch-checked-bg-position: right center !default;
+// scss-docs-end form-switch-variables
+
+// scss-docs-start input-group-variables
+$input-group-addon-padding-y: $input-padding-y !default;
+$input-group-addon-padding-x: $input-padding-x !default;
+$input-group-addon-font-weight: $input-font-weight !default;
+$input-group-addon-color: $input-color !default;
+$input-group-addon-bg: $gray-200 !default;
+$input-group-addon-border-color: $input-border-color !default;
+// scss-docs-end input-group-variables
+
+// scss-docs-start form-select-variables
+$form-select-padding-y: $input-padding-y !default;
+$form-select-padding-x: $input-padding-x !default;
+$form-select-font-family: $input-font-family !default;
+$form-select-font-size: $input-font-size !default;
+$form-select-indicator-padding: $form-select-padding-x * 3 !default; // Extra padding for background-image
+$form-select-font-weight: $input-font-weight !default;
+$form-select-line-height: $input-line-height !default;
+$form-select-color: $input-color !default;
+$form-select-bg: $input-bg !default;
+$form-select-disabled-color: null !default;
+$form-select-disabled-bg: $gray-200 !default;
+$form-select-disabled-border-color: $input-disabled-border-color !default;
+$form-select-bg-position: right $form-select-padding-x center !default;
+$form-select-bg-size: 16px 12px !default; // In pixels because image dimensions
+$form-select-indicator-color: $gray-800 !default;
+$form-select-indicator: url("data:image/svg+xml,
") !default;
+
+$form-select-feedback-icon-padding-end: $form-select-padding-x * 2.5 + $form-select-indicator-padding !default;
+$form-select-feedback-icon-position: center right $form-select-indicator-padding !default;
+$form-select-feedback-icon-size: $input-height-inner-half $input-height-inner-half !default;
+
+$form-select-border-width: $input-border-width !default;
+$form-select-border-color: $input-border-color !default;
+$form-select-border-radius: $input-border-radius !default;
+$form-select-box-shadow: $box-shadow-inset !default;
+
+$form-select-focus-border-color: $input-focus-border-color !default;
+$form-select-focus-width: $input-focus-width !default;
+$form-select-focus-box-shadow: 0 0 0 $form-select-focus-width $input-btn-focus-color !default;
+
+$form-select-padding-y-sm: $input-padding-y-sm !default;
+$form-select-padding-x-sm: $input-padding-x-sm !default;
+$form-select-font-size-sm: $input-font-size-sm !default;
+$form-select-border-radius-sm: $input-border-radius-sm !default;
+
+$form-select-padding-y-lg: $input-padding-y-lg !default;
+$form-select-padding-x-lg: $input-padding-x-lg !default;
+$form-select-font-size-lg: $input-font-size-lg !default;
+$form-select-border-radius-lg: $input-border-radius-lg !default;
+
+$form-select-transition: $input-transition !default;
+// scss-docs-end form-select-variables
+
+// scss-docs-start form-range-variables
+$form-range-track-width: 100% !default;
+$form-range-track-height: .5rem !default;
+$form-range-track-cursor: pointer !default;
+$form-range-track-bg: $gray-300 !default;
+$form-range-track-border-radius: 1rem !default;
+$form-range-track-box-shadow: $box-shadow-inset !default;
+
+$form-range-thumb-width: 1rem !default;
+$form-range-thumb-height: $form-range-thumb-width !default;
+$form-range-thumb-bg: $component-active-bg !default;
+$form-range-thumb-border: 0 !default;
+$form-range-thumb-border-radius: 1rem !default;
+$form-range-thumb-box-shadow: 0 .1rem .25rem rgba($black, .1) !default;
+$form-range-thumb-focus-box-shadow: 0 0 0 1px $body-bg, $input-focus-box-shadow !default;
+$form-range-thumb-focus-box-shadow-width: $input-focus-width !default; // For focus box shadow issue in Edge
+$form-range-thumb-active-bg: tint-color($component-active-bg, 70%) !default;
+$form-range-thumb-disabled-bg: $gray-500 !default;
+$form-range-thumb-transition: background-color .15s ease, border-color .15s ease, box-shadow .15s ease !default;
+// scss-docs-end form-range-variables
+
+// scss-docs-start form-file-variables
+$form-file-button-color: $input-color !default;
+$form-file-button-bg: $input-group-addon-bg !default;
+$form-file-button-hover-bg: shade-color($form-file-button-bg, 5%) !default;
+// scss-docs-end form-file-variables
+
+// scss-docs-start form-floating-variables
+$form-floating-height: add(3.5rem, $input-height-border) !default;
+$form-floating-line-height: 1.25 !default;
+$form-floating-padding-x: $input-padding-x !default;
+$form-floating-padding-y: 1rem !default;
+$form-floating-input-padding-t: 1.625rem !default;
+$form-floating-input-padding-b: .625rem !default;
+$form-floating-label-opacity: .65 !default;
+$form-floating-label-transform: scale(.85) translateY(-.5rem) translateX(.15rem) !default;
+$form-floating-transition: opacity .1s ease, transform .1s ease !default;
+// scss-docs-end form-floating-variables
+
+// Form validation
+
+// scss-docs-start form-feedback-variables
+$form-feedback-margin-top: $form-text-margin-top !default;
+$form-feedback-font-size: $form-text-font-size !default;
+$form-feedback-font-style: $form-text-font-style !default;
+$form-feedback-valid-color: $success !default;
+$form-feedback-invalid-color: $danger !default;
+
+$form-feedback-icon-valid-color: $form-feedback-valid-color !default;
+$form-feedback-icon-valid: url("data:image/svg+xml,
") !default;
+$form-feedback-icon-invalid-color: $form-feedback-invalid-color !default;
+$form-feedback-icon-invalid: url("data:image/svg+xml,
") !default;
+// scss-docs-end form-feedback-variables
+
+// scss-docs-start form-validation-states
+$form-validation-states: (
+ "valid": (
+ "color": $form-feedback-valid-color,
+ "icon": $form-feedback-icon-valid
+ ),
+ "invalid": (
+ "color": $form-feedback-invalid-color,
+ "icon": $form-feedback-icon-invalid
+ )
+) !default;
+// scss-docs-end form-validation-states
+
+// Z-index master list
+//
+// Warning: Avoid customizing these values. They're used for a bird's eye view
+// of components dependent on the z-axis and are designed to all work together.
+
+// scss-docs-start zindex-stack
+$zindex-dropdown: 1000 !default;
+$zindex-sticky: 1020 !default;
+$zindex-fixed: 1030 !default;
+$zindex-offcanvas-backdrop: 1040 !default;
+$zindex-offcanvas: 1045 !default;
+$zindex-modal-backdrop: 1050 !default;
+$zindex-modal: 1055 !default;
+$zindex-popover: 1070 !default;
+$zindex-tooltip: 1080 !default;
+$zindex-toast: 1090 !default;
+// scss-docs-end zindex-stack
+
+
+// Navs
+
+// scss-docs-start nav-variables
+$nav-link-padding-y: .5rem !default;
+$nav-link-padding-x: 1rem !default;
+$nav-link-font-size: null !default;
+$nav-link-font-weight: null !default;
+$nav-link-color: var(--#{$prefix}link-color) !default;
+$nav-link-hover-color: var(--#{$prefix}link-hover-color) !default;
+$nav-link-transition: color .15s ease, background-color .15s ease, border-color .15s ease !default;
+$nav-link-disabled-color: $gray-600 !default;
+
+$nav-tabs-border-color: $gray-300 !default;
+$nav-tabs-border-width: $border-width !default;
+$nav-tabs-border-radius: $border-radius !default;
+$nav-tabs-link-hover-border-color: $gray-200 $gray-200 $nav-tabs-border-color !default;
+$nav-tabs-link-active-color: $gray-700 !default;
+$nav-tabs-link-active-bg: $body-bg !default;
+$nav-tabs-link-active-border-color: $gray-300 $gray-300 $nav-tabs-link-active-bg !default;
+
+$nav-pills-border-radius: $border-radius !default;
+$nav-pills-link-active-color: $component-active-color !default;
+$nav-pills-link-active-bg: $component-active-bg !default;
+// scss-docs-end nav-variables
+
+
+// Navbar
+
+// scss-docs-start navbar-variables
+$navbar-padding-y: $spacer * .5 !default;
+$navbar-padding-x: null !default;
+
+$navbar-nav-link-padding-x: .5rem !default;
+
+$navbar-brand-font-size: $font-size-lg !default;
+// Compute the navbar-brand padding-y so the navbar-brand will have the same height as navbar-text and nav-link
+$nav-link-height: $font-size-base * $line-height-base + $nav-link-padding-y * 2 !default;
+$navbar-brand-height: $navbar-brand-font-size * $line-height-base !default;
+$navbar-brand-padding-y: ($nav-link-height - $navbar-brand-height) * .5 !default;
+$navbar-brand-margin-end: 1rem !default;
+
+$navbar-toggler-padding-y: .25rem !default;
+$navbar-toggler-padding-x: .75rem !default;
+$navbar-toggler-font-size: $font-size-lg !default;
+$navbar-toggler-border-radius: $btn-border-radius !default;
+$navbar-toggler-focus-width: $btn-focus-width !default;
+$navbar-toggler-transition: box-shadow .15s ease !default;
+// scss-docs-end navbar-variables
+
+// scss-docs-start navbar-theme-variables
+$navbar-dark-color: rgba($white, .55) !default;
+$navbar-dark-hover-color: rgba($white, .75) !default;
+$navbar-dark-active-color: $white !default;
+$navbar-dark-disabled-color: rgba($white, .25) !default;
+$navbar-dark-toggler-icon-bg: url("data:image/svg+xml,
") !default;
+$navbar-dark-toggler-border-color: rgba($white, .1) !default;
+
+$navbar-light-color: rgba($black, .55) !default;
+$navbar-light-hover-color: rgba($black, .7) !default;
+$navbar-light-active-color: rgba($black, .9) !default;
+$navbar-light-disabled-color: rgba($black, .3) !default;
+$navbar-light-toggler-icon-bg: url("data:image/svg+xml,
") !default;
+$navbar-light-toggler-border-color: rgba($black, .1) !default;
+
+$navbar-light-brand-color: $navbar-light-active-color !default;
+$navbar-light-brand-hover-color: $navbar-light-active-color !default;
+$navbar-dark-brand-color: $navbar-dark-active-color !default;
+$navbar-dark-brand-hover-color: $navbar-dark-active-color !default;
+// scss-docs-end navbar-theme-variables
+
+
+// Dropdowns
+//
+// Dropdown menu container and contents.
+
+// scss-docs-start dropdown-variables
+$dropdown-min-width: 10rem !default;
+$dropdown-padding-x: 0 !default;
+$dropdown-padding-y: .5rem !default;
+$dropdown-spacer: .125rem !default;
+$dropdown-font-size: $font-size-base !default;
+$dropdown-color: $body-color !default;
+$dropdown-bg: $white !default;
+$dropdown-border-color: var(--#{$prefix}border-color-translucent) !default;
+$dropdown-border-radius: $border-radius !default;
+$dropdown-border-width: $border-width !default;
+$dropdown-inner-border-radius: subtract($dropdown-border-radius, $dropdown-border-width) !default;
+$dropdown-divider-bg: $dropdown-border-color !default;
+$dropdown-divider-margin-y: $spacer * .5 !default;
+$dropdown-box-shadow: $box-shadow !default;
+
+$dropdown-link-color: $gray-900 !default;
+$dropdown-link-hover-color: shade-color($dropdown-link-color, 10%) !default;
+$dropdown-link-hover-bg: $gray-200 !default;
+
+$dropdown-link-active-color: $component-active-color !default;
+$dropdown-link-active-bg: $component-active-bg !default;
+
+$dropdown-link-disabled-color: $gray-500 !default;
+
+$dropdown-item-padding-y: $spacer * .25 !default;
+$dropdown-item-padding-x: $spacer !default;
+
+$dropdown-header-color: $gray-600 !default;
+$dropdown-header-padding-x: $dropdown-item-padding-x !default;
+$dropdown-header-padding-y: $dropdown-padding-y !default;
+// fusv-disable
+$dropdown-header-padding: $dropdown-header-padding-y $dropdown-header-padding-x !default; // Deprecated in v5.2.0
+// fusv-enable
+// scss-docs-end dropdown-variables
+
+// scss-docs-start dropdown-dark-variables
+$dropdown-dark-color: $gray-300 !default;
+$dropdown-dark-bg: $gray-800 !default;
+$dropdown-dark-border-color: $dropdown-border-color !default;
+$dropdown-dark-divider-bg: $dropdown-divider-bg !default;
+$dropdown-dark-box-shadow: null !default;
+$dropdown-dark-link-color: $dropdown-dark-color !default;
+$dropdown-dark-link-hover-color: $white !default;
+$dropdown-dark-link-hover-bg: rgba($white, .15) !default;
+$dropdown-dark-link-active-color: $dropdown-link-active-color !default;
+$dropdown-dark-link-active-bg: $dropdown-link-active-bg !default;
+$dropdown-dark-link-disabled-color: $gray-500 !default;
+$dropdown-dark-header-color: $gray-500 !default;
+// scss-docs-end dropdown-dark-variables
+
+
+// Pagination
+
+// scss-docs-start pagination-variables
+$pagination-padding-y: .375rem !default;
+$pagination-padding-x: .75rem !default;
+$pagination-padding-y-sm: .25rem !default;
+$pagination-padding-x-sm: .5rem !default;
+$pagination-padding-y-lg: .75rem !default;
+$pagination-padding-x-lg: 1.5rem !default;
+
+$pagination-font-size: $font-size-base !default;
+
+$pagination-color: var(--#{$prefix}link-color) !default;
+$pagination-bg: $white !default;
+$pagination-border-radius: $border-radius !default;
+$pagination-border-width: $border-width !default;
+$pagination-margin-start: calc($pagination-border-width * -1) !default; // stylelint-disable-line function-disallowed-list
+$pagination-border-color: $gray-300 !default;
+
+$pagination-focus-color: var(--#{$prefix}link-hover-color) !default;
+$pagination-focus-bg: $gray-200 !default;
+$pagination-focus-box-shadow: $input-btn-focus-box-shadow !default;
+$pagination-focus-outline: 0 !default;
+
+$pagination-hover-color: var(--#{$prefix}link-hover-color) !default;
+$pagination-hover-bg: $gray-200 !default;
+$pagination-hover-border-color: $gray-300 !default;
+
+$pagination-active-color: $component-active-color !default;
+$pagination-active-bg: $component-active-bg !default;
+$pagination-active-border-color: $pagination-active-bg !default;
+
+$pagination-disabled-color: $gray-600 !default;
+$pagination-disabled-bg: $white !default;
+$pagination-disabled-border-color: $gray-300 !default;
+
+$pagination-transition: color .15s ease, background-color .15s ease, border-color .15s ease, box-shadow .15s ease !default;
+
+$pagination-border-radius-sm: $border-radius-sm !default;
+$pagination-border-radius-lg: $border-radius-lg !default;
+// scss-docs-end pagination-variables
+
+
+// Placeholders
+
+// scss-docs-start placeholders
+$placeholder-opacity-max: .5 !default;
+$placeholder-opacity-min: .2 !default;
+// scss-docs-end placeholders
+
+// Cards
+
+// scss-docs-start card-variables
+$card-spacer-y: $spacer !default;
+$card-spacer-x: $spacer !default;
+$card-title-spacer-y: $spacer * .5 !default;
+$card-border-width: $border-width !default;
+$card-border-color: var(--#{$prefix}border-color-translucent) !default;
+$card-border-radius: $border-radius !default;
+$card-box-shadow: null !default;
+$card-inner-border-radius: subtract($card-border-radius, $card-border-width) !default;
+$card-cap-padding-y: $card-spacer-y * .5 !default;
+$card-cap-padding-x: $card-spacer-x !default;
+$card-cap-bg: rgba($black, .03) !default;
+$card-cap-color: null !default;
+$card-height: null !default;
+$card-color: null !default;
+$card-bg: $white !default;
+$card-img-overlay-padding: $spacer !default;
+$card-group-margin: $grid-gutter-width * .5 !default;
+// scss-docs-end card-variables
+
+// Accordion
+
+// scss-docs-start accordion-variables
+$accordion-padding-y: 1rem !default;
+$accordion-padding-x: 1.25rem !default;
+$accordion-color: var(--#{$prefix}body-color) !default;
+$accordion-bg: $body-bg !default;
+$accordion-border-width: $border-width !default;
+$accordion-border-color: var(--#{$prefix}border-color) !default;
+$accordion-border-radius: $border-radius !default;
+$accordion-inner-border-radius: subtract($accordion-border-radius, $accordion-border-width) !default;
+
+$accordion-body-padding-y: $accordion-padding-y !default;
+$accordion-body-padding-x: $accordion-padding-x !default;
+
+$accordion-button-padding-y: $accordion-padding-y !default;
+$accordion-button-padding-x: $accordion-padding-x !default;
+$accordion-button-color: $accordion-color !default;
+$accordion-button-bg: var(--#{$prefix}accordion-bg) !default;
+$accordion-transition: $btn-transition, border-radius .15s ease !default;
+$accordion-button-active-bg: tint-color($component-active-bg, 90%) !default;
+$accordion-button-active-color: shade-color($primary, 10%) !default;
+
+$accordion-button-focus-border-color: $input-focus-border-color !default;
+$accordion-button-focus-box-shadow: $btn-focus-box-shadow !default;
+
+$accordion-icon-width: 1.25rem !default;
+$accordion-icon-color: $accordion-button-color !default;
+$accordion-icon-active-color: $accordion-button-active-color !default;
+$accordion-icon-transition: transform .2s ease !default;
+$accordion-icon-transform: rotate(-180deg) !default;
+
+$accordion-button-icon: url("data:image/svg+xml,
") !default;
+$accordion-button-active-icon: url("data:image/svg+xml,
") !default;
+// scss-docs-end accordion-variables
+
+// Tooltips
+
+// scss-docs-start tooltip-variables
+$tooltip-font-size: $font-size-sm !default;
+$tooltip-max-width: 200px !default;
+$tooltip-color: $white !default;
+$tooltip-bg: $black !default;
+$tooltip-border-radius: $border-radius !default;
+$tooltip-opacity: .9 !default;
+$tooltip-padding-y: $spacer * .25 !default;
+$tooltip-padding-x: $spacer * .5 !default;
+$tooltip-margin: null !default; // TODO: remove this in v6
+
+$tooltip-arrow-width: .8rem !default;
+$tooltip-arrow-height: .4rem !default;
+// fusv-disable
+$tooltip-arrow-color: null !default; // Deprecated in Bootstrap 5.2.0 for CSS variables
+// fusv-enable
+// scss-docs-end tooltip-variables
+
+// Form tooltips must come after regular tooltips
+// scss-docs-start tooltip-feedback-variables
+$form-feedback-tooltip-padding-y: $tooltip-padding-y !default;
+$form-feedback-tooltip-padding-x: $tooltip-padding-x !default;
+$form-feedback-tooltip-font-size: $tooltip-font-size !default;
+$form-feedback-tooltip-line-height: null !default;
+$form-feedback-tooltip-opacity: $tooltip-opacity !default;
+$form-feedback-tooltip-border-radius: $tooltip-border-radius !default;
+// scss-docs-end tooltip-feedback-variables
+
+
+// Popovers
+
+// scss-docs-start popover-variables
+$popover-font-size: $font-size-sm !default;
+$popover-bg: $white !default;
+$popover-max-width: 276px !default;
+$popover-border-width: $border-width !default;
+$popover-border-color: var(--#{$prefix}border-color-translucent) !default;
+$popover-border-radius: $border-radius-lg !default;
+$popover-inner-border-radius: subtract($popover-border-radius, $popover-border-width) !default;
+$popover-box-shadow: $box-shadow !default;
+
+$popover-header-font-size: $font-size-base !default;
+$popover-header-bg: shade-color($popover-bg, 6%) !default;
+$popover-header-color: var(--#{$prefix}heading-color) !default;
+$popover-header-padding-y: .5rem !default;
+$popover-header-padding-x: $spacer !default;
+
+$popover-body-color: $body-color !default;
+$popover-body-padding-y: $spacer !default;
+$popover-body-padding-x: $spacer !default;
+
+$popover-arrow-width: 1rem !default;
+$popover-arrow-height: .5rem !default;
+// scss-docs-end popover-variables
+
+// fusv-disable
+// Deprecated in Bootstrap 5.2.0 for CSS variables
+$popover-arrow-color: $popover-bg !default;
+$popover-arrow-outer-color: var(--#{$prefix}border-color-translucent) !default;
+// fusv-enable
+
+
+// Toasts
+
+// scss-docs-start toast-variables
+$toast-max-width: 350px !default;
+$toast-padding-x: .75rem !default;
+$toast-padding-y: .5rem !default;
+$toast-font-size: .875rem !default;
+$toast-color: null !default;
+$toast-background-color: rgba($white, .85) !default;
+$toast-border-width: $border-width !default;
+$toast-border-color: var(--#{$prefix}border-color-translucent) !default;
+$toast-border-radius: $border-radius !default;
+$toast-box-shadow: $box-shadow !default;
+$toast-spacing: $container-padding-x !default;
+
+$toast-header-color: $gray-600 !default;
+$toast-header-background-color: rgba($white, .85) !default;
+$toast-header-border-color: rgba($black, .05) !default;
+// scss-docs-end toast-variables
+
+
+// Badges
+
+// scss-docs-start badge-variables
+$badge-font-size: .75em !default;
+$badge-font-weight: $font-weight-bold !default;
+$badge-color: $white !default;
+$badge-padding-y: .35em !default;
+$badge-padding-x: .65em !default;
+$badge-border-radius: $border-radius !default;
+// scss-docs-end badge-variables
+
+
+// Modals
+
+// scss-docs-start modal-variables
+$modal-inner-padding: $spacer !default;
+
+$modal-footer-margin-between: .5rem !default;
+
+$modal-dialog-margin: .5rem !default;
+$modal-dialog-margin-y-sm-up: 1.75rem !default;
+
+$modal-title-line-height: $line-height-base !default;
+
+$modal-content-color: null !default;
+$modal-content-bg: $white !default;
+$modal-content-border-color: var(--#{$prefix}border-color-translucent) !default;
+$modal-content-border-width: $border-width !default;
+$modal-content-border-radius: $border-radius-lg !default;
+$modal-content-inner-border-radius: subtract($modal-content-border-radius, $modal-content-border-width) !default;
+$modal-content-box-shadow-xs: $box-shadow-sm !default;
+$modal-content-box-shadow-sm-up: $box-shadow !default;
+
+$modal-backdrop-bg: $black !default;
+$modal-backdrop-opacity: .5 !default;
+
+$modal-header-border-color: var(--#{$prefix}border-color) !default;
+$modal-header-border-width: $modal-content-border-width !default;
+$modal-header-padding-y: $modal-inner-padding !default;
+$modal-header-padding-x: $modal-inner-padding !default;
+$modal-header-padding: $modal-header-padding-y $modal-header-padding-x !default; // Keep this for backwards compatibility
+
+$modal-footer-bg: null !default;
+$modal-footer-border-color: $modal-header-border-color !default;
+$modal-footer-border-width: $modal-header-border-width !default;
+
+$modal-sm: 300px !default;
+$modal-md: 500px !default;
+$modal-lg: 800px !default;
+$modal-xl: 1140px !default;
+
+$modal-fade-transform: translate(0, -50px) !default;
+$modal-show-transform: none !default;
+$modal-transition: transform .3s ease-out !default;
+$modal-scale-transform: scale(1.02) !default;
+// scss-docs-end modal-variables
+
+
+// Alerts
+//
+// Define alert colors, border radius, and padding.
+
+// scss-docs-start alert-variables
+$alert-padding-y: $spacer !default;
+$alert-padding-x: $spacer !default;
+$alert-margin-bottom: 1rem !default;
+$alert-border-radius: $border-radius !default;
+$alert-link-font-weight: $font-weight-bold !default;
+$alert-border-width: $border-width !default;
+$alert-bg-scale: -80% !default;
+$alert-border-scale: -70% !default;
+$alert-color-scale: 40% !default;
+$alert-dismissible-padding-r: $alert-padding-x * 3 !default; // 3x covers width of x plus default padding on either side
+// scss-docs-end alert-variables
+
+
+// Progress bars
+
+// scss-docs-start progress-variables
+$progress-height: 1rem !default;
+$progress-font-size: $font-size-base * .75 !default;
+$progress-bg: $gray-200 !default;
+$progress-border-radius: $border-radius !default;
+$progress-box-shadow: $box-shadow-inset !default;
+$progress-bar-color: $white !default;
+$progress-bar-bg: $primary !default;
+$progress-bar-animation-timing: 1s linear infinite !default;
+$progress-bar-transition: width .6s ease !default;
+// scss-docs-end progress-variables
+
+
+// List group
+
+// scss-docs-start list-group-variables
+$list-group-color: $gray-900 !default;
+$list-group-bg: $white !default;
+$list-group-border-color: rgba($black, .125) !default;
+$list-group-border-width: $border-width !default;
+$list-group-border-radius: $border-radius !default;
+
+$list-group-item-padding-y: $spacer * .5 !default;
+$list-group-item-padding-x: $spacer !default;
+$list-group-item-bg-scale: -80% !default;
+$list-group-item-color-scale: 40% !default;
+
+$list-group-hover-bg: $gray-100 !default;
+$list-group-active-color: $component-active-color !default;
+$list-group-active-bg: $component-active-bg !default;
+$list-group-active-border-color: $list-group-active-bg !default;
+
+$list-group-disabled-color: $gray-600 !default;
+$list-group-disabled-bg: $list-group-bg !default;
+
+$list-group-action-color: $gray-700 !default;
+$list-group-action-hover-color: $list-group-action-color !default;
+
+$list-group-action-active-color: $body-color !default;
+$list-group-action-active-bg: $gray-200 !default;
+// scss-docs-end list-group-variables
+
+
+// Image thumbnails
+
+// scss-docs-start thumbnail-variables
+$thumbnail-padding: .25rem !default;
+$thumbnail-bg: $body-bg !default;
+$thumbnail-border-width: $border-width !default;
+$thumbnail-border-color: var(--#{$prefix}border-color) !default;
+$thumbnail-border-radius: $border-radius !default;
+$thumbnail-box-shadow: $box-shadow-sm !default;
+// scss-docs-end thumbnail-variables
+
+
+// Figures
+
+// scss-docs-start figure-variables
+$figure-caption-font-size: $small-font-size !default;
+$figure-caption-color: $gray-600 !default;
+// scss-docs-end figure-variables
+
+
+// Breadcrumbs
+
+// scss-docs-start breadcrumb-variables
+$breadcrumb-font-size: null !default;
+$breadcrumb-padding-y: 0 !default;
+$breadcrumb-padding-x: 0 !default;
+$breadcrumb-item-padding-x: .5rem !default;
+$breadcrumb-margin-bottom: 1rem !default;
+$breadcrumb-bg: null !default;
+$breadcrumb-divider-color: $gray-600 !default;
+$breadcrumb-active-color: $gray-600 !default;
+$breadcrumb-divider: quote("/") !default;
+$breadcrumb-divider-flipped: $breadcrumb-divider !default;
+$breadcrumb-border-radius: null !default;
+// scss-docs-end breadcrumb-variables
+
+// Carousel
+
+// scss-docs-start carousel-variables
+$carousel-control-color: $white !default;
+$carousel-control-width: 15% !default;
+$carousel-control-opacity: .5 !default;
+$carousel-control-hover-opacity: .9 !default;
+$carousel-control-transition: opacity .15s ease !default;
+
+$carousel-indicator-width: 30px !default;
+$carousel-indicator-height: 3px !default;
+$carousel-indicator-hit-area-height: 10px !default;
+$carousel-indicator-spacer: 3px !default;
+$carousel-indicator-opacity: .5 !default;
+$carousel-indicator-active-bg: $white !default;
+$carousel-indicator-active-opacity: 1 !default;
+$carousel-indicator-transition: opacity .6s ease !default;
+
+$carousel-caption-width: 70% !default;
+$carousel-caption-color: $white !default;
+$carousel-caption-padding-y: 1.25rem !default;
+$carousel-caption-spacer: 1.25rem !default;
+
+$carousel-control-icon-width: 2rem !default;
+
+$carousel-control-prev-icon-bg: url("data:image/svg+xml,
") !default;
+$carousel-control-next-icon-bg: url("data:image/svg+xml,
") !default;
+
+$carousel-transition-duration: .6s !default;
+$carousel-transition: transform $carousel-transition-duration ease !default; // Define transform transition first if using multiple transitions (e.g., `transform 2s ease, opacity .5s ease-out`)
+
+$carousel-dark-indicator-active-bg: $black !default;
+$carousel-dark-caption-color: $black !default;
+$carousel-dark-control-icon-filter: invert(1) grayscale(100) !default;
+// scss-docs-end carousel-variables
+
+
+// Spinners
+
+// scss-docs-start spinner-variables
+$spinner-width: 2rem !default;
+$spinner-height: $spinner-width !default;
+$spinner-vertical-align: -.125em !default;
+$spinner-border-width: .25em !default;
+$spinner-animation-speed: .75s !default;
+
+$spinner-width-sm: 1rem !default;
+$spinner-height-sm: $spinner-width-sm !default;
+$spinner-border-width-sm: .2em !default;
+// scss-docs-end spinner-variables
+
+
+// Close
+
+// scss-docs-start close-variables
+$btn-close-width: 1em !default;
+$btn-close-height: $btn-close-width !default;
+$btn-close-padding-x: .25em !default;
+$btn-close-padding-y: $btn-close-padding-x !default;
+$btn-close-color: $black !default;
+$btn-close-bg: url("data:image/svg+xml,
") !default;
+$btn-close-focus-shadow: $input-btn-focus-box-shadow !default;
+$btn-close-opacity: .5 !default;
+$btn-close-hover-opacity: .75 !default;
+$btn-close-focus-opacity: 1 !default;
+$btn-close-disabled-opacity: .25 !default;
+$btn-close-white-filter: invert(1) grayscale(100%) brightness(200%) !default;
+// scss-docs-end close-variables
+
+
+// Offcanvas
+
+// scss-docs-start offcanvas-variables
+$offcanvas-padding-y: $modal-inner-padding !default;
+$offcanvas-padding-x: $modal-inner-padding !default;
+$offcanvas-horizontal-width: 400px !default;
+$offcanvas-vertical-height: 30vh !default;
+$offcanvas-transition-duration: .3s !default;
+$offcanvas-border-color: $modal-content-border-color !default;
+$offcanvas-border-width: $modal-content-border-width !default;
+$offcanvas-title-line-height: $modal-title-line-height !default;
+$offcanvas-bg-color: $modal-content-bg !default;
+$offcanvas-color: $modal-content-color !default;
+$offcanvas-box-shadow: $modal-content-box-shadow-xs !default;
+$offcanvas-backdrop-bg: $modal-backdrop-bg !default;
+$offcanvas-backdrop-opacity: $modal-backdrop-opacity !default;
+// scss-docs-end offcanvas-variables
+
+// Code
+
+$code-font-size: $small-font-size !default;
+$code-color: $pink !default;
+
+$kbd-padding-y: .1875rem !default;
+$kbd-padding-x: .375rem !default;
+$kbd-font-size: $code-font-size !default;
+$kbd-color: var(--#{$prefix}body-bg) !default;
+$kbd-bg: var(--#{$prefix}body-color) !default;
+$nested-kbd-font-weight: null !default; // Deprecated in v5.2.0, removing in v6
+
+$pre-color: null !default;
diff --git a/dasena-web/public/assets/admin/scss/bootstrap/bootstrap-grid.scss b/dasena-web/public/assets/admin/scss/bootstrap/bootstrap-grid.scss
new file mode 100644
index 0000000..3c72e47
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/bootstrap/bootstrap-grid.scss
@@ -0,0 +1,32 @@
+/*!
+ * Bootstrap Grid v5.2.0-beta1 (https://getbootstrap.com/)
+ * Copyright 2011-2022 The Bootstrap Authors
+ * Copyright 2011-2022 Twitter, Inc.
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
+ */
+
+$include-column-box-sizing: true !default;
+
+@import "functions";
+@import "variables";
+@import "maps";
+
+@import "mixins/lists";
+@import "mixins/breakpoints";
+@import "mixins/container";
+@import "mixins/grid";
+@import "mixins/utilities";
+
+@import "vendor/rfs";
+
+@import "root";
+
+@import "containers";
+@import "grid";
+
+@import "utilities";
+// Only use the utilities we need
+// stylelint-disable-next-line scss/dollar-variable-default
+$utilities: map-get-multiple($utilities, ("display", "order", "flex", "flex-direction", "flex-grow", "flex-shrink", "flex-wrap", "justify-content", "align-items", "align-content", "align-self", "margin", "margin-x", "margin-y", "margin-top", "margin-end", "margin-bottom", "margin-start", "negative-margin", "negative-margin-x", "negative-margin-y", "negative-margin-top", "negative-margin-end", "negative-margin-bottom", "negative-margin-start", "padding", "padding-x", "padding-y", "padding-top", "padding-end", "padding-bottom", "padding-start"));
+
+@import "utilities/api";
diff --git a/dasena-web/public/assets/admin/scss/bootstrap/bootstrap-reboot.scss b/dasena-web/public/assets/admin/scss/bootstrap/bootstrap-reboot.scss
new file mode 100644
index 0000000..4bae00f
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/bootstrap/bootstrap-reboot.scss
@@ -0,0 +1,14 @@
+/*!
+ * Bootstrap Reboot v5.2.0-beta1 (https://getbootstrap.com/)
+ * Copyright 2011-2022 The Bootstrap Authors
+ * Copyright 2011-2022 Twitter, Inc.
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
+ * Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md)
+ */
+
+@import "functions";
+@import "variables";
+@import "maps";
+@import "mixins";
+@import "root";
+@import "reboot";
diff --git a/dasena-web/public/assets/admin/scss/bootstrap/bootstrap-utilities.scss b/dasena-web/public/assets/admin/scss/bootstrap/bootstrap-utilities.scss
new file mode 100644
index 0000000..43a40c5
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/bootstrap/bootstrap-utilities.scss
@@ -0,0 +1,19 @@
+/*!
+ * Bootstrap Utilities v5.2.0-beta1 (https://getbootstrap.com/)
+ * Copyright 2011-2022 The Bootstrap Authors
+ * Copyright 2011-2022 Twitter, Inc.
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
+ */
+
+// Configuration
+@import "functions";
+@import "variables";
+@import "maps";
+@import "mixins";
+@import "utilities";
+
+// Helpers
+@import "helpers";
+
+// Utilities
+@import "utilities/api";
diff --git a/dasena-web/public/assets/admin/scss/bootstrap/bootstrap.scss b/dasena-web/public/assets/admin/scss/bootstrap/bootstrap.scss
new file mode 100644
index 0000000..69132e1
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/bootstrap/bootstrap.scss
@@ -0,0 +1,55 @@
+/*!
+ * Bootstrap v5.2.0-beta1 (https://getbootstrap.com/)
+ * Copyright 2011-2022 The Bootstrap Authors
+ * Copyright 2011-2022 Twitter, Inc.
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
+ */
+
+// scss-docs-start import-stack
+// Configuration
+@import "functions";
+@import "variables";
+@import "./../themes/bs-custom-variables"; // Bootstrap Overwrite Variables
+@import "maps";
+@import "mixins";
+@import "utilities";
+
+// Layout & components
+@import "root";
+@import "reboot";
+@import "type";
+@import "images";
+@import "containers";
+@import "grid";
+@import "tables";
+@import "forms";
+@import "buttons";
+@import "transitions";
+@import "dropdown";
+@import "button-group";
+@import "nav";
+@import "navbar";
+@import "card";
+@import "accordion";
+@import "breadcrumb";
+@import "pagination";
+@import "badge";
+@import "alert";
+@import "progress";
+@import "list-group";
+@import "close";
+@import "toasts";
+@import "modal";
+@import "tooltip";
+@import "popover";
+@import "carousel";
+@import "spinners";
+@import "offcanvas";
+@import "placeholders";
+
+// Helpers
+@import "helpers";
+
+// Utilities
+@import "utilities/api";
+// scss-docs-end import-stack
diff --git a/dasena-web/public/assets/admin/scss/bootstrap/dist/bootstrap-grid.css b/dasena-web/public/assets/admin/scss/bootstrap/dist/bootstrap-grid.css
new file mode 100644
index 0000000..b1f0695
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/bootstrap/dist/bootstrap-grid.css
@@ -0,0 +1,5067 @@
+/*!
+ * Bootstrap Grid v5.2.0-beta1 (https://getbootstrap.com/)
+ * Copyright 2011-2022 The Bootstrap Authors
+ * Copyright 2011-2022 Twitter, Inc.
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
+ */
+:root {
+ --bs-blue: #0d6efd;
+ --bs-indigo: #6610f2;
+ --bs-purple: #6f42c1;
+ --bs-pink: #d63384;
+ --bs-red: #dc3545;
+ --bs-orange: #fd7e14;
+ --bs-yellow: #ffc107;
+ --bs-green: #198754;
+ --bs-teal: #20c997;
+ --bs-cyan: #0dcaf0;
+ --bs-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: #0d6efd;
+ --bs-secondary: #6c757d;
+ --bs-success: #198754;
+ --bs-info: #0dcaf0;
+ --bs-warning: #ffc107;
+ --bs-danger: #dc3545;
+ --bs-light: #f8f9fa;
+ --bs-dark: #212529;
+ --bs-primary-rgb: 13, 110, 253;
+ --bs-secondary-rgb: 108, 117, 125;
+ --bs-success-rgb: 25, 135, 84;
+ --bs-info-rgb: 13, 202, 240;
+ --bs-warning-rgb: 255, 193, 7;
+ --bs-danger-rgb: 220, 53, 69;
+ --bs-light-rgb: 248, 249, 250;
+ --bs-dark-rgb: 33, 37, 41;
+ --bs-white-rgb: 255, 255, 255;
+ --bs-black-rgb: 0, 0, 0;
+ --bs-body-color-rgb: 33, 37, 41;
+ --bs-body-bg-rgb: 255, 255, 255;
+ --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: var(--bs-font-sans-serif);
+ --bs-body-font-size:1rem;
+ --bs-body-font-weight: 400;
+ --bs-body-line-height: 1.5;
+ --bs-body-color: #212529;
+ --bs-body-bg: #fff;
+ --bs-border-width: 1px;
+ --bs-border-style: solid;
+ --bs-border-color: #dee2e6;
+ --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
+ --bs-border-radius: 0.375rem;
+ --bs-border-radius-sm: 0.25rem;
+ --bs-border-radius-lg: 0.5rem;
+ --bs-border-radius-xl: 1rem;
+ --bs-border-radius-2xl: 2rem;
+ --bs-border-radius-pill: 50rem;
+ --bs-heading-color: ;
+ --bs-link-color: #0d6efd;
+ --bs-link-hover-color: #0a58ca;
+ --bs-code-color: #d63384;
+ --bs-highlight-bg: #fff3cd;
+}
+
+.container,
+.container-fluid,
+.container-xxl,
+.container-xl,
+.container-lg,
+.container-md,
+.container-sm {
+ --bs-gutter-x: 1.5rem;
+ --bs-gutter-y: 0;
+ width: 100%;
+ padding-right: calc(var(--bs-gutter-x) * .5);
+ padding-left: calc(var(--bs-gutter-x) * .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;
+ }
+}
+.row {
+ --bs-gutter-x: 1.5rem;
+ --bs-gutter-y: 0;
+ display: flex;
+ flex-wrap: wrap;
+ margin-top: calc(-1 * var(--bs-gutter-y));
+ margin-right: calc(-.5 * var(--bs-gutter-x));
+ margin-left: calc(-.5 * var(--bs-gutter-x));
+}
+.row > * {
+ box-sizing: border-box;
+ flex-shrink: 0;
+ width: 100%;
+ max-width: 100%;
+ padding-right: calc(var(--bs-gutter-x) * .5);
+ padding-left: calc(var(--bs-gutter-x) * .5);
+ margin-top: var(--bs-gutter-y);
+}
+
+.col {
+ flex: 1 0 0%;
+}
+
+.row-cols-auto > * {
+ flex: 0 0 auto;
+ width: auto;
+}
+
+.row-cols-1 > * {
+ flex: 0 0 auto;
+ width: 100%;
+}
+
+.row-cols-2 > * {
+ flex: 0 0 auto;
+ width: 50%;
+}
+
+.row-cols-3 > * {
+ flex: 0 0 auto;
+ width: 33.3333333333%;
+}
+
+.row-cols-4 > * {
+ flex: 0 0 auto;
+ width: 25%;
+}
+
+.row-cols-5 > * {
+ flex: 0 0 auto;
+ width: 20%;
+}
+
+.row-cols-6 > * {
+ flex: 0 0 auto;
+ width: 16.6666666667%;
+}
+
+.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.3333333333%;
+ }
+
+ .row-cols-sm-4 > * {
+ flex: 0 0 auto;
+ width: 25%;
+ }
+
+ .row-cols-sm-5 > * {
+ flex: 0 0 auto;
+ width: 20%;
+ }
+
+ .row-cols-sm-6 > * {
+ flex: 0 0 auto;
+ width: 16.6666666667%;
+ }
+
+ .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.3333333333%;
+ }
+
+ .row-cols-md-4 > * {
+ flex: 0 0 auto;
+ width: 25%;
+ }
+
+ .row-cols-md-5 > * {
+ flex: 0 0 auto;
+ width: 20%;
+ }
+
+ .row-cols-md-6 > * {
+ flex: 0 0 auto;
+ width: 16.6666666667%;
+ }
+
+ .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.3333333333%;
+ }
+
+ .row-cols-lg-4 > * {
+ flex: 0 0 auto;
+ width: 25%;
+ }
+
+ .row-cols-lg-5 > * {
+ flex: 0 0 auto;
+ width: 20%;
+ }
+
+ .row-cols-lg-6 > * {
+ flex: 0 0 auto;
+ width: 16.6666666667%;
+ }
+
+ .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.3333333333%;
+ }
+
+ .row-cols-xl-4 > * {
+ flex: 0 0 auto;
+ width: 25%;
+ }
+
+ .row-cols-xl-5 > * {
+ flex: 0 0 auto;
+ width: 20%;
+ }
+
+ .row-cols-xl-6 > * {
+ flex: 0 0 auto;
+ width: 16.6666666667%;
+ }
+
+ .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.3333333333%;
+ }
+
+ .row-cols-xxl-4 > * {
+ flex: 0 0 auto;
+ width: 25%;
+ }
+
+ .row-cols-xxl-5 > * {
+ flex: 0 0 auto;
+ width: 20%;
+ }
+
+ .row-cols-xxl-6 > * {
+ flex: 0 0 auto;
+ width: 16.6666666667%;
+ }
+
+ .col-xxl-auto {
+ flex: 0 0 auto;
+ width: auto;
+ }
+
+ .col-xxl-1 {
+ flex: 0 0 auto;
+ width: 8.33333333%;
+ }
+
+ .col-xxl-2 {
+ flex: 0 0 auto;
+ width: 16.66666667%;
+ }
+
+ .col-xxl-3 {
+ flex: 0 0 auto;
+ width: 25%;
+ }
+
+ .col-xxl-4 {
+ flex: 0 0 auto;
+ width: 33.33333333%;
+ }
+
+ .col-xxl-5 {
+ flex: 0 0 auto;
+ width: 41.66666667%;
+ }
+
+ .col-xxl-6 {
+ flex: 0 0 auto;
+ width: 50%;
+ }
+
+ .col-xxl-7 {
+ flex: 0 0 auto;
+ width: 58.33333333%;
+ }
+
+ .col-xxl-8 {
+ flex: 0 0 auto;
+ width: 66.66666667%;
+ }
+
+ .col-xxl-9 {
+ flex: 0 0 auto;
+ width: 75%;
+ }
+
+ .col-xxl-10 {
+ flex: 0 0 auto;
+ width: 83.33333333%;
+ }
+
+ .col-xxl-11 {
+ flex: 0 0 auto;
+ width: 91.66666667%;
+ }
+
+ .col-xxl-12 {
+ flex: 0 0 auto;
+ width: 100%;
+ }
+
+ .offset-xxl-0 {
+ margin-left: 0;
+ }
+
+ .offset-xxl-1 {
+ margin-left: 8.33333333%;
+ }
+
+ .offset-xxl-2 {
+ margin-left: 16.66666667%;
+ }
+
+ .offset-xxl-3 {
+ margin-left: 25%;
+ }
+
+ .offset-xxl-4 {
+ margin-left: 33.33333333%;
+ }
+
+ .offset-xxl-5 {
+ margin-left: 41.66666667%;
+ }
+
+ .offset-xxl-6 {
+ margin-left: 50%;
+ }
+
+ .offset-xxl-7 {
+ margin-left: 58.33333333%;
+ }
+
+ .offset-xxl-8 {
+ margin-left: 66.66666667%;
+ }
+
+ .offset-xxl-9 {
+ margin-left: 75%;
+ }
+
+ .offset-xxl-10 {
+ margin-left: 83.33333333%;
+ }
+
+ .offset-xxl-11 {
+ margin-left: 91.66666667%;
+ }
+
+ .g-xxl-0,
+.gx-xxl-0 {
+ --bs-gutter-x: 0;
+ }
+
+ .g-xxl-0,
+.gy-xxl-0 {
+ --bs-gutter-y: 0;
+ }
+
+ .g-xxl-1,
+.gx-xxl-1 {
+ --bs-gutter-x: 0.25rem;
+ }
+
+ .g-xxl-1,
+.gy-xxl-1 {
+ --bs-gutter-y: 0.25rem;
+ }
+
+ .g-xxl-2,
+.gx-xxl-2 {
+ --bs-gutter-x: 0.5rem;
+ }
+
+ .g-xxl-2,
+.gy-xxl-2 {
+ --bs-gutter-y: 0.5rem;
+ }
+
+ .g-xxl-3,
+.gx-xxl-3 {
+ --bs-gutter-x: 1rem;
+ }
+
+ .g-xxl-3,
+.gy-xxl-3 {
+ --bs-gutter-y: 1rem;
+ }
+
+ .g-xxl-4,
+.gx-xxl-4 {
+ --bs-gutter-x: 1.5rem;
+ }
+
+ .g-xxl-4,
+.gy-xxl-4 {
+ --bs-gutter-y: 1.5rem;
+ }
+
+ .g-xxl-5,
+.gx-xxl-5 {
+ --bs-gutter-x: 3rem;
+ }
+
+ .g-xxl-5,
+.gy-xxl-5 {
+ --bs-gutter-y: 3rem;
+ }
+}
+.d-inline {
+ display: inline !important;
+}
+
+.d-inline-block {
+ display: inline-block !important;
+}
+
+.d-block {
+ display: block !important;
+}
+
+.d-grid {
+ display: grid !important;
+}
+
+.d-table {
+ display: table !important;
+}
+
+.d-table-row {
+ display: table-row !important;
+}
+
+.d-table-cell {
+ display: table-cell !important;
+}
+
+.d-flex {
+ display: flex !important;
+}
+
+.d-inline-flex {
+ display: inline-flex !important;
+}
+
+.d-none {
+ display: none !important;
+}
+
+.flex-fill {
+ flex: 1 1 auto !important;
+}
+
+.flex-row {
+ flex-direction: row !important;
+}
+
+.flex-column {
+ flex-direction: column !important;
+}
+
+.flex-row-reverse {
+ flex-direction: row-reverse !important;
+}
+
+.flex-column-reverse {
+ flex-direction: column-reverse !important;
+}
+
+.flex-grow-0 {
+ flex-grow: 0 !important;
+}
+
+.flex-grow-1 {
+ flex-grow: 1 !important;
+}
+
+.flex-shrink-0 {
+ flex-shrink: 0 !important;
+}
+
+.flex-shrink-1 {
+ flex-shrink: 1 !important;
+}
+
+.flex-wrap {
+ flex-wrap: wrap !important;
+}
+
+.flex-nowrap {
+ flex-wrap: nowrap !important;
+}
+
+.flex-wrap-reverse {
+ flex-wrap: wrap-reverse !important;
+}
+
+.justify-content-start {
+ justify-content: flex-start !important;
+}
+
+.justify-content-end {
+ justify-content: flex-end !important;
+}
+
+.justify-content-center {
+ justify-content: center !important;
+}
+
+.justify-content-between {
+ justify-content: space-between !important;
+}
+
+.justify-content-around {
+ justify-content: space-around !important;
+}
+
+.justify-content-evenly {
+ justify-content: space-evenly !important;
+}
+
+.align-items-start {
+ align-items: flex-start !important;
+}
+
+.align-items-end {
+ align-items: flex-end !important;
+}
+
+.align-items-center {
+ align-items: center !important;
+}
+
+.align-items-baseline {
+ align-items: baseline !important;
+}
+
+.align-items-stretch {
+ align-items: stretch !important;
+}
+
+.align-content-start {
+ align-content: flex-start !important;
+}
+
+.align-content-end {
+ align-content: flex-end !important;
+}
+
+.align-content-center {
+ align-content: center !important;
+}
+
+.align-content-between {
+ align-content: space-between !important;
+}
+
+.align-content-around {
+ align-content: space-around !important;
+}
+
+.align-content-stretch {
+ align-content: stretch !important;
+}
+
+.align-self-auto {
+ align-self: auto !important;
+}
+
+.align-self-start {
+ align-self: flex-start !important;
+}
+
+.align-self-end {
+ align-self: flex-end !important;
+}
+
+.align-self-center {
+ align-self: center !important;
+}
+
+.align-self-baseline {
+ align-self: baseline !important;
+}
+
+.align-self-stretch {
+ align-self: stretch !important;
+}
+
+.order-first {
+ order: -1 !important;
+}
+
+.order-0 {
+ order: 0 !important;
+}
+
+.order-1 {
+ order: 1 !important;
+}
+
+.order-2 {
+ order: 2 !important;
+}
+
+.order-3 {
+ order: 3 !important;
+}
+
+.order-4 {
+ order: 4 !important;
+}
+
+.order-5 {
+ order: 5 !important;
+}
+
+.order-last {
+ order: 6 !important;
+}
+
+.m-0 {
+ margin: 0 !important;
+}
+
+.m-1 {
+ margin: 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;
+}
+
+@media (min-width: 576px) {
+ .d-sm-inline {
+ display: inline !important;
+ }
+
+ .d-sm-inline-block {
+ display: inline-block !important;
+ }
+
+ .d-sm-block {
+ display: block !important;
+ }
+
+ .d-sm-grid {
+ display: grid !important;
+ }
+
+ .d-sm-table {
+ display: table !important;
+ }
+
+ .d-sm-table-row {
+ display: table-row !important;
+ }
+
+ .d-sm-table-cell {
+ display: table-cell !important;
+ }
+
+ .d-sm-flex {
+ display: flex !important;
+ }
+
+ .d-sm-inline-flex {
+ display: inline-flex !important;
+ }
+
+ .d-sm-none {
+ display: none !important;
+ }
+
+ .flex-sm-fill {
+ flex: 1 1 auto !important;
+ }
+
+ .flex-sm-row {
+ flex-direction: row !important;
+ }
+
+ .flex-sm-column {
+ flex-direction: column !important;
+ }
+
+ .flex-sm-row-reverse {
+ flex-direction: row-reverse !important;
+ }
+
+ .flex-sm-column-reverse {
+ flex-direction: column-reverse !important;
+ }
+
+ .flex-sm-grow-0 {
+ flex-grow: 0 !important;
+ }
+
+ .flex-sm-grow-1 {
+ flex-grow: 1 !important;
+ }
+
+ .flex-sm-shrink-0 {
+ flex-shrink: 0 !important;
+ }
+
+ .flex-sm-shrink-1 {
+ flex-shrink: 1 !important;
+ }
+
+ .flex-sm-wrap {
+ flex-wrap: wrap !important;
+ }
+
+ .flex-sm-nowrap {
+ flex-wrap: nowrap !important;
+ }
+
+ .flex-sm-wrap-reverse {
+ flex-wrap: wrap-reverse !important;
+ }
+
+ .justify-content-sm-start {
+ justify-content: flex-start !important;
+ }
+
+ .justify-content-sm-end {
+ justify-content: flex-end !important;
+ }
+
+ .justify-content-sm-center {
+ justify-content: center !important;
+ }
+
+ .justify-content-sm-between {
+ justify-content: space-between !important;
+ }
+
+ .justify-content-sm-around {
+ justify-content: space-around !important;
+ }
+
+ .justify-content-sm-evenly {
+ justify-content: space-evenly !important;
+ }
+
+ .align-items-sm-start {
+ align-items: flex-start !important;
+ }
+
+ .align-items-sm-end {
+ align-items: flex-end !important;
+ }
+
+ .align-items-sm-center {
+ align-items: center !important;
+ }
+
+ .align-items-sm-baseline {
+ align-items: baseline !important;
+ }
+
+ .align-items-sm-stretch {
+ align-items: stretch !important;
+ }
+
+ .align-content-sm-start {
+ align-content: flex-start !important;
+ }
+
+ .align-content-sm-end {
+ align-content: flex-end !important;
+ }
+
+ .align-content-sm-center {
+ align-content: center !important;
+ }
+
+ .align-content-sm-between {
+ align-content: space-between !important;
+ }
+
+ .align-content-sm-around {
+ align-content: space-around !important;
+ }
+
+ .align-content-sm-stretch {
+ align-content: stretch !important;
+ }
+
+ .align-self-sm-auto {
+ align-self: auto !important;
+ }
+
+ .align-self-sm-start {
+ align-self: flex-start !important;
+ }
+
+ .align-self-sm-end {
+ align-self: flex-end !important;
+ }
+
+ .align-self-sm-center {
+ align-self: center !important;
+ }
+
+ .align-self-sm-baseline {
+ align-self: baseline !important;
+ }
+
+ .align-self-sm-stretch {
+ align-self: stretch !important;
+ }
+
+ .order-sm-first {
+ order: -1 !important;
+ }
+
+ .order-sm-0 {
+ order: 0 !important;
+ }
+
+ .order-sm-1 {
+ order: 1 !important;
+ }
+
+ .order-sm-2 {
+ order: 2 !important;
+ }
+
+ .order-sm-3 {
+ order: 3 !important;
+ }
+
+ .order-sm-4 {
+ order: 4 !important;
+ }
+
+ .order-sm-5 {
+ order: 5 !important;
+ }
+
+ .order-sm-last {
+ order: 6 !important;
+ }
+
+ .m-sm-0 {
+ margin: 0 !important;
+ }
+
+ .m-sm-1 {
+ margin: 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;
+ }
+}
+@media (min-width: 768px) {
+ .d-md-inline {
+ display: inline !important;
+ }
+
+ .d-md-inline-block {
+ display: inline-block !important;
+ }
+
+ .d-md-block {
+ display: block !important;
+ }
+
+ .d-md-grid {
+ display: grid !important;
+ }
+
+ .d-md-table {
+ display: table !important;
+ }
+
+ .d-md-table-row {
+ display: table-row !important;
+ }
+
+ .d-md-table-cell {
+ display: table-cell !important;
+ }
+
+ .d-md-flex {
+ display: flex !important;
+ }
+
+ .d-md-inline-flex {
+ display: inline-flex !important;
+ }
+
+ .d-md-none {
+ display: none !important;
+ }
+
+ .flex-md-fill {
+ flex: 1 1 auto !important;
+ }
+
+ .flex-md-row {
+ flex-direction: row !important;
+ }
+
+ .flex-md-column {
+ flex-direction: column !important;
+ }
+
+ .flex-md-row-reverse {
+ flex-direction: row-reverse !important;
+ }
+
+ .flex-md-column-reverse {
+ flex-direction: column-reverse !important;
+ }
+
+ .flex-md-grow-0 {
+ flex-grow: 0 !important;
+ }
+
+ .flex-md-grow-1 {
+ flex-grow: 1 !important;
+ }
+
+ .flex-md-shrink-0 {
+ flex-shrink: 0 !important;
+ }
+
+ .flex-md-shrink-1 {
+ flex-shrink: 1 !important;
+ }
+
+ .flex-md-wrap {
+ flex-wrap: wrap !important;
+ }
+
+ .flex-md-nowrap {
+ flex-wrap: nowrap !important;
+ }
+
+ .flex-md-wrap-reverse {
+ flex-wrap: wrap-reverse !important;
+ }
+
+ .justify-content-md-start {
+ justify-content: flex-start !important;
+ }
+
+ .justify-content-md-end {
+ justify-content: flex-end !important;
+ }
+
+ .justify-content-md-center {
+ justify-content: center !important;
+ }
+
+ .justify-content-md-between {
+ justify-content: space-between !important;
+ }
+
+ .justify-content-md-around {
+ justify-content: space-around !important;
+ }
+
+ .justify-content-md-evenly {
+ justify-content: space-evenly !important;
+ }
+
+ .align-items-md-start {
+ align-items: flex-start !important;
+ }
+
+ .align-items-md-end {
+ align-items: flex-end !important;
+ }
+
+ .align-items-md-center {
+ align-items: center !important;
+ }
+
+ .align-items-md-baseline {
+ align-items: baseline !important;
+ }
+
+ .align-items-md-stretch {
+ align-items: stretch !important;
+ }
+
+ .align-content-md-start {
+ align-content: flex-start !important;
+ }
+
+ .align-content-md-end {
+ align-content: flex-end !important;
+ }
+
+ .align-content-md-center {
+ align-content: center !important;
+ }
+
+ .align-content-md-between {
+ align-content: space-between !important;
+ }
+
+ .align-content-md-around {
+ align-content: space-around !important;
+ }
+
+ .align-content-md-stretch {
+ align-content: stretch !important;
+ }
+
+ .align-self-md-auto {
+ align-self: auto !important;
+ }
+
+ .align-self-md-start {
+ align-self: flex-start !important;
+ }
+
+ .align-self-md-end {
+ align-self: flex-end !important;
+ }
+
+ .align-self-md-center {
+ align-self: center !important;
+ }
+
+ .align-self-md-baseline {
+ align-self: baseline !important;
+ }
+
+ .align-self-md-stretch {
+ align-self: stretch !important;
+ }
+
+ .order-md-first {
+ order: -1 !important;
+ }
+
+ .order-md-0 {
+ order: 0 !important;
+ }
+
+ .order-md-1 {
+ order: 1 !important;
+ }
+
+ .order-md-2 {
+ order: 2 !important;
+ }
+
+ .order-md-3 {
+ order: 3 !important;
+ }
+
+ .order-md-4 {
+ order: 4 !important;
+ }
+
+ .order-md-5 {
+ order: 5 !important;
+ }
+
+ .order-md-last {
+ order: 6 !important;
+ }
+
+ .m-md-0 {
+ margin: 0 !important;
+ }
+
+ .m-md-1 {
+ margin: 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;
+ }
+}
+@media (min-width: 992px) {
+ .d-lg-inline {
+ display: inline !important;
+ }
+
+ .d-lg-inline-block {
+ display: inline-block !important;
+ }
+
+ .d-lg-block {
+ display: block !important;
+ }
+
+ .d-lg-grid {
+ display: grid !important;
+ }
+
+ .d-lg-table {
+ display: table !important;
+ }
+
+ .d-lg-table-row {
+ display: table-row !important;
+ }
+
+ .d-lg-table-cell {
+ display: table-cell !important;
+ }
+
+ .d-lg-flex {
+ display: flex !important;
+ }
+
+ .d-lg-inline-flex {
+ display: inline-flex !important;
+ }
+
+ .d-lg-none {
+ display: none !important;
+ }
+
+ .flex-lg-fill {
+ flex: 1 1 auto !important;
+ }
+
+ .flex-lg-row {
+ flex-direction: row !important;
+ }
+
+ .flex-lg-column {
+ flex-direction: column !important;
+ }
+
+ .flex-lg-row-reverse {
+ flex-direction: row-reverse !important;
+ }
+
+ .flex-lg-column-reverse {
+ flex-direction: column-reverse !important;
+ }
+
+ .flex-lg-grow-0 {
+ flex-grow: 0 !important;
+ }
+
+ .flex-lg-grow-1 {
+ flex-grow: 1 !important;
+ }
+
+ .flex-lg-shrink-0 {
+ flex-shrink: 0 !important;
+ }
+
+ .flex-lg-shrink-1 {
+ flex-shrink: 1 !important;
+ }
+
+ .flex-lg-wrap {
+ flex-wrap: wrap !important;
+ }
+
+ .flex-lg-nowrap {
+ flex-wrap: nowrap !important;
+ }
+
+ .flex-lg-wrap-reverse {
+ flex-wrap: wrap-reverse !important;
+ }
+
+ .justify-content-lg-start {
+ justify-content: flex-start !important;
+ }
+
+ .justify-content-lg-end {
+ justify-content: flex-end !important;
+ }
+
+ .justify-content-lg-center {
+ justify-content: center !important;
+ }
+
+ .justify-content-lg-between {
+ justify-content: space-between !important;
+ }
+
+ .justify-content-lg-around {
+ justify-content: space-around !important;
+ }
+
+ .justify-content-lg-evenly {
+ justify-content: space-evenly !important;
+ }
+
+ .align-items-lg-start {
+ align-items: flex-start !important;
+ }
+
+ .align-items-lg-end {
+ align-items: flex-end !important;
+ }
+
+ .align-items-lg-center {
+ align-items: center !important;
+ }
+
+ .align-items-lg-baseline {
+ align-items: baseline !important;
+ }
+
+ .align-items-lg-stretch {
+ align-items: stretch !important;
+ }
+
+ .align-content-lg-start {
+ align-content: flex-start !important;
+ }
+
+ .align-content-lg-end {
+ align-content: flex-end !important;
+ }
+
+ .align-content-lg-center {
+ align-content: center !important;
+ }
+
+ .align-content-lg-between {
+ align-content: space-between !important;
+ }
+
+ .align-content-lg-around {
+ align-content: space-around !important;
+ }
+
+ .align-content-lg-stretch {
+ align-content: stretch !important;
+ }
+
+ .align-self-lg-auto {
+ align-self: auto !important;
+ }
+
+ .align-self-lg-start {
+ align-self: flex-start !important;
+ }
+
+ .align-self-lg-end {
+ align-self: flex-end !important;
+ }
+
+ .align-self-lg-center {
+ align-self: center !important;
+ }
+
+ .align-self-lg-baseline {
+ align-self: baseline !important;
+ }
+
+ .align-self-lg-stretch {
+ align-self: stretch !important;
+ }
+
+ .order-lg-first {
+ order: -1 !important;
+ }
+
+ .order-lg-0 {
+ order: 0 !important;
+ }
+
+ .order-lg-1 {
+ order: 1 !important;
+ }
+
+ .order-lg-2 {
+ order: 2 !important;
+ }
+
+ .order-lg-3 {
+ order: 3 !important;
+ }
+
+ .order-lg-4 {
+ order: 4 !important;
+ }
+
+ .order-lg-5 {
+ order: 5 !important;
+ }
+
+ .order-lg-last {
+ order: 6 !important;
+ }
+
+ .m-lg-0 {
+ margin: 0 !important;
+ }
+
+ .m-lg-1 {
+ margin: 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;
+ }
+}
+@media (min-width: 1200px) {
+ .d-xl-inline {
+ display: inline !important;
+ }
+
+ .d-xl-inline-block {
+ display: inline-block !important;
+ }
+
+ .d-xl-block {
+ display: block !important;
+ }
+
+ .d-xl-grid {
+ display: grid !important;
+ }
+
+ .d-xl-table {
+ display: table !important;
+ }
+
+ .d-xl-table-row {
+ display: table-row !important;
+ }
+
+ .d-xl-table-cell {
+ display: table-cell !important;
+ }
+
+ .d-xl-flex {
+ display: flex !important;
+ }
+
+ .d-xl-inline-flex {
+ display: inline-flex !important;
+ }
+
+ .d-xl-none {
+ display: none !important;
+ }
+
+ .flex-xl-fill {
+ flex: 1 1 auto !important;
+ }
+
+ .flex-xl-row {
+ flex-direction: row !important;
+ }
+
+ .flex-xl-column {
+ flex-direction: column !important;
+ }
+
+ .flex-xl-row-reverse {
+ flex-direction: row-reverse !important;
+ }
+
+ .flex-xl-column-reverse {
+ flex-direction: column-reverse !important;
+ }
+
+ .flex-xl-grow-0 {
+ flex-grow: 0 !important;
+ }
+
+ .flex-xl-grow-1 {
+ flex-grow: 1 !important;
+ }
+
+ .flex-xl-shrink-0 {
+ flex-shrink: 0 !important;
+ }
+
+ .flex-xl-shrink-1 {
+ flex-shrink: 1 !important;
+ }
+
+ .flex-xl-wrap {
+ flex-wrap: wrap !important;
+ }
+
+ .flex-xl-nowrap {
+ flex-wrap: nowrap !important;
+ }
+
+ .flex-xl-wrap-reverse {
+ flex-wrap: wrap-reverse !important;
+ }
+
+ .justify-content-xl-start {
+ justify-content: flex-start !important;
+ }
+
+ .justify-content-xl-end {
+ justify-content: flex-end !important;
+ }
+
+ .justify-content-xl-center {
+ justify-content: center !important;
+ }
+
+ .justify-content-xl-between {
+ justify-content: space-between !important;
+ }
+
+ .justify-content-xl-around {
+ justify-content: space-around !important;
+ }
+
+ .justify-content-xl-evenly {
+ justify-content: space-evenly !important;
+ }
+
+ .align-items-xl-start {
+ align-items: flex-start !important;
+ }
+
+ .align-items-xl-end {
+ align-items: flex-end !important;
+ }
+
+ .align-items-xl-center {
+ align-items: center !important;
+ }
+
+ .align-items-xl-baseline {
+ align-items: baseline !important;
+ }
+
+ .align-items-xl-stretch {
+ align-items: stretch !important;
+ }
+
+ .align-content-xl-start {
+ align-content: flex-start !important;
+ }
+
+ .align-content-xl-end {
+ align-content: flex-end !important;
+ }
+
+ .align-content-xl-center {
+ align-content: center !important;
+ }
+
+ .align-content-xl-between {
+ align-content: space-between !important;
+ }
+
+ .align-content-xl-around {
+ align-content: space-around !important;
+ }
+
+ .align-content-xl-stretch {
+ align-content: stretch !important;
+ }
+
+ .align-self-xl-auto {
+ align-self: auto !important;
+ }
+
+ .align-self-xl-start {
+ align-self: flex-start !important;
+ }
+
+ .align-self-xl-end {
+ align-self: flex-end !important;
+ }
+
+ .align-self-xl-center {
+ align-self: center !important;
+ }
+
+ .align-self-xl-baseline {
+ align-self: baseline !important;
+ }
+
+ .align-self-xl-stretch {
+ align-self: stretch !important;
+ }
+
+ .order-xl-first {
+ order: -1 !important;
+ }
+
+ .order-xl-0 {
+ order: 0 !important;
+ }
+
+ .order-xl-1 {
+ order: 1 !important;
+ }
+
+ .order-xl-2 {
+ order: 2 !important;
+ }
+
+ .order-xl-3 {
+ order: 3 !important;
+ }
+
+ .order-xl-4 {
+ order: 4 !important;
+ }
+
+ .order-xl-5 {
+ order: 5 !important;
+ }
+
+ .order-xl-last {
+ order: 6 !important;
+ }
+
+ .m-xl-0 {
+ margin: 0 !important;
+ }
+
+ .m-xl-1 {
+ margin: 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;
+ }
+}
+@media (min-width: 1400px) {
+ .d-xxl-inline {
+ display: inline !important;
+ }
+
+ .d-xxl-inline-block {
+ display: inline-block !important;
+ }
+
+ .d-xxl-block {
+ display: block !important;
+ }
+
+ .d-xxl-grid {
+ display: grid !important;
+ }
+
+ .d-xxl-table {
+ display: table !important;
+ }
+
+ .d-xxl-table-row {
+ display: table-row !important;
+ }
+
+ .d-xxl-table-cell {
+ display: table-cell !important;
+ }
+
+ .d-xxl-flex {
+ display: flex !important;
+ }
+
+ .d-xxl-inline-flex {
+ display: inline-flex !important;
+ }
+
+ .d-xxl-none {
+ display: none !important;
+ }
+
+ .flex-xxl-fill {
+ flex: 1 1 auto !important;
+ }
+
+ .flex-xxl-row {
+ flex-direction: row !important;
+ }
+
+ .flex-xxl-column {
+ flex-direction: column !important;
+ }
+
+ .flex-xxl-row-reverse {
+ flex-direction: row-reverse !important;
+ }
+
+ .flex-xxl-column-reverse {
+ flex-direction: column-reverse !important;
+ }
+
+ .flex-xxl-grow-0 {
+ flex-grow: 0 !important;
+ }
+
+ .flex-xxl-grow-1 {
+ flex-grow: 1 !important;
+ }
+
+ .flex-xxl-shrink-0 {
+ flex-shrink: 0 !important;
+ }
+
+ .flex-xxl-shrink-1 {
+ flex-shrink: 1 !important;
+ }
+
+ .flex-xxl-wrap {
+ flex-wrap: wrap !important;
+ }
+
+ .flex-xxl-nowrap {
+ flex-wrap: nowrap !important;
+ }
+
+ .flex-xxl-wrap-reverse {
+ flex-wrap: wrap-reverse !important;
+ }
+
+ .justify-content-xxl-start {
+ justify-content: flex-start !important;
+ }
+
+ .justify-content-xxl-end {
+ justify-content: flex-end !important;
+ }
+
+ .justify-content-xxl-center {
+ justify-content: center !important;
+ }
+
+ .justify-content-xxl-between {
+ justify-content: space-between !important;
+ }
+
+ .justify-content-xxl-around {
+ justify-content: space-around !important;
+ }
+
+ .justify-content-xxl-evenly {
+ justify-content: space-evenly !important;
+ }
+
+ .align-items-xxl-start {
+ align-items: flex-start !important;
+ }
+
+ .align-items-xxl-end {
+ align-items: flex-end !important;
+ }
+
+ .align-items-xxl-center {
+ align-items: center !important;
+ }
+
+ .align-items-xxl-baseline {
+ align-items: baseline !important;
+ }
+
+ .align-items-xxl-stretch {
+ align-items: stretch !important;
+ }
+
+ .align-content-xxl-start {
+ align-content: flex-start !important;
+ }
+
+ .align-content-xxl-end {
+ align-content: flex-end !important;
+ }
+
+ .align-content-xxl-center {
+ align-content: center !important;
+ }
+
+ .align-content-xxl-between {
+ align-content: space-between !important;
+ }
+
+ .align-content-xxl-around {
+ align-content: space-around !important;
+ }
+
+ .align-content-xxl-stretch {
+ align-content: stretch !important;
+ }
+
+ .align-self-xxl-auto {
+ align-self: auto !important;
+ }
+
+ .align-self-xxl-start {
+ align-self: flex-start !important;
+ }
+
+ .align-self-xxl-end {
+ align-self: flex-end !important;
+ }
+
+ .align-self-xxl-center {
+ align-self: center !important;
+ }
+
+ .align-self-xxl-baseline {
+ align-self: baseline !important;
+ }
+
+ .align-self-xxl-stretch {
+ align-self: stretch !important;
+ }
+
+ .order-xxl-first {
+ order: -1 !important;
+ }
+
+ .order-xxl-0 {
+ order: 0 !important;
+ }
+
+ .order-xxl-1 {
+ order: 1 !important;
+ }
+
+ .order-xxl-2 {
+ order: 2 !important;
+ }
+
+ .order-xxl-3 {
+ order: 3 !important;
+ }
+
+ .order-xxl-4 {
+ order: 4 !important;
+ }
+
+ .order-xxl-5 {
+ order: 5 !important;
+ }
+
+ .order-xxl-last {
+ order: 6 !important;
+ }
+
+ .m-xxl-0 {
+ margin: 0 !important;
+ }
+
+ .m-xxl-1 {
+ margin: 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;
+ }
+}
+@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;
+ }
+}
\ No newline at end of file
diff --git a/dasena-web/public/assets/admin/scss/bootstrap/forms/_floating-labels.scss b/dasena-web/public/assets/admin/scss/bootstrap/forms/_floating-labels.scss
new file mode 100644
index 0000000..4f9fd19
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/bootstrap/forms/_floating-labels.scss
@@ -0,0 +1,70 @@
+.form-floating {
+ position: relative;
+
+ > .form-control,
+ > .form-control-plaintext,
+ > .form-select {
+ height: $form-floating-height;
+ line-height: $form-floating-line-height;
+ }
+
+ > label {
+ position: absolute;
+ top: 0;
+ left: 0;
+ height: 100%; // allow textareas
+ padding: $form-floating-padding-y $form-floating-padding-x;
+ pointer-events: none;
+ border: $input-border-width solid transparent; // Required for aligning label's text with the input as it affects inner box model
+ transform-origin: 0 0;
+ @include transition($form-floating-transition);
+ }
+
+ > .form-control,
+ > .form-control-plaintext {
+ padding: $form-floating-padding-y $form-floating-padding-x;
+
+ &::placeholder {
+ color: transparent;
+ }
+
+ &:focus,
+ &:not(:placeholder-shown) {
+ padding-top: $form-floating-input-padding-t;
+ padding-bottom: $form-floating-input-padding-b;
+ }
+ // Duplicated because `:-webkit-autofill` invalidates other selectors when grouped
+ &:-webkit-autofill {
+ padding-top: $form-floating-input-padding-t;
+ padding-bottom: $form-floating-input-padding-b;
+ }
+ }
+
+ > .form-select {
+ padding-top: $form-floating-input-padding-t;
+ padding-bottom: $form-floating-input-padding-b;
+ }
+
+ > .form-control:focus,
+ > .form-control:not(:placeholder-shown),
+ > .form-control-plaintext,
+ > .form-select {
+ ~ label {
+ opacity: $form-floating-label-opacity;
+ transform: $form-floating-label-transform;
+ }
+ }
+ // Duplicated because `:-webkit-autofill` invalidates other selectors when grouped
+ > .form-control:-webkit-autofill {
+ ~ label {
+ opacity: $form-floating-label-opacity;
+ transform: $form-floating-label-transform;
+ }
+ }
+
+ > .form-control-plaintext {
+ ~ label {
+ border-width: $input-border-width 0; // Required to properly position label text - as explained above
+ }
+ }
+}
diff --git a/dasena-web/public/assets/admin/scss/bootstrap/forms/_form-check.scss b/dasena-web/public/assets/admin/scss/bootstrap/forms/_form-check.scss
new file mode 100644
index 0000000..42a2a96
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/bootstrap/forms/_form-check.scss
@@ -0,0 +1,175 @@
+//
+// Check/radio
+//
+
+.form-check {
+ display: block;
+ min-height: $form-check-min-height;
+ padding-left: $form-check-padding-start;
+ margin-bottom: $form-check-margin-bottom;
+
+ .form-check-input {
+ float: left;
+ margin-left: $form-check-padding-start * -1;
+ }
+}
+
+.form-check-reverse {
+ padding-right: $form-check-padding-start;
+ padding-left: 0;
+ text-align: right;
+
+ .form-check-input {
+ float: right;
+ margin-right: $form-check-padding-start * -1;
+ margin-left: 0;
+ }
+}
+
+.form-check-input {
+ width: $form-check-input-width;
+ height: $form-check-input-width;
+ margin-top: ($line-height-base - $form-check-input-width) * .5; // line-height minus check height
+ vertical-align: top;
+ background-color: $form-check-input-bg;
+ background-repeat: no-repeat;
+ background-position: center;
+ background-size: contain;
+ border: $form-check-input-border;
+ appearance: none;
+ print-color-adjust: exact; // Keep themed appearance for print
+ @include transition($form-check-transition);
+
+ &[type="checkbox"] {
+ @include border-radius($form-check-input-border-radius);
+ }
+
+ &[type="radio"] {
+ // stylelint-disable-next-line property-disallowed-list
+ border-radius: $form-check-radio-border-radius;
+ }
+
+ &:active {
+ filter: $form-check-input-active-filter;
+ }
+
+ &:focus {
+ border-color: $form-check-input-focus-border;
+ outline: 0;
+ box-shadow: $form-check-input-focus-box-shadow;
+ }
+
+ &:checked {
+ background-color: $form-check-input-checked-bg-color;
+ border-color: $form-check-input-checked-border-color;
+
+ &[type="checkbox"] {
+ @if $enable-gradients {
+ background-image: escape-svg($form-check-input-checked-bg-image), var(--#{$prefix}gradient);
+ } @else {
+ background-image: escape-svg($form-check-input-checked-bg-image);
+ }
+ }
+
+ &[type="radio"] {
+ @if $enable-gradients {
+ background-image: escape-svg($form-check-radio-checked-bg-image), var(--#{$prefix}gradient);
+ } @else {
+ background-image: escape-svg($form-check-radio-checked-bg-image);
+ }
+ }
+ }
+
+ &[type="checkbox"]:indeterminate {
+ background-color: $form-check-input-indeterminate-bg-color;
+ border-color: $form-check-input-indeterminate-border-color;
+
+ @if $enable-gradients {
+ background-image: escape-svg($form-check-input-indeterminate-bg-image), var(--#{$prefix}gradient);
+ } @else {
+ background-image: escape-svg($form-check-input-indeterminate-bg-image);
+ }
+ }
+
+ &:disabled {
+ pointer-events: none;
+ filter: none;
+ opacity: $form-check-input-disabled-opacity;
+ }
+
+ // Use disabled attribute in addition of :disabled pseudo-class
+ // See: https://github.com/twbs/bootstrap/issues/28247
+ &[disabled],
+ &:disabled {
+ ~ .form-check-label {
+ cursor: default;
+ opacity: $form-check-label-disabled-opacity;
+ }
+ }
+}
+
+.form-check-label {
+ color: $form-check-label-color;
+ cursor: $form-check-label-cursor;
+}
+
+//
+// Switch
+//
+
+.form-switch {
+ padding-left: $form-switch-padding-start;
+
+ .form-check-input {
+ width: $form-switch-width;
+ margin-left: $form-switch-padding-start * -1;
+ background-image: escape-svg($form-switch-bg-image);
+ background-position: left center;
+ @include border-radius($form-switch-border-radius);
+ @include transition($form-switch-transition);
+
+ &:focus {
+ background-image: escape-svg($form-switch-focus-bg-image);
+ }
+
+ &:checked {
+ background-position: $form-switch-checked-bg-position;
+
+ @if $enable-gradients {
+ background-image: escape-svg($form-switch-checked-bg-image), var(--#{$prefix}gradient);
+ } @else {
+ background-image: escape-svg($form-switch-checked-bg-image);
+ }
+ }
+ }
+
+ &.form-check-reverse {
+ padding-right: $form-switch-padding-start;
+ padding-left: 0;
+
+ .form-check-input {
+ margin-right: $form-switch-padding-start * -1;
+ margin-left: 0;
+ }
+ }
+}
+
+.form-check-inline {
+ display: inline-block;
+ margin-right: $form-check-inline-margin-end;
+}
+
+.btn-check {
+ position: absolute;
+ clip: rect(0, 0, 0, 0);
+ pointer-events: none;
+
+ &[disabled],
+ &:disabled {
+ + .btn {
+ pointer-events: none;
+ filter: none;
+ opacity: $form-check-btn-check-disabled-opacity;
+ }
+ }
+}
diff --git a/dasena-web/public/assets/admin/scss/bootstrap/forms/_form-control.scss b/dasena-web/public/assets/admin/scss/bootstrap/forms/_form-control.scss
new file mode 100644
index 0000000..c781ae7
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/bootstrap/forms/_form-control.scss
@@ -0,0 +1,189 @@
+//
+// General form controls (plus a few specific high-level interventions)
+//
+
+.form-control {
+ display: block;
+ width: 100%;
+ padding: $input-padding-y $input-padding-x;
+ font-family: $input-font-family;
+ @include font-size($input-font-size);
+ font-weight: $input-font-weight;
+ line-height: $input-line-height;
+ color: $input-color;
+ background-color: $input-bg;
+ background-clip: padding-box;
+ border: $input-border-width solid $input-border-color;
+ appearance: none; // Fix appearance for date inputs in Safari
+
+ // Note: This has no effect on
s in some browsers, due to the limited stylability of ``s in CSS.
+ @include border-radius($input-border-radius, 0);
+
+ @include box-shadow($input-box-shadow);
+ @include transition($input-transition);
+
+ &[type="file"] {
+ overflow: hidden; // prevent pseudo element button overlap
+
+ &:not(:disabled):not([readonly]) {
+ cursor: pointer;
+ }
+ }
+
+ // Customize the `:focus` state to imitate native WebKit styles.
+ &:focus {
+ color: $input-focus-color;
+ background-color: $input-focus-bg;
+ border-color: $input-focus-border-color;
+ outline: 0;
+ @if $enable-shadows {
+ @include box-shadow($input-box-shadow, $input-focus-box-shadow);
+ } @else {
+ // Avoid using mixin so we can pass custom focus shadow properly
+ box-shadow: $input-focus-box-shadow;
+ }
+ }
+
+ // Add some height to date inputs on iOS
+ // https://github.com/twbs/bootstrap/issues/23307
+ // TODO: we can remove this workaround once https://bugs.webkit.org/show_bug.cgi?id=198959 is resolved
+ &::-webkit-date-and-time-value {
+ // Multiply line-height by 1em if it has no unit
+ height: if(unit($input-line-height) == "", $input-line-height * 1em, $input-line-height);
+ }
+
+ // Placeholder
+ &::placeholder {
+ color: $input-placeholder-color;
+ // Override Firefox's unusual default opacity; see https://github.com/twbs/bootstrap/pull/11526.
+ opacity: 1;
+ }
+
+ // Disabled and read-only inputs
+ //
+ // HTML5 says that controls under a fieldset > legend:first-child won't be
+ // disabled if the fieldset is disabled. Due to implementation difficulty, we
+ // don't honor that edge case; we style them as disabled anyway.
+ &:disabled,
+ &[readonly] {
+ color: $input-disabled-color;
+ background-color: $input-disabled-bg;
+ border-color: $input-disabled-border-color;
+ // iOS fix for unreadable disabled content; see https://github.com/twbs/bootstrap/issues/11655.
+ opacity: 1;
+ }
+
+ // File input buttons theming
+ &::file-selector-button {
+ padding: $input-padding-y $input-padding-x;
+ margin: (-$input-padding-y) (-$input-padding-x);
+ margin-inline-end: $input-padding-x;
+ color: $form-file-button-color;
+ @include gradient-bg($form-file-button-bg);
+ pointer-events: none;
+ border-color: inherit;
+ border-style: solid;
+ border-width: 0;
+ border-inline-end-width: $input-border-width;
+ border-radius: 0; // stylelint-disable-line property-disallowed-list
+ @include transition($btn-transition);
+ }
+
+ &:hover:not(:disabled):not([readonly])::file-selector-button {
+ background-color: $form-file-button-hover-bg;
+ }
+}
+
+// Readonly controls as plain text
+//
+// Apply class to a readonly input to make it appear like regular plain
+// text (without any border, background color, focus indicator)
+
+.form-control-plaintext {
+ display: block;
+ width: 100%;
+ padding: $input-padding-y 0;
+ margin-bottom: 0; // match inputs if this class comes on inputs with default margins
+ line-height: $input-line-height;
+ color: $input-plaintext-color;
+ background-color: transparent;
+ border: solid transparent;
+ border-width: $input-border-width 0;
+
+ &.form-control-sm,
+ &.form-control-lg {
+ padding-right: 0;
+ padding-left: 0;
+ }
+}
+
+// Form control sizing
+//
+// Build on `.form-control` with modifier classes to decrease or increase the
+// height and font-size of form controls.
+//
+// Repeated in `_input_group.scss` to avoid Sass extend issues.
+
+.form-control-sm {
+ min-height: $input-height-sm;
+ padding: $input-padding-y-sm $input-padding-x-sm;
+ @include font-size($input-font-size-sm);
+ @include border-radius($input-border-radius-sm);
+
+ &::file-selector-button {
+ padding: $input-padding-y-sm $input-padding-x-sm;
+ margin: (-$input-padding-y-sm) (-$input-padding-x-sm);
+ margin-inline-end: $input-padding-x-sm;
+ }
+}
+
+.form-control-lg {
+ min-height: $input-height-lg;
+ padding: $input-padding-y-lg $input-padding-x-lg;
+ @include font-size($input-font-size-lg);
+ @include border-radius($input-border-radius-lg);
+
+ &::file-selector-button {
+ padding: $input-padding-y-lg $input-padding-x-lg;
+ margin: (-$input-padding-y-lg) (-$input-padding-x-lg);
+ margin-inline-end: $input-padding-x-lg;
+ }
+}
+
+// Make sure textareas don't shrink too much when resized
+// https://github.com/twbs/bootstrap/pull/29124
+// stylelint-disable selector-no-qualifying-type
+textarea {
+ &.form-control {
+ min-height: $input-height;
+ }
+
+ &.form-control-sm {
+ min-height: $input-height-sm;
+ }
+
+ &.form-control-lg {
+ min-height: $input-height-lg;
+ }
+}
+// stylelint-enable selector-no-qualifying-type
+
+.form-control-color {
+ width: $form-color-width;
+ height: auto; // Override fixed browser height
+ padding: $input-padding-y;
+
+ &:not(:disabled):not([readonly]) {
+ cursor: pointer;
+ }
+
+ &::-moz-color-swatch {
+ height: if(unit($input-line-height) == "", $input-line-height * 1em, $input-line-height);
+ @include border-radius($input-border-radius);
+ }
+
+ &::-webkit-color-swatch {
+ height: if(unit($input-line-height) == "", $input-line-height * 1em, $input-line-height);
+ @include border-radius($input-border-radius);
+ }
+}
diff --git a/dasena-web/public/assets/admin/scss/bootstrap/forms/_form-range.scss b/dasena-web/public/assets/admin/scss/bootstrap/forms/_form-range.scss
new file mode 100644
index 0000000..6de4213
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/bootstrap/forms/_form-range.scss
@@ -0,0 +1,91 @@
+// Range
+//
+// Style range inputs the same across browsers. Vendor-specific rules for pseudo
+// elements cannot be mixed. As such, there are no shared styles for focus or
+// active states on prefixed selectors.
+
+.form-range {
+ width: 100%;
+ height: add($form-range-thumb-height, $form-range-thumb-focus-box-shadow-width * 2);
+ padding: 0; // Need to reset padding
+ background-color: transparent;
+ appearance: none;
+
+ &:focus {
+ outline: 0;
+
+ // Pseudo-elements must be split across multiple rulesets to have an effect.
+ // No box-shadow() mixin for focus accessibility.
+ &::-webkit-slider-thumb { box-shadow: $form-range-thumb-focus-box-shadow; }
+ &::-moz-range-thumb { box-shadow: $form-range-thumb-focus-box-shadow; }
+ }
+
+ &::-moz-focus-outer {
+ border: 0;
+ }
+
+ &::-webkit-slider-thumb {
+ width: $form-range-thumb-width;
+ height: $form-range-thumb-height;
+ margin-top: ($form-range-track-height - $form-range-thumb-height) * .5; // Webkit specific
+ @include gradient-bg($form-range-thumb-bg);
+ border: $form-range-thumb-border;
+ @include border-radius($form-range-thumb-border-radius);
+ @include box-shadow($form-range-thumb-box-shadow);
+ @include transition($form-range-thumb-transition);
+ appearance: none;
+
+ &:active {
+ @include gradient-bg($form-range-thumb-active-bg);
+ }
+ }
+
+ &::-webkit-slider-runnable-track {
+ width: $form-range-track-width;
+ height: $form-range-track-height;
+ color: transparent; // Why?
+ cursor: $form-range-track-cursor;
+ background-color: $form-range-track-bg;
+ border-color: transparent;
+ @include border-radius($form-range-track-border-radius);
+ @include box-shadow($form-range-track-box-shadow);
+ }
+
+ &::-moz-range-thumb {
+ width: $form-range-thumb-width;
+ height: $form-range-thumb-height;
+ @include gradient-bg($form-range-thumb-bg);
+ border: $form-range-thumb-border;
+ @include border-radius($form-range-thumb-border-radius);
+ @include box-shadow($form-range-thumb-box-shadow);
+ @include transition($form-range-thumb-transition);
+ appearance: none;
+
+ &:active {
+ @include gradient-bg($form-range-thumb-active-bg);
+ }
+ }
+
+ &::-moz-range-track {
+ width: $form-range-track-width;
+ height: $form-range-track-height;
+ color: transparent;
+ cursor: $form-range-track-cursor;
+ background-color: $form-range-track-bg;
+ border-color: transparent; // Firefox specific?
+ @include border-radius($form-range-track-border-radius);
+ @include box-shadow($form-range-track-box-shadow);
+ }
+
+ &:disabled {
+ pointer-events: none;
+
+ &::-webkit-slider-thumb {
+ background-color: $form-range-thumb-disabled-bg;
+ }
+
+ &::-moz-range-thumb {
+ background-color: $form-range-thumb-disabled-bg;
+ }
+ }
+}
diff --git a/dasena-web/public/assets/admin/scss/bootstrap/forms/_form-select.scss b/dasena-web/public/assets/admin/scss/bootstrap/forms/_form-select.scss
new file mode 100644
index 0000000..78c34b8
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/bootstrap/forms/_form-select.scss
@@ -0,0 +1,71 @@
+// Select
+//
+// Replaces the browser default select with a custom one, mostly pulled from
+// https://primer.github.io/.
+
+.form-select {
+ display: block;
+ width: 100%;
+ padding: $form-select-padding-y $form-select-indicator-padding $form-select-padding-y $form-select-padding-x;
+ -moz-padding-start: subtract($form-select-padding-x, 3px); // See https://github.com/twbs/bootstrap/issues/32636
+ font-family: $form-select-font-family;
+ @include font-size($form-select-font-size);
+ font-weight: $form-select-font-weight;
+ line-height: $form-select-line-height;
+ color: $form-select-color;
+ background-color: $form-select-bg;
+ background-image: escape-svg($form-select-indicator);
+ background-repeat: no-repeat;
+ background-position: $form-select-bg-position;
+ background-size: $form-select-bg-size;
+ border: $form-select-border-width solid $form-select-border-color;
+ @include border-radius($form-select-border-radius, 0);
+ @include box-shadow($form-select-box-shadow);
+ @include transition($form-select-transition);
+ appearance: none;
+
+ &:focus {
+ border-color: $form-select-focus-border-color;
+ outline: 0;
+ @if $enable-shadows {
+ @include box-shadow($form-select-box-shadow, $form-select-focus-box-shadow);
+ } @else {
+ // Avoid using mixin so we can pass custom focus shadow properly
+ box-shadow: $form-select-focus-box-shadow;
+ }
+ }
+
+ &[multiple],
+ &[size]:not([size="1"]) {
+ padding-right: $form-select-padding-x;
+ background-image: none;
+ }
+
+ &:disabled {
+ color: $form-select-disabled-color;
+ background-color: $form-select-disabled-bg;
+ border-color: $form-select-disabled-border-color;
+ }
+
+ // Remove outline from select box in FF
+ &:-moz-focusring {
+ color: transparent;
+ text-shadow: 0 0 0 $form-select-color;
+ }
+}
+
+.form-select-sm {
+ padding-top: $form-select-padding-y-sm;
+ padding-bottom: $form-select-padding-y-sm;
+ padding-left: $form-select-padding-x-sm;
+ @include font-size($form-select-font-size-sm);
+ @include border-radius($form-select-border-radius-sm);
+}
+
+.form-select-lg {
+ padding-top: $form-select-padding-y-lg;
+ padding-bottom: $form-select-padding-y-lg;
+ padding-left: $form-select-padding-x-lg;
+ @include font-size($form-select-font-size-lg);
+ @include border-radius($form-select-border-radius-lg);
+}
diff --git a/dasena-web/public/assets/admin/scss/bootstrap/forms/_form-text.scss b/dasena-web/public/assets/admin/scss/bootstrap/forms/_form-text.scss
new file mode 100644
index 0000000..f080d1a
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/bootstrap/forms/_form-text.scss
@@ -0,0 +1,11 @@
+//
+// Form text
+//
+
+.form-text {
+ margin-top: $form-text-margin-top;
+ @include font-size($form-text-font-size);
+ font-style: $form-text-font-style;
+ font-weight: $form-text-font-weight;
+ color: $form-text-color;
+}
diff --git a/dasena-web/public/assets/admin/scss/bootstrap/forms/_input-group.scss b/dasena-web/public/assets/admin/scss/bootstrap/forms/_input-group.scss
new file mode 100644
index 0000000..1400529
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/bootstrap/forms/_input-group.scss
@@ -0,0 +1,121 @@
+//
+// Base styles
+//
+
+.input-group {
+ position: relative;
+ display: flex;
+ flex-wrap: wrap; // For form validation feedback
+ align-items: stretch;
+ width: 100%;
+
+ > .form-control,
+ > .form-select {
+ position: relative; // For focus state's z-index
+ flex: 1 1 auto;
+ width: 1%;
+ min-width: 0; // https://stackoverflow.com/questions/36247140/why-dont-flex-items-shrink-past-content-size
+ }
+
+ // Bring the "active" form control to the top of surrounding elements
+ > .form-control:focus,
+ > .form-select:focus {
+ z-index: 3;
+ }
+
+ // Ensure buttons are always above inputs for more visually pleasing borders.
+ // This isn't needed for `.input-group-text` since it shares the same border-color
+ // as our inputs.
+ .btn {
+ position: relative;
+ z-index: 2;
+
+ &:focus {
+ z-index: 3;
+ }
+ }
+}
+
+
+// Textual addons
+//
+// Serves as a catch-all element for any text or radio/checkbox input you wish
+// to prepend or append to an input.
+
+.input-group-text {
+ display: flex;
+ align-items: center;
+ padding: $input-group-addon-padding-y $input-group-addon-padding-x;
+ @include font-size($input-font-size); // Match inputs
+ font-weight: $input-group-addon-font-weight;
+ line-height: $input-line-height;
+ color: $input-group-addon-color;
+ text-align: center;
+ white-space: nowrap;
+ background-color: $input-group-addon-bg;
+ border: $input-border-width solid $input-group-addon-border-color;
+ @include border-radius($input-border-radius);
+}
+
+
+// Sizing
+//
+// Remix the default form control sizing classes into new ones for easier
+// manipulation.
+
+.input-group-lg > .form-control,
+.input-group-lg > .form-select,
+.input-group-lg > .input-group-text,
+.input-group-lg > .btn {
+ padding: $input-padding-y-lg $input-padding-x-lg;
+ @include font-size($input-font-size-lg);
+ @include border-radius($input-border-radius-lg);
+}
+
+.input-group-sm > .form-control,
+.input-group-sm > .form-select,
+.input-group-sm > .input-group-text,
+.input-group-sm > .btn {
+ padding: $input-padding-y-sm $input-padding-x-sm;
+ @include font-size($input-font-size-sm);
+ @include border-radius($input-border-radius-sm);
+}
+
+.input-group-lg > .form-select,
+.input-group-sm > .form-select {
+ padding-right: $form-select-padding-x + $form-select-indicator-padding;
+}
+
+
+// Rounded corners
+//
+// These rulesets must come after the sizing ones to properly override sm and lg
+// border-radius values when extending. They're more specific than we'd like
+// with the `.input-group >` part, but without it, we cannot override the sizing.
+
+// stylelint-disable-next-line no-duplicate-selectors
+.input-group {
+ &:not(.has-validation) {
+ > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu),
+ > .dropdown-toggle:nth-last-child(n + 3) {
+ @include border-end-radius(0);
+ }
+ }
+
+ &.has-validation {
+ > :nth-last-child(n + 3):not(.dropdown-toggle):not(.dropdown-menu),
+ > .dropdown-toggle:nth-last-child(n + 4) {
+ @include border-end-radius(0);
+ }
+ }
+
+ $validation-messages: "";
+ @each $state in map-keys($form-validation-states) {
+ $validation-messages: $validation-messages + ":not(." + unquote($state) + "-tooltip)" + ":not(." + unquote($state) + "-feedback)";
+ }
+
+ > :not(:first-child):not(.dropdown-menu)#{$validation-messages} {
+ margin-left: -$input-border-width;
+ @include border-start-radius(0);
+ }
+}
diff --git a/dasena-web/public/assets/admin/scss/bootstrap/forms/_labels.scss b/dasena-web/public/assets/admin/scss/bootstrap/forms/_labels.scss
new file mode 100644
index 0000000..39ecafc
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/bootstrap/forms/_labels.scss
@@ -0,0 +1,36 @@
+//
+// Labels
+//
+
+.form-label {
+ margin-bottom: $form-label-margin-bottom;
+ @include font-size($form-label-font-size);
+ font-style: $form-label-font-style;
+ font-weight: $form-label-font-weight;
+ color: $form-label-color;
+}
+
+// For use with horizontal and inline forms, when you need the label (or legend)
+// text to align with the form controls.
+.col-form-label {
+ padding-top: add($input-padding-y, $input-border-width);
+ padding-bottom: add($input-padding-y, $input-border-width);
+ margin-bottom: 0; // Override the `` default
+ @include font-size(inherit); // Override the `` default
+ font-style: $form-label-font-style;
+ font-weight: $form-label-font-weight;
+ line-height: $input-line-height;
+ color: $form-label-color;
+}
+
+.col-form-label-lg {
+ padding-top: add($input-padding-y-lg, $input-border-width);
+ padding-bottom: add($input-padding-y-lg, $input-border-width);
+ @include font-size($input-font-size-lg);
+}
+
+.col-form-label-sm {
+ padding-top: add($input-padding-y-sm, $input-border-width);
+ padding-bottom: add($input-padding-y-sm, $input-border-width);
+ @include font-size($input-font-size-sm);
+}
diff --git a/dasena-web/public/assets/admin/scss/bootstrap/forms/_validation.scss b/dasena-web/public/assets/admin/scss/bootstrap/forms/_validation.scss
new file mode 100644
index 0000000..c48123a
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/bootstrap/forms/_validation.scss
@@ -0,0 +1,12 @@
+// Form validation
+//
+// Provide feedback to users when form field values are valid or invalid. Works
+// primarily for client-side validation via scoped `:invalid` and `:valid`
+// pseudo-classes but also includes `.is-invalid` and `.is-valid` classes for
+// server-side validation.
+
+// scss-docs-start form-validation-states-loop
+@each $state, $data in $form-validation-states {
+ @include form-validation-state($state, $data...);
+}
+// scss-docs-end form-validation-states-loop
diff --git a/dasena-web/public/assets/admin/scss/bootstrap/helpers/_clearfix.scss b/dasena-web/public/assets/admin/scss/bootstrap/helpers/_clearfix.scss
new file mode 100644
index 0000000..e92522a
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/bootstrap/helpers/_clearfix.scss
@@ -0,0 +1,3 @@
+.clearfix {
+ @include clearfix();
+}
diff --git a/dasena-web/public/assets/admin/scss/bootstrap/helpers/_color-bg.scss b/dasena-web/public/assets/admin/scss/bootstrap/helpers/_color-bg.scss
new file mode 100644
index 0000000..80ba863
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/bootstrap/helpers/_color-bg.scss
@@ -0,0 +1,10 @@
+// stylelint-disable declaration-no-important, function-name-case
+
+// All-caps `RGBA()` function used because of this Sass bug: https://github.com/sass/node-sass/issues/2251
+@each $color, $value in $theme-colors {
+ $color-rgb: to-rgb($value);
+ .text-bg-#{$color} {
+ color: color-contrast($value) !important;
+ background-color: RGBA($color-rgb, var(--#{$prefix}bg-opacity, 1)) !important;
+ }
+}
diff --git a/dasena-web/public/assets/admin/scss/bootstrap/helpers/_colored-links.scss b/dasena-web/public/assets/admin/scss/bootstrap/helpers/_colored-links.scss
new file mode 100644
index 0000000..1cb4182
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/bootstrap/helpers/_colored-links.scss
@@ -0,0 +1,12 @@
+@each $color, $value in $theme-colors {
+ .link-#{$color} {
+ color: $value !important; // stylelint-disable-line declaration-no-important
+
+ @if $link-shade-percentage != 0 {
+ &:hover,
+ &:focus {
+ color: if(color-contrast($value) == $color-contrast-light, shade-color($value, $link-shade-percentage), tint-color($value, $link-shade-percentage)) !important; // stylelint-disable-line declaration-no-important
+ }
+ }
+ }
+}
diff --git a/dasena-web/public/assets/admin/scss/bootstrap/helpers/_position.scss b/dasena-web/public/assets/admin/scss/bootstrap/helpers/_position.scss
new file mode 100644
index 0000000..59103d9
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/bootstrap/helpers/_position.scss
@@ -0,0 +1,36 @@
+// Shorthand
+
+.fixed-top {
+ position: fixed;
+ top: 0;
+ right: 0;
+ left: 0;
+ z-index: $zindex-fixed;
+}
+
+.fixed-bottom {
+ position: fixed;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ z-index: $zindex-fixed;
+}
+
+// Responsive sticky top and bottom
+@each $breakpoint in map-keys($grid-breakpoints) {
+ @include media-breakpoint-up($breakpoint) {
+ $infix: breakpoint-infix($breakpoint, $grid-breakpoints);
+
+ .sticky#{$infix}-top {
+ position: sticky;
+ top: 0;
+ z-index: $zindex-sticky;
+ }
+
+ .sticky#{$infix}-bottom {
+ position: sticky;
+ bottom: 0;
+ z-index: $zindex-sticky;
+ }
+ }
+}
diff --git a/dasena-web/public/assets/admin/scss/bootstrap/helpers/_ratio.scss b/dasena-web/public/assets/admin/scss/bootstrap/helpers/_ratio.scss
new file mode 100644
index 0000000..b6a7654
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/bootstrap/helpers/_ratio.scss
@@ -0,0 +1,26 @@
+// Credit: Nicolas Gallagher and SUIT CSS.
+
+.ratio {
+ position: relative;
+ width: 100%;
+
+ &::before {
+ display: block;
+ padding-top: var(--#{$prefix}aspect-ratio);
+ content: "";
+ }
+
+ > * {
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ }
+}
+
+@each $key, $ratio in $aspect-ratios {
+ .ratio-#{$key} {
+ --#{$prefix}aspect-ratio: #{$ratio};
+ }
+}
diff --git a/dasena-web/public/assets/admin/scss/bootstrap/helpers/_stacks.scss b/dasena-web/public/assets/admin/scss/bootstrap/helpers/_stacks.scss
new file mode 100644
index 0000000..6cd237a
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/bootstrap/helpers/_stacks.scss
@@ -0,0 +1,15 @@
+// scss-docs-start stacks
+.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;
+}
+// scss-docs-end stacks
diff --git a/dasena-web/public/assets/admin/scss/bootstrap/helpers/_stretched-link.scss b/dasena-web/public/assets/admin/scss/bootstrap/helpers/_stretched-link.scss
new file mode 100644
index 0000000..71a1c75
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/bootstrap/helpers/_stretched-link.scss
@@ -0,0 +1,15 @@
+//
+// Stretched link
+//
+
+.stretched-link {
+ &::#{$stretched-link-pseudo-element} {
+ position: absolute;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ z-index: $stretched-link-z-index;
+ content: "";
+ }
+}
diff --git a/dasena-web/public/assets/admin/scss/bootstrap/helpers/_text-truncation.scss b/dasena-web/public/assets/admin/scss/bootstrap/helpers/_text-truncation.scss
new file mode 100644
index 0000000..6421dac
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/bootstrap/helpers/_text-truncation.scss
@@ -0,0 +1,7 @@
+//
+// Text truncation
+//
+
+.text-truncate {
+ @include text-truncate();
+}
diff --git a/dasena-web/public/assets/admin/scss/bootstrap/helpers/_visually-hidden.scss b/dasena-web/public/assets/admin/scss/bootstrap/helpers/_visually-hidden.scss
new file mode 100644
index 0000000..4760ff0
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/bootstrap/helpers/_visually-hidden.scss
@@ -0,0 +1,8 @@
+//
+// Visually hidden
+//
+
+.visually-hidden,
+.visually-hidden-focusable:not(:focus):not(:focus-within) {
+ @include visually-hidden();
+}
diff --git a/dasena-web/public/assets/admin/scss/bootstrap/helpers/_vr.scss b/dasena-web/public/assets/admin/scss/bootstrap/helpers/_vr.scss
new file mode 100644
index 0000000..9bca099
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/bootstrap/helpers/_vr.scss
@@ -0,0 +1,8 @@
+.vr {
+ display: inline-block;
+ align-self: stretch;
+ width: 1px;
+ min-height: 1em;
+ background-color: currentcolor;
+ opacity: $hr-opacity;
+}
diff --git a/dasena-web/public/assets/admin/scss/bootstrap/mixins/_alert.scss b/dasena-web/public/assets/admin/scss/bootstrap/mixins/_alert.scss
new file mode 100644
index 0000000..231f068
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/bootstrap/mixins/_alert.scss
@@ -0,0 +1,15 @@
+// scss-docs-start alert-variant-mixin
+@mixin alert-variant($background, $border, $color) {
+ --#{$prefix}alert-color: #{$color};
+ --#{$prefix}alert-bg: #{$background};
+ --#{$prefix}alert-border-color: #{$border};
+
+ @if $enable-gradients {
+ background-image: var(--#{$prefix}gradient);
+ }
+
+ .alert-link {
+ color: shade-color($color, 20%);
+ }
+}
+// scss-docs-end alert-variant-mixin
diff --git a/dasena-web/public/assets/admin/scss/bootstrap/mixins/_backdrop.scss b/dasena-web/public/assets/admin/scss/bootstrap/mixins/_backdrop.scss
new file mode 100644
index 0000000..9705ae9
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/bootstrap/mixins/_backdrop.scss
@@ -0,0 +1,14 @@
+// Shared between modals and offcanvases
+@mixin overlay-backdrop($zindex, $backdrop-bg, $backdrop-opacity) {
+ position: fixed;
+ top: 0;
+ left: 0;
+ z-index: $zindex;
+ width: 100vw;
+ height: 100vh;
+ background-color: $backdrop-bg;
+
+ // Fade for backdrop
+ &.fade { opacity: 0; }
+ &.show { opacity: $backdrop-opacity; }
+}
diff --git a/dasena-web/public/assets/admin/scss/bootstrap/mixins/_border-radius.scss b/dasena-web/public/assets/admin/scss/bootstrap/mixins/_border-radius.scss
new file mode 100644
index 0000000..616decb
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/bootstrap/mixins/_border-radius.scss
@@ -0,0 +1,78 @@
+// stylelint-disable property-disallowed-list
+// Single side border-radius
+
+// Helper function to replace negative values with 0
+@function valid-radius($radius) {
+ $return: ();
+ @each $value in $radius {
+ @if type-of($value) == number {
+ $return: append($return, max($value, 0));
+ } @else {
+ $return: append($return, $value);
+ }
+ }
+ @return $return;
+}
+
+// scss-docs-start border-radius-mixins
+@mixin border-radius($radius: $border-radius, $fallback-border-radius: false) {
+ @if $enable-rounded {
+ border-radius: valid-radius($radius);
+ }
+ @else if $fallback-border-radius != false {
+ border-radius: $fallback-border-radius;
+ }
+}
+
+@mixin border-top-radius($radius: $border-radius) {
+ @if $enable-rounded {
+ border-top-left-radius: valid-radius($radius);
+ border-top-right-radius: valid-radius($radius);
+ }
+}
+
+@mixin border-end-radius($radius: $border-radius) {
+ @if $enable-rounded {
+ border-top-right-radius: valid-radius($radius);
+ border-bottom-right-radius: valid-radius($radius);
+ }
+}
+
+@mixin border-bottom-radius($radius: $border-radius) {
+ @if $enable-rounded {
+ border-bottom-right-radius: valid-radius($radius);
+ border-bottom-left-radius: valid-radius($radius);
+ }
+}
+
+@mixin border-start-radius($radius: $border-radius) {
+ @if $enable-rounded {
+ border-top-left-radius: valid-radius($radius);
+ border-bottom-left-radius: valid-radius($radius);
+ }
+}
+
+@mixin border-top-start-radius($radius: $border-radius) {
+ @if $enable-rounded {
+ border-top-left-radius: valid-radius($radius);
+ }
+}
+
+@mixin border-top-end-radius($radius: $border-radius) {
+ @if $enable-rounded {
+ border-top-right-radius: valid-radius($radius);
+ }
+}
+
+@mixin border-bottom-end-radius($radius: $border-radius) {
+ @if $enable-rounded {
+ border-bottom-right-radius: valid-radius($radius);
+ }
+}
+
+@mixin border-bottom-start-radius($radius: $border-radius) {
+ @if $enable-rounded {
+ border-bottom-left-radius: valid-radius($radius);
+ }
+}
+// scss-docs-end border-radius-mixins
diff --git a/dasena-web/public/assets/admin/scss/bootstrap/mixins/_box-shadow.scss b/dasena-web/public/assets/admin/scss/bootstrap/mixins/_box-shadow.scss
new file mode 100644
index 0000000..4172541
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/bootstrap/mixins/_box-shadow.scss
@@ -0,0 +1,18 @@
+@mixin box-shadow($shadow...) {
+ @if $enable-shadows {
+ $result: ();
+
+ @each $value in $shadow {
+ @if $value != null {
+ $result: append($result, $value, "comma");
+ }
+ @if $value == none and length($shadow) > 1 {
+ @warn "The keyword 'none' must be used as a single argument.";
+ }
+ }
+
+ @if (length($result) > 0) {
+ box-shadow: $result;
+ }
+ }
+}
diff --git a/dasena-web/public/assets/admin/scss/bootstrap/mixins/_breakpoints.scss b/dasena-web/public/assets/admin/scss/bootstrap/mixins/_breakpoints.scss
new file mode 100644
index 0000000..286be89
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/bootstrap/mixins/_breakpoints.scss
@@ -0,0 +1,127 @@
+// Breakpoint viewport sizes and media queries.
+//
+// Breakpoints are defined as a map of (name: minimum width), order from small to large:
+//
+// (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px)
+//
+// The map defined in the `$grid-breakpoints` global variable is used as the `$breakpoints` argument by default.
+
+// Name of the next breakpoint, or null for the last breakpoint.
+//
+// >> breakpoint-next(sm)
+// md
+// >> breakpoint-next(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px))
+// md
+// >> breakpoint-next(sm, $breakpoint-names: (xs sm md lg xl xxl))
+// md
+@function breakpoint-next($name, $breakpoints: $grid-breakpoints, $breakpoint-names: map-keys($breakpoints)) {
+ $n: index($breakpoint-names, $name);
+ @if not $n {
+ @error "breakpoint `#{$name}` not found in `#{$breakpoints}`";
+ }
+ @return if($n < length($breakpoint-names), nth($breakpoint-names, $n + 1), null);
+}
+
+// Minimum breakpoint width. Null for the smallest (first) breakpoint.
+//
+// >> breakpoint-min(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px))
+// 576px
+@function breakpoint-min($name, $breakpoints: $grid-breakpoints) {
+ $min: map-get($breakpoints, $name);
+ @return if($min != 0, $min, null);
+}
+
+// Maximum breakpoint width.
+// The maximum value is reduced by 0.02px to work around the limitations of
+// `min-` and `max-` prefixes and viewports with fractional widths.
+// See https://www.w3.org/TR/mediaqueries-4/#mq-min-max
+// Uses 0.02px rather than 0.01px to work around a current rounding bug in Safari.
+// See https://bugs.webkit.org/show_bug.cgi?id=178261
+//
+// >> breakpoint-max(md, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px))
+// 767.98px
+@function breakpoint-max($name, $breakpoints: $grid-breakpoints) {
+ $max: map-get($breakpoints, $name);
+ @return if($max and $max > 0, $max - .02, null);
+}
+
+// Returns a blank string if smallest breakpoint, otherwise returns the name with a dash in front.
+// Useful for making responsive utilities.
+//
+// >> breakpoint-infix(xs, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px))
+// "" (Returns a blank string)
+// >> breakpoint-infix(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px))
+// "-sm"
+@function breakpoint-infix($name, $breakpoints: $grid-breakpoints) {
+ @return if(breakpoint-min($name, $breakpoints) == null, "", "-#{$name}");
+}
+
+// Media of at least the minimum breakpoint width. No query for the smallest breakpoint.
+// Makes the @content apply to the given breakpoint and wider.
+@mixin media-breakpoint-up($name, $breakpoints: $grid-breakpoints) {
+ $min: breakpoint-min($name, $breakpoints);
+ @if $min {
+ @media (min-width: $min) {
+ @content;
+ }
+ } @else {
+ @content;
+ }
+}
+
+// Media of at most the maximum breakpoint width. No query for the largest breakpoint.
+// Makes the @content apply to the given breakpoint and narrower.
+@mixin media-breakpoint-down($name, $breakpoints: $grid-breakpoints) {
+ $max: breakpoint-max($name, $breakpoints);
+ @if $max {
+ @media (max-width: $max) {
+ @content;
+ }
+ } @else {
+ @content;
+ }
+}
+
+// Media that spans multiple breakpoint widths.
+// Makes the @content apply between the min and max breakpoints
+@mixin media-breakpoint-between($lower, $upper, $breakpoints: $grid-breakpoints) {
+ $min: breakpoint-min($lower, $breakpoints);
+ $max: breakpoint-max($upper, $breakpoints);
+
+ @if $min != null and $max != null {
+ @media (min-width: $min) and (max-width: $max) {
+ @content;
+ }
+ } @else if $max == null {
+ @include media-breakpoint-up($lower, $breakpoints) {
+ @content;
+ }
+ } @else if $min == null {
+ @include media-breakpoint-down($upper, $breakpoints) {
+ @content;
+ }
+ }
+}
+
+// Media between the breakpoint's minimum and maximum widths.
+// No minimum for the smallest breakpoint, and no maximum for the largest one.
+// Makes the @content apply only to the given breakpoint, not viewports any wider or narrower.
+@mixin media-breakpoint-only($name, $breakpoints: $grid-breakpoints) {
+ $min: breakpoint-min($name, $breakpoints);
+ $next: breakpoint-next($name, $breakpoints);
+ $max: breakpoint-max($next, $breakpoints);
+
+ @if $min != null and $max != null {
+ @media (min-width: $min) and (max-width: $max) {
+ @content;
+ }
+ } @else if $max == null {
+ @include media-breakpoint-up($name, $breakpoints) {
+ @content;
+ }
+ } @else if $min == null {
+ @include media-breakpoint-down($next, $breakpoints) {
+ @content;
+ }
+ }
+}
diff --git a/dasena-web/public/assets/admin/scss/bootstrap/mixins/_buttons.scss b/dasena-web/public/assets/admin/scss/bootstrap/mixins/_buttons.scss
new file mode 100644
index 0000000..5da4d22
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/bootstrap/mixins/_buttons.scss
@@ -0,0 +1,71 @@
+// stylelint-disable custom-property-empty-line-before
+
+// Button variants
+//
+// Easily pump out default styles, as well as :hover, :focus, :active,
+// and disabled options for all buttons
+
+// scss-docs-start btn-variant-mixin
+@mixin button-variant(
+ $background,
+ $border,
+ $color: color-contrast($background),
+ $hover-background: if($color == $color-contrast-light, shade-color($background, $btn-hover-bg-shade-amount), tint-color($background, $btn-hover-bg-tint-amount)),
+ $hover-border: if($color == $color-contrast-light, shade-color($border, $btn-hover-border-shade-amount), tint-color($border, $btn-hover-border-tint-amount)),
+ $hover-color: color-contrast($hover-background),
+ $active-background: if($color == $color-contrast-light, shade-color($background, $btn-active-bg-shade-amount), tint-color($background, $btn-active-bg-tint-amount)),
+ $active-border: if($color == $color-contrast-light, shade-color($border, $btn-active-border-shade-amount), tint-color($border, $btn-active-border-tint-amount)),
+ $active-color: color-contrast($active-background),
+ $disabled-background: $background,
+ $disabled-border: $border,
+ $disabled-color: color-contrast($disabled-background)
+) {
+ --#{$prefix}btn-color: #{$color};
+ --#{$prefix}btn-bg: #{$background};
+ --#{$prefix}btn-border-color: #{$border};
+ --#{$prefix}btn-hover-color: #{$hover-color};
+ --#{$prefix}btn-hover-bg: #{$hover-background};
+ --#{$prefix}btn-hover-border-color: #{$hover-border};
+ --#{$prefix}btn-focus-shadow-rgb: #{to-rgb(mix($color, $border, 15%))};
+ --#{$prefix}btn-active-color: #{$active-color};
+ --#{$prefix}btn-active-bg: #{$active-background};
+ --#{$prefix}btn-active-border-color: #{$active-border};
+ --#{$prefix}btn-active-shadow: #{$btn-active-box-shadow};
+ --#{$prefix}btn-disabled-color: #{$disabled-color};
+ --#{$prefix}btn-disabled-bg: #{$disabled-background};
+ --#{$prefix}btn-disabled-border-color: #{$disabled-border};
+}
+// scss-docs-end btn-variant-mixin
+
+// scss-docs-start btn-outline-variant-mixin
+@mixin button-outline-variant(
+ $color,
+ $color-hover: color-contrast($color),
+ $active-background: $color,
+ $active-border: $color,
+ $active-color: color-contrast($active-background)
+) {
+ --#{$prefix}btn-color: #{$color};
+ --#{$prefix}btn-border-color: #{$color};
+ --#{$prefix}btn-hover-color: #{$color-hover};
+ --#{$prefix}btn-hover-bg: #{$active-background};
+ --#{$prefix}btn-hover-border-color: #{$active-border};
+ --#{$prefix}btn-focus-shadow-rgb: #{to-rgb($color)};
+ --#{$prefix}btn-active-color: #{$active-color};
+ --#{$prefix}btn-active-bg: #{$active-background};
+ --#{$prefix}btn-active-border-color: #{$active-border};
+ --#{$prefix}btn-active-shadow: #{$btn-active-box-shadow};
+ --#{$prefix}btn-disabled-color: #{$color};
+ --#{$prefix}btn-disabled-bg: transparent;
+ --#{$prefix}gradient: none;
+}
+// scss-docs-end btn-outline-variant-mixin
+
+// scss-docs-start btn-size-mixin
+@mixin button-size($padding-y, $padding-x, $font-size, $border-radius) {
+ --#{$prefix}btn-padding-y: #{$padding-y};
+ --#{$prefix}btn-padding-x: #{$padding-x};
+ @include rfs($font-size, --#{$prefix}btn-font-size);
+ --#{$prefix}btn-border-radius: #{$border-radius};
+}
+// scss-docs-end btn-size-mixin
diff --git a/dasena-web/public/assets/admin/scss/bootstrap/mixins/_caret.scss b/dasena-web/public/assets/admin/scss/bootstrap/mixins/_caret.scss
new file mode 100644
index 0000000..4b0f036
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/bootstrap/mixins/_caret.scss
@@ -0,0 +1,64 @@
+// scss-docs-start caret-mixins
+@mixin caret-down {
+ border-top: $caret-width solid;
+ border-right: $caret-width solid transparent;
+ border-bottom: 0;
+ border-left: $caret-width solid transparent;
+}
+
+@mixin caret-up {
+ border-top: 0;
+ border-right: $caret-width solid transparent;
+ border-bottom: $caret-width solid;
+ border-left: $caret-width solid transparent;
+}
+
+@mixin caret-end {
+ border-top: $caret-width solid transparent;
+ border-right: 0;
+ border-bottom: $caret-width solid transparent;
+ border-left: $caret-width solid;
+}
+
+@mixin caret-start {
+ border-top: $caret-width solid transparent;
+ border-right: $caret-width solid;
+ border-bottom: $caret-width solid transparent;
+}
+
+@mixin caret($direction: down) {
+ @if $enable-caret {
+ &::after {
+ display: inline-block;
+ margin-left: $caret-spacing;
+ vertical-align: $caret-vertical-align;
+ content: "";
+ @if $direction == down {
+ @include caret-down();
+ } @else if $direction == up {
+ @include caret-up();
+ } @else if $direction == end {
+ @include caret-end();
+ }
+ }
+
+ @if $direction == start {
+ &::after {
+ display: none;
+ }
+
+ &::before {
+ display: inline-block;
+ margin-right: $caret-spacing;
+ vertical-align: $caret-vertical-align;
+ content: "";
+ @include caret-start();
+ }
+ }
+
+ &:empty::after {
+ margin-left: 0;
+ }
+ }
+}
+// scss-docs-end caret-mixins
diff --git a/dasena-web/public/assets/admin/scss/bootstrap/mixins/_clearfix.scss b/dasena-web/public/assets/admin/scss/bootstrap/mixins/_clearfix.scss
new file mode 100644
index 0000000..ffc62bb
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/bootstrap/mixins/_clearfix.scss
@@ -0,0 +1,9 @@
+// scss-docs-start clearfix
+@mixin clearfix() {
+ &::after {
+ display: block;
+ clear: both;
+ content: "";
+ }
+}
+// scss-docs-end clearfix
diff --git a/dasena-web/public/assets/admin/scss/bootstrap/mixins/_color-scheme.scss b/dasena-web/public/assets/admin/scss/bootstrap/mixins/_color-scheme.scss
new file mode 100644
index 0000000..90497aa
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/bootstrap/mixins/_color-scheme.scss
@@ -0,0 +1,7 @@
+// scss-docs-start mixin-color-scheme
+@mixin color-scheme($name) {
+ @media (prefers-color-scheme: #{$name}) {
+ @content;
+ }
+}
+// scss-docs-end mixin-color-scheme
diff --git a/dasena-web/public/assets/admin/scss/bootstrap/mixins/_container.scss b/dasena-web/public/assets/admin/scss/bootstrap/mixins/_container.scss
new file mode 100644
index 0000000..b9f3351
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/bootstrap/mixins/_container.scss
@@ -0,0 +1,11 @@
+// Container mixins
+
+@mixin make-container($gutter: $container-padding-x) {
+ --#{$prefix}gutter-x: #{$gutter};
+ --#{$prefix}gutter-y: 0;
+ width: 100%;
+ padding-right: calc(var(--#{$prefix}gutter-x) * .5); // stylelint-disable-line function-disallowed-list
+ padding-left: calc(var(--#{$prefix}gutter-x) * .5); // stylelint-disable-line function-disallowed-list
+ margin-right: auto;
+ margin-left: auto;
+}
diff --git a/dasena-web/public/assets/admin/scss/bootstrap/mixins/_deprecate.scss b/dasena-web/public/assets/admin/scss/bootstrap/mixins/_deprecate.scss
new file mode 100644
index 0000000..df070bc
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/bootstrap/mixins/_deprecate.scss
@@ -0,0 +1,10 @@
+// Deprecate mixin
+//
+// This mixin can be used to deprecate mixins or functions.
+// `$enable-deprecation-messages` is a global variable, `$ignore-warning` is a variable that can be passed to
+// some deprecated mixins to suppress the warning (for example if the mixin is still be used in the current version of Bootstrap)
+@mixin deprecate($name, $deprecate-version, $remove-version, $ignore-warning: false) {
+ @if ($enable-deprecation-messages != false and $ignore-warning != true) {
+ @warn "#{$name} has been deprecated as of #{$deprecate-version}. It will be removed entirely in #{$remove-version}.";
+ }
+}
diff --git a/dasena-web/public/assets/admin/scss/bootstrap/mixins/_forms.scss b/dasena-web/public/assets/admin/scss/bootstrap/mixins/_forms.scss
new file mode 100644
index 0000000..81cd2e3
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/bootstrap/mixins/_forms.scss
@@ -0,0 +1,152 @@
+// This mixin uses an `if()` technique to be compatible with Dart Sass
+// See https://github.com/sass/sass/issues/1873#issuecomment-152293725 for more details
+
+// scss-docs-start form-validation-mixins
+@mixin form-validation-state-selector($state) {
+ @if ($state == "valid" or $state == "invalid") {
+ .was-validated #{if(&, "&", "")}:#{$state},
+ #{if(&, "&", "")}.is-#{$state} {
+ @content;
+ }
+ } @else {
+ #{if(&, "&", "")}.is-#{$state} {
+ @content;
+ }
+ }
+}
+
+@mixin form-validation-state(
+ $state,
+ $color,
+ $icon,
+ $tooltip-color: color-contrast($color),
+ $tooltip-bg-color: rgba($color, $form-feedback-tooltip-opacity),
+ $focus-box-shadow: 0 0 $input-btn-focus-blur $input-focus-width rgba($color, $input-btn-focus-color-opacity)
+) {
+ .#{$state}-feedback {
+ display: none;
+ width: 100%;
+ margin-top: $form-feedback-margin-top;
+ @include font-size($form-feedback-font-size);
+ font-style: $form-feedback-font-style;
+ color: $color;
+ }
+
+ .#{$state}-tooltip {
+ position: absolute;
+ top: 100%;
+ z-index: 5;
+ display: none;
+ max-width: 100%; // Contain to parent when possible
+ padding: $form-feedback-tooltip-padding-y $form-feedback-tooltip-padding-x;
+ margin-top: .1rem;
+ @include font-size($form-feedback-tooltip-font-size);
+ line-height: $form-feedback-tooltip-line-height;
+ color: $tooltip-color;
+ background-color: $tooltip-bg-color;
+ @include border-radius($form-feedback-tooltip-border-radius);
+ }
+
+ @include form-validation-state-selector($state) {
+ ~ .#{$state}-feedback,
+ ~ .#{$state}-tooltip {
+ display: block;
+ }
+ }
+
+ .form-control {
+ @include form-validation-state-selector($state) {
+ border-color: $color;
+
+ @if $enable-validation-icons {
+ padding-right: $input-height-inner;
+ background-image: escape-svg($icon);
+ background-repeat: no-repeat;
+ background-position: right $input-height-inner-quarter center;
+ background-size: $input-height-inner-half $input-height-inner-half;
+ }
+
+ &:focus {
+ border-color: $color;
+ box-shadow: $focus-box-shadow;
+ }
+ }
+ }
+
+ // stylelint-disable-next-line selector-no-qualifying-type
+ textarea.form-control {
+ @include form-validation-state-selector($state) {
+ @if $enable-validation-icons {
+ padding-right: $input-height-inner;
+ background-position: top $input-height-inner-quarter right $input-height-inner-quarter;
+ }
+ }
+ }
+
+ .form-select {
+ @include form-validation-state-selector($state) {
+ border-color: $color;
+
+ @if $enable-validation-icons {
+ &:not([multiple]):not([size]),
+ &:not([multiple])[size="1"] {
+ padding-right: $form-select-feedback-icon-padding-end;
+ background-image: escape-svg($form-select-indicator), escape-svg($icon);
+ background-position: $form-select-bg-position, $form-select-feedback-icon-position;
+ background-size: $form-select-bg-size, $form-select-feedback-icon-size;
+ }
+ }
+
+ &:focus {
+ border-color: $color;
+ box-shadow: $focus-box-shadow;
+ }
+ }
+ }
+
+ .form-control-color {
+ @include form-validation-state-selector($state) {
+ @if $enable-validation-icons {
+ width: add($form-color-width, $input-height-inner);
+ }
+ }
+ }
+
+ .form-check-input {
+ @include form-validation-state-selector($state) {
+ border-color: $color;
+
+ &:checked {
+ background-color: $color;
+ }
+
+ &:focus {
+ box-shadow: $focus-box-shadow;
+ }
+
+ ~ .form-check-label {
+ color: $color;
+ }
+ }
+ }
+ .form-check-inline .form-check-input {
+ ~ .#{$state}-feedback {
+ margin-left: .5em;
+ }
+ }
+
+ .input-group .form-control,
+ .input-group .form-select {
+ @include form-validation-state-selector($state) {
+ @if $state == "valid" {
+ z-index: 1;
+ } @else if $state == "invalid" {
+ z-index: 2;
+ }
+ &:focus {
+ z-index: 3;
+ }
+ }
+ }
+}
+// scss-docs-end form-validation-mixins
diff --git a/dasena-web/public/assets/admin/scss/bootstrap/mixins/_gradients.scss b/dasena-web/public/assets/admin/scss/bootstrap/mixins/_gradients.scss
new file mode 100644
index 0000000..608e18d
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/bootstrap/mixins/_gradients.scss
@@ -0,0 +1,47 @@
+// Gradients
+
+// scss-docs-start gradient-bg-mixin
+@mixin gradient-bg($color: null) {
+ background-color: $color;
+
+ @if $enable-gradients {
+ background-image: var(--#{$prefix}gradient);
+ }
+}
+// scss-docs-end gradient-bg-mixin
+
+// scss-docs-start gradient-mixins
+// Horizontal gradient, from left to right
+//
+// Creates two color stops, start and end, by specifying a color and position for each color stop.
+@mixin gradient-x($start-color: $gray-700, $end-color: $gray-800, $start-percent: 0%, $end-percent: 100%) {
+ background-image: linear-gradient(to right, $start-color $start-percent, $end-color $end-percent);
+}
+
+// Vertical gradient, from top to bottom
+//
+// Creates two color stops, start and end, by specifying a color and position for each color stop.
+@mixin gradient-y($start-color: $gray-700, $end-color: $gray-800, $start-percent: null, $end-percent: null) {
+ background-image: linear-gradient(to bottom, $start-color $start-percent, $end-color $end-percent);
+}
+
+@mixin gradient-directional($start-color: $gray-700, $end-color: $gray-800, $deg: 45deg) {
+ background-image: linear-gradient($deg, $start-color, $end-color);
+}
+
+@mixin gradient-x-three-colors($start-color: $blue, $mid-color: $purple, $color-stop: 50%, $end-color: $red) {
+ background-image: linear-gradient(to right, $start-color, $mid-color $color-stop, $end-color);
+}
+
+@mixin gradient-y-three-colors($start-color: $blue, $mid-color: $purple, $color-stop: 50%, $end-color: $red) {
+ background-image: linear-gradient($start-color, $mid-color $color-stop, $end-color);
+}
+
+@mixin gradient-radial($inner-color: $gray-700, $outer-color: $gray-800) {
+ background-image: radial-gradient(circle, $inner-color, $outer-color);
+}
+
+@mixin gradient-striped($color: rgba($white, .15), $angle: 45deg) {
+ background-image: linear-gradient($angle, $color 25%, transparent 25%, transparent 50%, $color 50%, $color 75%, transparent 75%, transparent);
+}
+// scss-docs-end gradient-mixins
diff --git a/dasena-web/public/assets/admin/scss/bootstrap/mixins/_grid.scss b/dasena-web/public/assets/admin/scss/bootstrap/mixins/_grid.scss
new file mode 100644
index 0000000..e4cebae
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/bootstrap/mixins/_grid.scss
@@ -0,0 +1,151 @@
+// Grid system
+//
+// Generate semantic grid columns with these mixins.
+
+@mixin make-row($gutter: $grid-gutter-width) {
+ --#{$prefix}gutter-x: #{$gutter};
+ --#{$prefix}gutter-y: 0;
+ display: flex;
+ flex-wrap: wrap;
+ // TODO: Revisit calc order after https://github.com/react-bootstrap/react-bootstrap/issues/6039 is fixed
+ margin-top: calc(-1 * var(--#{$prefix}gutter-y)); // stylelint-disable-line function-disallowed-list
+ margin-right: calc(-.5 * var(--#{$prefix}gutter-x)); // stylelint-disable-line function-disallowed-list
+ margin-left: calc(-.5 * var(--#{$prefix}gutter-x)); // stylelint-disable-line function-disallowed-list
+}
+
+@mixin make-col-ready() {
+ // Add box sizing if only the grid is loaded
+ box-sizing: if(variable-exists(include-column-box-sizing) and $include-column-box-sizing, border-box, null);
+ // Prevent columns from becoming too narrow when at smaller grid tiers by
+ // always setting `width: 100%;`. This works because we set the width
+ // later on to override this initial width.
+ flex-shrink: 0;
+ width: 100%;
+ max-width: 100%; // Prevent `.col-auto`, `.col` (& responsive variants) from breaking out the grid
+ padding-right: calc(var(--#{$prefix}gutter-x) * .5); // stylelint-disable-line function-disallowed-list
+ padding-left: calc(var(--#{$prefix}gutter-x) * .5); // stylelint-disable-line function-disallowed-list
+ margin-top: var(--#{$prefix}gutter-y);
+}
+
+@mixin make-col($size: false, $columns: $grid-columns) {
+ @if $size {
+ flex: 0 0 auto;
+ width: percentage(divide($size, $columns));
+
+ } @else {
+ flex: 1 1 0;
+ max-width: 100%;
+ }
+}
+
+@mixin make-col-auto() {
+ flex: 0 0 auto;
+ width: auto;
+}
+
+@mixin make-col-offset($size, $columns: $grid-columns) {
+ $num: divide($size, $columns);
+ margin-left: if($num == 0, 0, percentage($num));
+}
+
+// Row columns
+//
+// Specify on a parent element(e.g., .row) to force immediate children into NN
+// numberof columns. Supports wrapping to new lines, but does not do a Masonry
+// style grid.
+@mixin row-cols($count) {
+ > * {
+ flex: 0 0 auto;
+ width: divide(100%, $count);
+ }
+}
+
+// Framework grid generation
+//
+// Used only by Bootstrap to generate the correct number of grid classes given
+// any value of `$grid-columns`.
+
+@mixin make-grid-columns($columns: $grid-columns, $gutter: $grid-gutter-width, $breakpoints: $grid-breakpoints) {
+ @each $breakpoint in map-keys($breakpoints) {
+ $infix: breakpoint-infix($breakpoint, $breakpoints);
+
+ @include media-breakpoint-up($breakpoint, $breakpoints) {
+ // Provide basic `.col-{bp}` classes for equal-width flexbox columns
+ .col#{$infix} {
+ flex: 1 0 0%; // Flexbugs #4: https://github.com/philipwalton/flexbugs#flexbug-4
+ }
+
+ .row-cols#{$infix}-auto > * {
+ @include make-col-auto();
+ }
+
+ @if $grid-row-columns > 0 {
+ @for $i from 1 through $grid-row-columns {
+ .row-cols#{$infix}-#{$i} {
+ @include row-cols($i);
+ }
+ }
+ }
+
+ .col#{$infix}-auto {
+ @include make-col-auto();
+ }
+
+ @if $columns > 0 {
+ @for $i from 1 through $columns {
+ .col#{$infix}-#{$i} {
+ @include make-col($i, $columns);
+ }
+ }
+
+ // `$columns - 1` because offsetting by the width of an entire row isn't possible
+ @for $i from 0 through ($columns - 1) {
+ @if not ($infix == "" and $i == 0) { // Avoid emitting useless .offset-0
+ .offset#{$infix}-#{$i} {
+ @include make-col-offset($i, $columns);
+ }
+ }
+ }
+ }
+
+ // Gutters
+ //
+ // Make use of `.g-*`, `.gx-*` or `.gy-*` utilities to change spacing between the columns.
+ @each $key, $value in $gutters {
+ .g#{$infix}-#{$key},
+ .gx#{$infix}-#{$key} {
+ --#{$prefix}gutter-x: #{$value};
+ }
+
+ .g#{$infix}-#{$key},
+ .gy#{$infix}-#{$key} {
+ --#{$prefix}gutter-y: #{$value};
+ }
+ }
+ }
+ }
+}
+
+@mixin make-cssgrid($columns: $grid-columns, $breakpoints: $grid-breakpoints) {
+ @each $breakpoint in map-keys($breakpoints) {
+ $infix: breakpoint-infix($breakpoint, $breakpoints);
+
+ @include media-breakpoint-up($breakpoint, $breakpoints) {
+ @if $columns > 0 {
+ @for $i from 1 through $columns {
+ .g-col#{$infix}-#{$i} {
+ grid-column: auto / span $i;
+ }
+ }
+
+ // Start with `1` because `0` is and invalid value.
+ // Ends with `$columns - 1` because offsetting by the width of an entire row isn't possible.
+ @for $i from 1 through ($columns - 1) {
+ .g-start#{$infix}-#{$i} {
+ grid-column-start: $i;
+ }
+ }
+ }
+ }
+ }
+}
diff --git a/dasena-web/public/assets/admin/scss/bootstrap/mixins/_image.scss b/dasena-web/public/assets/admin/scss/bootstrap/mixins/_image.scss
new file mode 100644
index 0000000..e1df779
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/bootstrap/mixins/_image.scss
@@ -0,0 +1,16 @@
+// Image Mixins
+// - Responsive image
+// - Retina image
+
+
+// Responsive image
+//
+// Keep images from scaling beyond the width of their parents.
+
+@mixin img-fluid {
+ // Part 1: Set a maximum relative to the parent
+ max-width: 100%;
+ // Part 2: Override the height to auto, otherwise images will be stretched
+ // when setting a width and height attribute on the img element.
+ height: auto;
+}
diff --git a/dasena-web/public/assets/admin/scss/bootstrap/mixins/_list-group.scss b/dasena-web/public/assets/admin/scss/bootstrap/mixins/_list-group.scss
new file mode 100644
index 0000000..e55415f
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/bootstrap/mixins/_list-group.scss
@@ -0,0 +1,24 @@
+// List Groups
+
+// scss-docs-start list-group-mixin
+@mixin list-group-item-variant($state, $background, $color) {
+ .list-group-item-#{$state} {
+ color: $color;
+ background-color: $background;
+
+ &.list-group-item-action {
+ &:hover,
+ &:focus {
+ color: $color;
+ background-color: shade-color($background, 10%);
+ }
+
+ &.active {
+ color: $white;
+ background-color: $color;
+ border-color: $color;
+ }
+ }
+ }
+}
+// scss-docs-end list-group-mixin
diff --git a/dasena-web/public/assets/admin/scss/bootstrap/mixins/_lists.scss b/dasena-web/public/assets/admin/scss/bootstrap/mixins/_lists.scss
new file mode 100644
index 0000000..2518562
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/bootstrap/mixins/_lists.scss
@@ -0,0 +1,7 @@
+// Lists
+
+// Unstyled keeps list items block level, just removes default browser padding and list-style
+@mixin list-unstyled {
+ padding-left: 0;
+ list-style: none;
+}
diff --git a/dasena-web/public/assets/admin/scss/bootstrap/mixins/_pagination.scss b/dasena-web/public/assets/admin/scss/bootstrap/mixins/_pagination.scss
new file mode 100644
index 0000000..4c178ff
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/bootstrap/mixins/_pagination.scss
@@ -0,0 +1,10 @@
+// Pagination
+
+// scss-docs-start pagination-mixin
+@mixin pagination-size($padding-y, $padding-x, $font-size, $border-radius) {
+ --#{$prefix}pagination-padding-x: #{$padding-x};
+ --#{$prefix}pagination-padding-y: #{$padding-y};
+ @include rfs($font-size, --#{$prefix}pagination-font-size);
+ --#{$prefix}pagination-border-radius: #{$border-radius}; // stylelint-disable-line custom-property-empty-line-before
+}
+// scss-docs-end pagination-mixin
diff --git a/dasena-web/public/assets/admin/scss/bootstrap/mixins/_reset-text.scss b/dasena-web/public/assets/admin/scss/bootstrap/mixins/_reset-text.scss
new file mode 100644
index 0000000..f5bd1af
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/bootstrap/mixins/_reset-text.scss
@@ -0,0 +1,17 @@
+@mixin reset-text {
+ font-family: $font-family-base;
+ // We deliberately do NOT reset font-size or overflow-wrap / word-wrap.
+ font-style: normal;
+ font-weight: $font-weight-normal;
+ line-height: $line-height-base;
+ text-align: left; // Fallback for where `start` is not supported
+ 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;
+}
diff --git a/dasena-web/public/assets/admin/scss/bootstrap/mixins/_resize.scss b/dasena-web/public/assets/admin/scss/bootstrap/mixins/_resize.scss
new file mode 100644
index 0000000..66f233a
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/bootstrap/mixins/_resize.scss
@@ -0,0 +1,6 @@
+// Resize anything
+
+@mixin resizable($direction) {
+ overflow: auto; // Per CSS3 UI, `resize` only applies when `overflow` isn't `visible`
+ resize: $direction; // Options: horizontal, vertical, both
+}
diff --git a/dasena-web/public/assets/admin/scss/bootstrap/mixins/_table-variants.scss b/dasena-web/public/assets/admin/scss/bootstrap/mixins/_table-variants.scss
new file mode 100644
index 0000000..ae43ec6
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/bootstrap/mixins/_table-variants.scss
@@ -0,0 +1,24 @@
+// scss-docs-start table-variant
+@mixin table-variant($state, $background) {
+ .table-#{$state} {
+ $color: color-contrast(opaque($body-bg, $background));
+ $hover-bg: mix($color, $background, percentage($table-hover-bg-factor));
+ $striped-bg: mix($color, $background, percentage($table-striped-bg-factor));
+ $active-bg: mix($color, $background, percentage($table-active-bg-factor));
+ $border-color: mix($color, $background, percentage($table-border-factor));
+
+ --#{$prefix}table-color: #{$color};
+ --#{$prefix}table-bg: #{$background};
+ --#{$prefix}table-border-color: #{$border-color};
+ --#{$prefix}table-striped-bg: #{$striped-bg};
+ --#{$prefix}table-striped-color: #{color-contrast($striped-bg)};
+ --#{$prefix}table-active-bg: #{$active-bg};
+ --#{$prefix}table-active-color: #{color-contrast($active-bg)};
+ --#{$prefix}table-hover-bg: #{$hover-bg};
+ --#{$prefix}table-hover-color: #{color-contrast($hover-bg)};
+
+ color: var(--#{$prefix}table-color);
+ border-color: var(--#{$prefix}table-border-color);
+ }
+}
+// scss-docs-end table-variant
diff --git a/dasena-web/public/assets/admin/scss/bootstrap/mixins/_text-truncate.scss b/dasena-web/public/assets/admin/scss/bootstrap/mixins/_text-truncate.scss
new file mode 100644
index 0000000..3504bb1
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/bootstrap/mixins/_text-truncate.scss
@@ -0,0 +1,8 @@
+// Text truncate
+// Requires inline-block or block for proper styling
+
+@mixin text-truncate() {
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+}
diff --git a/dasena-web/public/assets/admin/scss/bootstrap/mixins/_transition.scss b/dasena-web/public/assets/admin/scss/bootstrap/mixins/_transition.scss
new file mode 100644
index 0000000..d437f6d
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/bootstrap/mixins/_transition.scss
@@ -0,0 +1,26 @@
+// stylelint-disable property-disallowed-list
+@mixin transition($transition...) {
+ @if length($transition) == 0 {
+ $transition: $transition-base;
+ }
+
+ @if length($transition) > 1 {
+ @each $value in $transition {
+ @if $value == null or $value == none {
+ @warn "The keyword 'none' or 'null' must be used as a single argument.";
+ }
+ }
+ }
+
+ @if $enable-transitions {
+ @if nth($transition, 1) != null {
+ transition: $transition;
+ }
+
+ @if $enable-reduced-motion and nth($transition, 1) != null and nth($transition, 1) != none {
+ @media (prefers-reduced-motion: reduce) {
+ transition: none;
+ }
+ }
+ }
+}
diff --git a/dasena-web/public/assets/admin/scss/bootstrap/mixins/_utilities.scss b/dasena-web/public/assets/admin/scss/bootstrap/mixins/_utilities.scss
new file mode 100644
index 0000000..b020137
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/bootstrap/mixins/_utilities.scss
@@ -0,0 +1,92 @@
+// Utility generator
+// Used to generate utilities & print utilities
+@mixin generate-utility($utility, $infix, $is-rfs-media-query: false) {
+ $values: map-get($utility, values);
+
+ // If the values are a list or string, convert it into a map
+ @if type-of($values) == "string" or type-of(nth($values, 1)) != "list" {
+ $values: zip($values, $values);
+ }
+
+ @each $key, $value in $values {
+ $properties: map-get($utility, property);
+
+ // Multiple properties are possible, for example with vertical or horizontal margins or paddings
+ @if type-of($properties) == "string" {
+ $properties: append((), $properties);
+ }
+
+ // Use custom class if present
+ $property-class: if(map-has-key($utility, class), map-get($utility, class), nth($properties, 1));
+ $property-class: if($property-class == null, "", $property-class);
+
+ // Use custom CSS variable name if present, otherwise default to `class`
+ $css-variable-name: if(map-has-key($utility, css-variable-name), map-get($utility, css-variable-name), map-get($utility, class));
+
+ // State params to generate pseudo-classes
+ $state: if(map-has-key($utility, state), map-get($utility, state), ());
+
+ $infix: if($property-class == "" and str-slice($infix, 1, 1) == "-", str-slice($infix, 2), $infix);
+
+ // Don't prefix if value key is null (eg. with shadow class)
+ $property-class-modifier: if($key, if($property-class == "" and $infix == "", "", "-") + $key, "");
+
+ @if map-get($utility, rfs) {
+ // Inside the media query
+ @if $is-rfs-media-query {
+ $val: rfs-value($value);
+
+ // Do not render anything if fluid and non fluid values are the same
+ $value: if($val == rfs-fluid-value($value), null, $val);
+ }
+ @else {
+ $value: rfs-fluid-value($value);
+ }
+ }
+
+ $is-css-var: map-get($utility, css-var);
+ $is-local-vars: map-get($utility, local-vars);
+ $is-rtl: map-get($utility, rtl);
+
+ @if $value != null {
+ @if $is-rtl == false {
+ /* rtl:begin:remove */
+ }
+
+ @if $is-css-var {
+ .#{$property-class + $infix + $property-class-modifier} {
+ --#{$prefix}#{$css-variable-name}: #{$value};
+ }
+
+ @each $pseudo in $state {
+ .#{$property-class + $infix + $property-class-modifier}-#{$pseudo}:#{$pseudo} {
+ --#{$prefix}#{$css-variable-name}: #{$value};
+ }
+ }
+ } @else {
+ .#{$property-class + $infix + $property-class-modifier} {
+ @each $property in $properties {
+ @if $is-local-vars {
+ @each $local-var, $variable in $is-local-vars {
+ --#{$prefix}#{$local-var}: #{$variable};
+ }
+ }
+ #{$property}: $value if($enable-important-utilities, !important, null);
+ }
+ }
+
+ @each $pseudo in $state {
+ .#{$property-class + $infix + $property-class-modifier}-#{$pseudo}:#{$pseudo} {
+ @each $property in $properties {
+ #{$property}: $value if($enable-important-utilities, !important, null);
+ }
+ }
+ }
+ }
+
+ @if $is-rtl == false {
+ /* rtl:end:remove */
+ }
+ }
+ }
+}
diff --git a/dasena-web/public/assets/admin/scss/bootstrap/mixins/_visually-hidden.scss b/dasena-web/public/assets/admin/scss/bootstrap/mixins/_visually-hidden.scss
new file mode 100644
index 0000000..4fc7f49
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/bootstrap/mixins/_visually-hidden.scss
@@ -0,0 +1,29 @@
+// stylelint-disable declaration-no-important
+
+// Hide content visually while keeping it accessible to assistive technologies
+//
+// See: https://www.a11yproject.com/posts/2013-01-11-how-to-hide-content/
+// See: https://kittygiraudel.com/2016/10/13/css-hide-and-seek/
+
+@mixin visually-hidden() {
+ position: absolute !important;
+ width: 1px !important;
+ height: 1px !important;
+ padding: 0 !important;
+ margin: -1px !important; // Fix for https://github.com/twbs/bootstrap/issues/25686
+ overflow: hidden !important;
+ clip: rect(0, 0, 0, 0) !important;
+ white-space: nowrap !important;
+ border: 0 !important;
+}
+
+// Use to only display content when it's focused, or one of its child elements is focused
+// (i.e. when focus is within the element/container that the class was applied to)
+//
+// Useful for "Skip to main content" links; see https://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1
+
+@mixin visually-hidden-focusable() {
+ &:not(:focus):not(:focus-within) {
+ @include visually-hidden();
+ }
+}
diff --git a/dasena-web/public/assets/admin/scss/bootstrap/utilities/_api.scss b/dasena-web/public/assets/admin/scss/bootstrap/utilities/_api.scss
new file mode 100644
index 0000000..62e1d39
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/bootstrap/utilities/_api.scss
@@ -0,0 +1,47 @@
+// Loop over each breakpoint
+@each $breakpoint in map-keys($grid-breakpoints) {
+
+ // Generate media query if needed
+ @include media-breakpoint-up($breakpoint) {
+ $infix: breakpoint-infix($breakpoint, $grid-breakpoints);
+
+ // Loop over each utility property
+ @each $key, $utility in $utilities {
+ // The utility can be disabled with `false`, thus check if the utility is a map first
+ // Only proceed if responsive media queries are enabled or if it's the base media query
+ @if type-of($utility) == "map" and (map-get($utility, responsive) or $infix == "") {
+ @include generate-utility($utility, $infix);
+ }
+ }
+ }
+}
+
+// RFS rescaling
+@media (min-width: $rfs-mq-value) {
+ @each $breakpoint in map-keys($grid-breakpoints) {
+ $infix: breakpoint-infix($breakpoint, $grid-breakpoints);
+
+ @if (map-get($grid-breakpoints, $breakpoint) < $rfs-breakpoint) {
+ // Loop over each utility property
+ @each $key, $utility in $utilities {
+ // The utility can be disabled with `false`, thus check if the utility is a map first
+ // Only proceed if responsive media queries are enabled or if it's the base media query
+ @if type-of($utility) == "map" and map-get($utility, rfs) and (map-get($utility, responsive) or $infix == "") {
+ @include generate-utility($utility, $infix, true);
+ }
+ }
+ }
+ }
+}
+
+
+// Print utilities
+@media print {
+ @each $key, $utility in $utilities {
+ // The utility can be disabled with `false`, thus check if the utility is a map first
+ // Then check if the utility needs print styles
+ @if type-of($utility) == "map" and map-get($utility, print) == true {
+ @include generate-utility($utility, "-print");
+ }
+ }
+}
diff --git a/dasena-web/public/assets/admin/scss/bootstrap/vendor/_rfs.scss b/dasena-web/public/assets/admin/scss/bootstrap/vendor/_rfs.scss
new file mode 100644
index 0000000..7e9a6c7
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/bootstrap/vendor/_rfs.scss
@@ -0,0 +1,354 @@
+// stylelint-disable property-blacklist, scss/dollar-variable-default
+
+// SCSS RFS mixin
+//
+// Automated responsive values for font sizes, paddings, margins and much more
+//
+// Licensed under MIT (https://github.com/twbs/rfs/blob/main/LICENSE)
+
+// Configuration
+
+// Base value
+$rfs-base-value: 1.25rem !default;
+$rfs-unit: rem !default;
+
+@if $rfs-unit != rem and $rfs-unit != px {
+ @error "`#{$rfs-unit}` is not a valid unit for $rfs-unit. Use `px` or `rem`.";
+}
+
+// Breakpoint at where values start decreasing if screen width is smaller
+$rfs-breakpoint: 1200px !default;
+$rfs-breakpoint-unit: px !default;
+
+@if $rfs-breakpoint-unit != px and $rfs-breakpoint-unit != em and $rfs-breakpoint-unit != rem {
+ @error "`#{$rfs-breakpoint-unit}` is not a valid unit for $rfs-breakpoint-unit. Use `px`, `em` or `rem`.";
+}
+
+// Resize values based on screen height and width
+$rfs-two-dimensional: false !default;
+
+// Factor of decrease
+$rfs-factor: 10 !default;
+
+@if type-of($rfs-factor) != number or $rfs-factor <= 1 {
+ @error "`#{$rfs-factor}` is not a valid $rfs-factor, it must be greater than 1.";
+}
+
+// Mode. Possibilities: "min-media-query", "max-media-query"
+$rfs-mode: min-media-query !default;
+
+// Generate enable or disable classes. Possibilities: false, "enable" or "disable"
+$rfs-class: false !default;
+
+// 1 rem = $rfs-rem-value px
+$rfs-rem-value: 16 !default;
+
+// Safari iframe resize bug: https://github.com/twbs/rfs/issues/14
+$rfs-safari-iframe-resize-bug-fix: false !default;
+
+// Disable RFS by setting $enable-rfs to false
+$enable-rfs: true !default;
+
+// Cache $rfs-base-value unit
+$rfs-base-value-unit: unit($rfs-base-value);
+
+@function divide($dividend, $divisor, $precision: 10) {
+ $sign: if($dividend > 0 and $divisor > 0 or $dividend < 0 and $divisor < 0, 1, -1);
+ $dividend: abs($dividend);
+ $divisor: abs($divisor);
+ @if $dividend == 0 {
+ @return 0;
+ }
+ @if $divisor == 0 {
+ @error "Cannot divide by 0";
+ }
+ $remainder: $dividend;
+ $result: 0;
+ $factor: 10;
+ @while ($remainder > 0 and $precision >= 0) {
+ $quotient: 0;
+ @while ($remainder >= $divisor) {
+ $remainder: $remainder - $divisor;
+ $quotient: $quotient + 1;
+ }
+ $result: $result * 10 + $quotient;
+ $factor: $factor * .1;
+ $remainder: $remainder * 10;
+ $precision: $precision - 1;
+ @if ($precision < 0 and $remainder >= $divisor * 5) {
+ $result: $result + 1;
+ }
+ }
+ $result: $result * $factor * $sign;
+ $dividend-unit: unit($dividend);
+ $divisor-unit: unit($divisor);
+ $unit-map: (
+ "px": 1px,
+ "rem": 1rem,
+ "em": 1em,
+ "%": 1%
+ );
+ @if ($dividend-unit != $divisor-unit and map-has-key($unit-map, $dividend-unit)) {
+ $result: $result * map-get($unit-map, $dividend-unit);
+ }
+ @return $result;
+}
+
+// Remove px-unit from $rfs-base-value for calculations
+@if $rfs-base-value-unit == px {
+ $rfs-base-value: divide($rfs-base-value, $rfs-base-value * 0 + 1);
+}
+@else if $rfs-base-value-unit == rem {
+ $rfs-base-value: divide($rfs-base-value, divide($rfs-base-value * 0 + 1, $rfs-rem-value));
+}
+
+// Cache $rfs-breakpoint unit to prevent multiple calls
+$rfs-breakpoint-unit-cache: unit($rfs-breakpoint);
+
+// Remove unit from $rfs-breakpoint for calculations
+@if $rfs-breakpoint-unit-cache == px {
+ $rfs-breakpoint: divide($rfs-breakpoint, $rfs-breakpoint * 0 + 1);
+}
+@else if $rfs-breakpoint-unit-cache == rem or $rfs-breakpoint-unit-cache == "em" {
+ $rfs-breakpoint: divide($rfs-breakpoint, divide($rfs-breakpoint * 0 + 1, $rfs-rem-value));
+}
+
+// Calculate the media query value
+$rfs-mq-value: if($rfs-breakpoint-unit == px, #{$rfs-breakpoint}px, #{divide($rfs-breakpoint, $rfs-rem-value)}#{$rfs-breakpoint-unit});
+$rfs-mq-property-width: if($rfs-mode == max-media-query, max-width, min-width);
+$rfs-mq-property-height: if($rfs-mode == max-media-query, max-height, min-height);
+
+// Internal mixin used to determine which media query needs to be used
+@mixin _rfs-media-query {
+ @if $rfs-two-dimensional {
+ @if $rfs-mode == max-media-query {
+ @media (#{$rfs-mq-property-width}: #{$rfs-mq-value}), (#{$rfs-mq-property-height}: #{$rfs-mq-value}) {
+ @content;
+ }
+ }
+ @else {
+ @media (#{$rfs-mq-property-width}: #{$rfs-mq-value}) and (#{$rfs-mq-property-height}: #{$rfs-mq-value}) {
+ @content;
+ }
+ }
+ }
+ @else {
+ @media (#{$rfs-mq-property-width}: #{$rfs-mq-value}) {
+ @content;
+ }
+ }
+}
+
+// Internal mixin that adds disable classes to the selector if needed.
+@mixin _rfs-rule {
+ @if $rfs-class == disable and $rfs-mode == max-media-query {
+ // Adding an extra class increases specificity, which prevents the media query to override the property
+ &,
+ .disable-rfs &,
+ &.disable-rfs {
+ @content;
+ }
+ }
+ @else if $rfs-class == enable and $rfs-mode == min-media-query {
+ .enable-rfs &,
+ &.enable-rfs {
+ @content;
+ }
+ }
+ @else {
+ @content;
+ }
+}
+
+// Internal mixin that adds enable classes to the selector if needed.
+@mixin _rfs-media-query-rule {
+
+ @if $rfs-class == enable {
+ @if $rfs-mode == min-media-query {
+ @content;
+ }
+
+ @include _rfs-media-query {
+ .enable-rfs &,
+ &.enable-rfs {
+ @content;
+ }
+ }
+ }
+ @else {
+ @if $rfs-class == disable and $rfs-mode == min-media-query {
+ .disable-rfs &,
+ &.disable-rfs {
+ @content;
+ }
+ }
+ @include _rfs-media-query {
+ @content;
+ }
+ }
+}
+
+// Helper function to get the formatted non-responsive value
+@function rfs-value($values) {
+ // Convert to list
+ $values: if(type-of($values) != list, ($values,), $values);
+
+ $val: '';
+
+ // Loop over each value and calculate value
+ @each $value in $values {
+ @if $value == 0 {
+ $val: $val + ' 0';
+ }
+ @else {
+ // Cache $value unit
+ $unit: if(type-of($value) == "number", unit($value), false);
+
+ @if $unit == px {
+ // Convert to rem if needed
+ $val: $val + ' ' + if($rfs-unit == rem, #{divide($value, $value * 0 + $rfs-rem-value)}rem, $value);
+ }
+ @else if $unit == rem {
+ // Convert to px if needed
+ $val: $val + ' ' + if($rfs-unit == px, #{divide($value, $value * 0 + 1) * $rfs-rem-value}px, $value);
+ }
+ @else {
+ // If $value isn't a number (like inherit) or $value has a unit (not px or rem, like 1.5em) or $ is 0, just print the value
+ $val: $val + ' ' + $value;
+ }
+ }
+ }
+
+ // Remove first space
+ @return unquote(str-slice($val, 2));
+}
+
+// Helper function to get the responsive value calculated by RFS
+@function rfs-fluid-value($values) {
+ // Convert to list
+ $values: if(type-of($values) != list, ($values,), $values);
+
+ $val: '';
+
+ // Loop over each value and calculate value
+ @each $value in $values {
+ @if $value == 0 {
+ $val: $val + ' 0';
+ }
+
+ @else {
+ // Cache $value unit
+ $unit: if(type-of($value) == "number", unit($value), false);
+
+ // If $value isn't a number (like inherit) or $value has a unit (not px or rem, like 1.5em) or $ is 0, just print the value
+ @if not $unit or $unit != px and $unit != rem {
+ $val: $val + ' ' + $value;
+ }
+
+ @else {
+ // Remove unit from $value for calculations
+ $value: divide($value, $value * 0 + if($unit == px, 1, divide(1, $rfs-rem-value)));
+
+ // Only add the media query if the value is greater than the minimum value
+ @if abs($value) <= $rfs-base-value or not $enable-rfs {
+ $val: $val + ' ' + if($rfs-unit == rem, #{divide($value, $rfs-rem-value)}rem, #{$value}px);
+ }
+ @else {
+ // Calculate the minimum value
+ $value-min: $rfs-base-value + divide(abs($value) - $rfs-base-value, $rfs-factor);
+
+ // Calculate difference between $value and the minimum value
+ $value-diff: abs($value) - $value-min;
+
+ // Base value formatting
+ $min-width: if($rfs-unit == rem, #{divide($value-min, $rfs-rem-value)}rem, #{$value-min}px);
+
+ // Use negative value if needed
+ $min-width: if($value < 0, -$min-width, $min-width);
+
+ // Use `vmin` if two-dimensional is enabled
+ $variable-unit: if($rfs-two-dimensional, vmin, vw);
+
+ // Calculate the variable width between 0 and $rfs-breakpoint
+ $variable-width: #{divide($value-diff * 100, $rfs-breakpoint)}#{$variable-unit};
+
+ // Return the calculated value
+ $val: $val + ' calc(' + $min-width + if($value < 0, ' - ', ' + ') + $variable-width + ')';
+ }
+ }
+ }
+ }
+
+ // Remove first space
+ @return unquote(str-slice($val, 2));
+}
+
+// RFS mixin
+@mixin rfs($values, $property: font-size) {
+ @if $values != null {
+ $val: rfs-value($values);
+ $fluidVal: rfs-fluid-value($values);
+
+ // Do not print the media query if responsive & non-responsive values are the same
+ @if $val == $fluidVal {
+ #{$property}: $val;
+ }
+ @else {
+ @include _rfs-rule {
+ #{$property}: if($rfs-mode == max-media-query, $val, $fluidVal);
+
+ // Include safari iframe resize fix if needed
+ min-width: if($rfs-safari-iframe-resize-bug-fix, (0 * 1vw), null);
+ }
+
+ @include _rfs-media-query-rule {
+ #{$property}: if($rfs-mode == max-media-query, $fluidVal, $val);
+ }
+ }
+ }
+}
+
+// Shorthand helper mixins
+@mixin font-size($value) {
+ @include rfs($value);
+}
+
+@mixin padding($value) {
+ @include rfs($value, padding);
+}
+
+@mixin padding-top($value) {
+ @include rfs($value, padding-top);
+}
+
+@mixin padding-right($value) {
+ @include rfs($value, padding-right);
+}
+
+@mixin padding-bottom($value) {
+ @include rfs($value, padding-bottom);
+}
+
+@mixin padding-left($value) {
+ @include rfs($value, padding-left);
+}
+
+@mixin margin($value) {
+ @include rfs($value, margin);
+}
+
+@mixin margin-top($value) {
+ @include rfs($value, margin-top);
+}
+
+@mixin margin-right($value) {
+ @include rfs($value, margin-right);
+}
+
+@mixin margin-bottom($value) {
+ @include rfs($value, margin-bottom);
+}
+
+@mixin margin-left($value) {
+ @include rfs($value, margin-left);
+}
diff --git a/dasena-web/public/assets/admin/scss/theme.scss b/dasena-web/public/assets/admin/scss/theme.scss
new file mode 100644
index 0000000..22b2bec
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/theme.scss
@@ -0,0 +1,100 @@
+/*!
+<--!----------------------------------------------------------------!-->
+<--!----------------------------------------------------------------!-->
+ * Template Name: Duralux - CRM Admin Dashboard Template
+ * Description: Fully Responsive Multipurpose CRM Admin Dashboard Template.
+ * Copyright: WRAPCODERS
+ * Author: WRAPCODERS
+ * Version: 1.0.0
+ * File: theme.min.css
+<--!----------------------------------------------------------------!-->
+<--!----------------------------------------------------------------!-->
+*/
+
+// Import Google Fonts
+@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=IBM+Plex+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Josefin+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Maven+Pro:wght@400;500;600;700;800;900&family=Montserrat+Alternates:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Noto+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Nunito:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Prompt:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Quicksand:wght@300;400;500;600;700&family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto+Slab:wght@100;200;300;400;500;600;700;800;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&family=Work+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Source+Sans+Pro:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700;1,900&display=swap");
+
+// Variables
+@import "themes/variables";
+
+// General
+@import "themes/components/general";
+
+// Layouts
+@import "themes/layouts/nxl-common";
+@import "themes/layouts/nxl-header";
+@import "themes/layouts/nxl-navigation";
+@import "themes/layouts/nxl-sidebar";
+
+// Modals
+@import "themes/components/search";
+@import "themes/components/language";
+
+// Applications
+@import "themes/applications/apps-common";
+@import "themes/applications/chat";
+@import "themes/applications/email";
+@import "themes/applications/tasks";
+@import "themes/applications/notes";
+@import "themes/applications/calendar";
+@import "themes/applications/storage";
+
+// Componants
+@import "themes/components/alert";
+@import "themes/components/accordion";
+@import "themes/components/badge";
+@import "themes/components/button";
+@import "themes/components/card";
+@import "themes/components/dropdown";
+@import "themes/components/form";
+@import "themes/components/modal";
+@import "themes/components/navs-tabs";
+@import "themes/components/table";
+@import "themes/components/offcanvas";
+@import "themes/components/miscellaneous";
+
+// Widgets
+@import "themes/widgets/widgets-lists";
+@import "themes/widgets/widgets-tables";
+@import "themes/widgets/widgets-charts";
+@import "themes/widgets/widgets-statistics";
+@import "themes/widgets/widgets-miscellaneous";
+
+// Pages
+@import "themes/pages/icon-lauouts";
+@import "themes/pages/authentication";
+@import "themes/pages/dashboard";
+@import "themes/pages/analytics";
+@import "themes/pages/proposal";
+@import "themes/pages/invoice-create";
+@import "themes/pages/customers-view";
+@import "themes/pages/customers-create";
+@import "themes/pages/projects";
+@import "themes/pages/report-sales";
+@import "themes/pages/report-leads";
+@import "themes/pages/report-projects";
+@import "themes/pages/report-tmesheets";
+@import "themes/pages/help-knowledgebase";
+
+// Pluginss
+@import "themes/plugins/pace";
+@import "themes/plugins/select2";
+@import "themes/plugins/daterange";
+@import "themes/plugins/dataTables";
+@import "themes/plugins/sweetalert2";
+@import "themes/plugins/jauery-steps";
+@import "themes/plugins/circle-progress";
+
+/*!
+<--!----------------------------------------------------------------!-->
+* Customizer CSS
+<--!----------------------------------------------------------------!-->
+*/
+@import "themes/options/theme-options";
+
+/*!
+<--!----------------------------------------------------------------!-->
+* Responsive CSS
+<--!----------------------------------------------------------------!-->
+*/
+@import "themes/layouts/nxl-responsive";
\ No newline at end of file
diff --git a/dasena-web/public/assets/admin/scss/themes/_bs-custom-variables.scss b/dasena-web/public/assets/admin/scss/themes/_bs-custom-variables.scss
new file mode 100644
index 0000000..24d7f0d
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/themes/_bs-custom-variables.scss
@@ -0,0 +1,180 @@
+/*
+<--!----------------------------------------------------------------!-->
+<--! Bootstrap Overwrite Variables !-->
+<--!----------------------------------------------------------------!-->
+*
+* In this file 'bootstrap' overwrite variables gose here.
+* This overwrite variables @include on boostrap.scss file.
+* Please check this file @include on boostrap.scss file.
+*
+*/
+
+// Gray Color
+$white: #ffffff;
+$gray-100: #eff0f6;
+$gray-200: #e9ecef;
+$gray-300: #e5e7eb;
+$gray-400: #ced4da;
+$gray-500: #91a1b6;
+$gray-600: #64748b;
+$gray-700: #495057;
+$gray-800: #343a40;
+$gray-900: #212529;
+$black: #000000;
+
+// fusv-enable
+$blue: #3454d1;
+$indigo: #6610f2;
+$purple: #6f42c1;
+$pink: #e83e8c;
+$red: #ea4d4d;
+$orange: #fd7e14;
+$yellow: #ffa21d;
+$green: #17c666;
+$teal: #41b2c4;
+$cyan: #3dc7be;
+$white: #ffffff;
+$secondary: #727981;
+$success: #25b865;
+$warning: #e49e3d;
+$info: #02a0e4;
+$danger: #d13b4c;
+$dark: #283c50; // new added
+$darken: #001327; // new added
+
+// Body
+$body-bg: #f0f2f8;
+$body-color: #4b5563;
+$text-muted: #64748b;
+
+// Colors Map
+$primary: $blue;
+$secondary: $gray-600;
+$success: $green;
+$info: $cyan;
+$warning: $yellow;
+$danger: $red;
+$light: $gray-100;
+$dark: $dark;
+$darken: $darken; // new added
+
+// Theme Colors Map
+$theme-colors: (
+ "primary": $primary,
+ "secondary": $secondary,
+ "success": $success,
+ "info": $info,
+ "warning": $warning,
+ "danger": $danger,
+ "light": $light,
+ "dark": $dark,
+ "darken": $darken,
+);
+
+// Border
+$border-width: 1px;
+$border-widths: (
+ 0: 0,
+ 1: 1px,
+ 2: 2px,
+ 3: 3px,
+ 4: 4px,
+ 5: 5px,
+ 6: 6px,
+ 7: 7px,
+ 8: 8px,
+ 9: 9px,
+ 10: 10px,
+);
+$border-color: #e5e7eb;
+$border-color-2: #dcdee4;
+$border-radius: 4px;
+$border-radius-lg: 6px;
+$border-radius-sm: 2px;
+$border-none: transparent;
+$border-soft: darken($gray-100, 1);
+$border-normal: darken($gray-100, 2);
+$border-medium: darken($gray-100, 5);
+$border-hard: darken($gray-100, 8);
+$border-contrast: darken($gray-100, 12);
+
+// Forms
+$input-font-size: 0.845rem;
+
+// Buttons + Forms
+$input-btn-padding-y: 0.5rem;
+
+// Navs
+$nav-tabs-link-active-bg: $white;
+
+// Dropdowns
+$dropdown-hover-color: #ebeff5;
+$dropdown-border-color: $border-color;
+$dropdown-border-width: 1px;
+$dropdown-divider-bg: #e5e7eb;
+
+// Cards
+$soft-bg-level: -80%;
+$card-spacer-y: 25px;
+$card-spacer-x: 25px;
+$card-border-width: 1px;
+$card-cap-padding-y: 25px;
+$card-cap-padding-x: 25px;
+
+// Modals
+$modal-inner-padding: 25px;
+$modal-header-padding-y: 25px;
+$modal-header-padding-x: 25px;
+$modal-header-padding: $modal-header-padding-y $modal-header-padding-x;
+
+// Progress bars
+$progress-bg: $body-bg;
+$progress-bar-bg: $primary;
+
+// Offcanvas
+$zindex-offcanvas: 1051;
+$offcanvas-horizontal-width: 400px;
+
+// Font
+$h1-font-size: 36px;
+$h2-font-size: 28px;
+$h3-font-size: 24px;
+$h4-font-size: 20px;
+$h5-font-size: 16px;
+$h6-font-size: 15px;
+
+// Weight
+$font-weight-light: 200;
+$font-weight-lighter: 300;
+$font-weight-normal: 400;
+$font-weight-medium: 500;
+$font-weight-semibold: 600;
+$font-weight-bold: 700;
+$font-weight-bolder: 800;
+$font-weight-black: 900;
+$utilities: (
+ "font-weight": (
+ property: font-weight,
+ class: fw,
+ values: (
+ light: $font-weight-light,
+ lighter: $font-weight-lighter,
+ normal: $font-weight-normal,
+ medium: $font-weight-medium,
+ semibold: $font-weight-semibold,
+ bold: $font-weight-bold,
+ bolder: $font-weight-bolder,
+ black: $font-weight-black,
+ ),
+ ),
+);
+
+// Breadcrumb
+.breadcrumb-item + .breadcrumb-item::before {
+ content: var(--bs-breadcrumb-divider, url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='14' height='14' stroke='%2364748b' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round' class='css-i6dzq1'%3E%3Cpolyline points='9 18 15 12 9 6'%3E%3C/polyline%3E%3C/svg%3E")) !important;
+}
+
+// List-Group
+$list-group-border-color: $border-color;
+$list-group-item-padding-y: 20px;
+$list-group-item-padding-x: 25px;
diff --git a/dasena-web/public/assets/admin/scss/themes/_variables.scss b/dasena-web/public/assets/admin/scss/themes/_variables.scss
new file mode 100644
index 0000000..b59552b
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/themes/_variables.scss
@@ -0,0 +1,216 @@
+/*
+<--!----------------------------------------------------------------!-->
+<--! Theme Variables !-->
+<--!----------------------------------------------------------------!-->
+*/
+
+@import "./bs-custom-variables"; // Bootstrap Overwrite Variables
+
+/*
+<--!----------------------------------------------------------------!-->
+<--! Colors !-->
+<--!----------------------------------------------------------------!-->
+*/
+$font-body: 0.84rem;
+$brand-body: #6b7885;
+$brand-dark: #283c50;
+$brand-muted: #7587a7;
+$brand-light: #eaebef;
+$border-color-2: #dcdee4;
+
+/*
+<--!----------------------------------------------------------------!-->
+<--! Font Size !-->
+<--!----------------------------------------------------------------!-->
+*/
+// size
+$font-5: 5px;
+$font-6: 6px;
+$font-7: 7px;
+$font-8: 8px;
+$font-9: 9px;
+$font-10: 10px;
+$font-11: 11px;
+$font-12: 12px;
+$font-13: 13px;
+$font-14: 14px;
+$font-15: 15px;
+$font-16: 16px;
+$font-17: 17px;
+$font-18: 18px;
+$font-19: 19px;
+$font-20: 20px;
+$font-22: 22px;
+$font-24: 24px;
+$font-26: 26px;
+$font-28: 28px;
+$font-30: 30px;
+// weight
+$font-100: 100;
+$font-200: 200;
+$font-300: 300;
+$font-400: 400;
+$font-500: 500;
+$font-600: 600;
+$font-700: 700;
+$font-800: 800;
+$font-900: 900;
+
+/*
+<--!----------------------------------------------------------------!-->
+<--! Font Family !-->
+<--!----------------------------------------------------------------!-->
+*/
+$font-lato: "Lato", sans-serif;
+$font-rubik: "Rubik", sans-serif;
+$font-inter: "Inter", sans-serif;
+$font-cinzel: "Cinzel", sans-serif;
+$font-nunito: "Nunito", sans-serif;
+$font-roboto: "Roboto", sans-serif;
+$font-ubuntu: "Ubuntu", sans-serif;
+$font-poppins: "Poppins", sans-serif;
+$font-raleway: "Raleway", sans-serif;
+$font-noto-sans: "Noto Sans", sans-serif;
+$font-fira-sans: "Fira Sans", sans-serif;
+$font-work-sans: "Work Sans", sans-serif;
+$font-maven-pro: "Maven Pro", sans-serif;
+$font-open-sans: "Open Sans", sans-serif;
+$font-quicksand: "Quicksand", sans-serif;
+$font-roboto-slab: "Roboto Slab", serif;
+$font-montserrat: "Montserrat", sans-serif;
+$font-josefin-sans: "Josefin Sans", sans-serif;
+$font-ibm-plex-sans: "IBM Plex Sans", sans-serif;
+$font-source-sans-pro: "Source Sans Pro", sans-serif;
+$font-montserrat-alt: "Montserrat Alternates", sans-serif;
+$font-system-ui: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
+
+/*
+<--!----------------------------------------------------------------!-->
+<--! Font Style !-->
+<--!----------------------------------------------------------------!-->
+*/
+$font-italic: italic;
+$font-uppercase: uppercase;
+$font-lowercase: lowercase;
+$font-capitalize: capitalize;
+
+/*
+<--!----------------------------------------------------------------!-->
+<--! BG Soft Color !-->
+<--!----------------------------------------------------------------!-->
+*/
+$bg-soft-primary: rgb($primary, 0.075);
+$bg-soft-success: rgb($success, 0.075);
+$bg-soft-danger: rgb($danger, 0.075);
+$bg-soft-info: rgb($info, 0.075);
+$bg-soft-warning: rgb($warning, 0.075);
+$bg-soft-teal: rgb($teal, 0.075);
+$bg-soft-cyan: rgb($cyan, 0.075);
+$bg-soft-indigo: rgb($indigo, 0.075);
+$bg-soft-darken: rgb($darken, 0.075);
+
+/*
+<--!----------------------------------------------------------------!-->
+<--! Spacing !-->
+<--!----------------------------------------------------------------!-->
+*/
+$text-spacing-none: 0;
+$text-spacing-xs: 0.15px;
+$text-spacing-sm: 0.25px;
+$text-spacing-md: 0.5px;
+$text-spacing-lg: 0.75px;
+$text-spacing-xl: 1px;
+$text-spacing-xxl: 1.5px;
+$text-spacing-xxxl: 2px;
+
+/*
+<--!----------------------------------------------------------------!-->
+<--! Shadows !-->
+<--!----------------------------------------------------------------!-->
+*/
+$shadow-none: none;
+$shadow-sm: 0 1px 5px rgba($dark, 0.15);
+$shadow-md: 0 5px 15px rgba($dark, 0.15);
+$shadow-lg: 0 10px 25px rgba($dark, 0.15);
+$shadow-xl: 0 15px 35px rgba($dark, 0.15);
+$shadow-xxl: 0 20px 45px rgba($dark, 0.15);
+$card-shadow: 0 1px 3px 0 rgb(0 0 0 / .1),
+ 0 1px 2px -1px rgb(0 0 0 / .1);
+
+/*
+<--!----------------------------------------------------------------!-->
+<--! Border !-->
+<--!----------------------------------------------------------------!-->
+*/
+$border-none: transparent;
+$border-soft: darken($gray-100, 1);
+$border-normal: darken($gray-100, 2);
+$border-medium: darken($gray-100, 5);
+$border-hard: darken($gray-100, 8);
+$border-contrast: darken($gray-100, 12);
+
+/*
+<--!----------------------------------------------------------------!-->
+<--! Radius !-->
+<--!----------------------------------------------------------------!-->
+*/
+$radius-none: 0;
+$radius-xs: 3px;
+$radius-sm: 5px;
+$radius-md: 10px;
+$radius-lg: 15px;
+$radius-xl: 20px;
+$radius-xxl: 25px;
+$radius-pill: 30px;
+$radius-circle: 50px;
+
+/*
+<--!----------------------------------------------------------------!-->
+<--! Navigarion !-->
+<--!----------------------------------------------------------------!-->
+*/
+$header-height: 80px;
+$navigation-width: 280px;
+$navigation-collapsed-width: 100px;
+$navigation-caption: $white;
+$navigation-active-color: $white;
+$navigation-color: #b1b4c0;
+$navigation-icon-color: #b1b4c0;
+$navigation-background: #0f172a;
+$navigation-hover-color: #1c2438;
+$navigation-border-color: #1b2436;
+
+/*
+<--!----------------------------------------------------------------!-->
+<--! Header !-->
+<--!----------------------------------------------------------------!-->
+*/
+$header-color: #2c3344;
+$header-background: #0f172a;
+$header-link-color: #6b7280;
+$header-brand-color: #0f172a;
+$header-border-color: #1b2436;
+
+/*
+<--!----------------------------------------------------------------!-->
+<--! Horizontal Menu !-->
+<--!----------------------------------------------------------------!-->
+*/
+$topbar-height: 60px;
+$topbar-color: #b5bdca;
+$topbar-background: #1b2335;
+$header-submenu-color: #0f172a;
+$header-submenu-background: $white;
+
+/*
+<--!----------------------------------------------------------------!-->
+<--! Theme Dark !-->
+<--!----------------------------------------------------------------!-->
+*/
+$dark-theme-color: #b1b4c0;
+$dark-theme-color-dark: #121a2d;
+$dark-theme-color-darker: #0f172a;
+$dark-theme-color-hover: #1c2438;
+$dark-theme-color-hover-2: #121b2e;
+$dark-theme-color-border: #1b2436;
+$dark-theme-box-shadow: 0 0 20px rgb(0 0 0 / 50%);
\ No newline at end of file
diff --git a/dasena-web/public/assets/admin/scss/themes/applications/_apps-common.scss b/dasena-web/public/assets/admin/scss/themes/applications/_apps-common.scss
new file mode 100644
index 0000000..99ba053
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/themes/applications/_apps-common.scss
@@ -0,0 +1,19 @@
+/*
+<--!----------------------------------------------------------------!-->
+<--! Apps Common !-->
+<--!----------------------------------------------------------------!-->
+*/
+.nxl-container {
+ &.apps-container {
+ .nxl-content {
+ &.without-header {
+ .main-content {
+ .content-sidebar,
+ .content-area {
+ height: calc(100vh - 80px);
+ }
+ }
+ }
+ }
+ }
+}
diff --git a/dasena-web/public/assets/admin/scss/themes/applications/_calendar.scss b/dasena-web/public/assets/admin/scss/themes/applications/_calendar.scss
new file mode 100644
index 0000000..e304705
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/themes/applications/_calendar.scss
@@ -0,0 +1,153 @@
+/*
+<--!----------------------------------------------------------------!-->
+<--! Calendar !-->
+<--!----------------------------------------------------------------!-->
+*/
+.nxl-container {
+ &.apps-calendar {
+ .nxl-content {
+ .main-content {
+ #tui-calendar-init {
+ .tui-full-calendar-popup-delete,
+ .tui-full-calendar-popup-edit,
+ .tui-full-calendar-confirm {
+ display: flex;
+ padding: 12px 16px;
+ font-size: $font-10;
+ line-height: normal;
+ align-items: center;
+ letter-spacing: 0.5px;
+ font-weight: $font-500;
+ justify-content: center;
+ text-transform: $font-uppercase;
+ border-radius: 3px;
+ transition: all 0.3s ease;
+ }
+ .tui-full-calendar-popup-edit,
+ .tui-full-calendar-confirm {
+ color: $white;
+ background-color: $primary !important;
+ }
+ .tui-full-calendar-popup-delete {
+ color: $white;
+ background-color: $danger;
+ }
+ .tui-full-calendar-section-button {
+ gap: 10px;
+ display: flex;
+ padding: 15px 25px;
+ align-items: center;
+ justify-content: center;
+ }
+ .tui-full-calendar-section-button-save {
+ height: auto;
+ padding-top: 15px;
+ border-top: 1px solid $border-color;
+ }
+ .tui-full-calendar-confirm,
+ .tui-full-calendar-popup-save {
+ margin: auto;
+ height: auto;
+ }
+ .tui-full-calendar-popup-save {
+ float: initial;
+ }
+ .tui-full-calendar-popup-detail {
+ .tui-full-calendar-content {
+ height: auto;
+ font-size: inherit;
+ line-height: normal;
+ }
+ }
+ .tui-full-calendar-section-detail {
+ .tui-full-calendar-popup-detail-item {
+ margin-bottom: 10px;
+ }
+ }
+ .tui-full-calendar-calendar-dot {
+ width: 7px;
+ height: 7px;
+ border-radius: 25px;
+ }
+ [data-calendar-id="1"] {
+ color: $primary;
+ background-color: rgb(84 132 227 / 15%) !important;
+ }
+ [data-calendar-id="2"] {
+ color: $success;
+ background-color: rgb(37 184 101 / 15%) !important;
+ }
+ [data-calendar-id="3"] {
+ color: $danger;
+ background-color: rgb(209 59 76 / 15%) !important;
+ }
+ [data-calendar-id="4"] {
+ color: $teal;
+ background-color: rgb(23 162 184 / 15%) !important;
+ }
+ [data-calendar-id="5"] {
+ color: $warning;
+ background-color: rgb(228 158 61 / 15%) !important;
+ }
+ [data-calendar-id="6"] {
+ color: $indigo;
+ background-color: rgb(88 86 214 / 15%) !important;
+ }
+ [data-calendar-id="7"] {
+ color: $teal;
+ background-color: rgb(61 199 190 / 15%) !important;
+ }
+ [data-calendar-id="8"] {
+ color: $dark;
+ background-color: rgb(71 94 119 / 15%) !important;
+ }
+ .tui-full-calendar-popup-section {
+ .tui-full-calendar-popup-section-item {
+ &[data-calendar-id="1"],
+ &[data-calendar-id="2"],
+ &[data-calendar-id="3"],
+ &[data-calendar-id="4"],
+ &[data-calendar-id="5"],
+ &[data-calendar-id="6"],
+ &[data-calendar-id="7"],
+ &[data-calendar-id="8"] {
+ background-color: transparent !important;
+ }
+ }
+ }
+ .tui-full-calendar-weekday-grid-date {
+ font-size: $font-12;
+ font-weight: $font-600;
+ font-family: $font-maven-pro;
+ }
+ }
+ .calendar-action-btn {
+ .menu-navi > .move-today,
+ .calendar-dropdown-btn {
+ color: $dark;
+ padding: 12px 15px;
+ line-height: normal;
+ font-size: $font-11;
+ font-weight: $font-700;
+ border-radius: $radius-xs;
+ border: 1px solid $border-color;
+ text-transform: $font-uppercase;
+ background-color: transparent;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ }
+ }
+ .chalendar-checkbox {
+ width: 129%;
+ height: 40px;
+ top: -10px;
+ left: -25px;
+ right: -25px;
+ z-index: 99;
+ cursor: pointer;
+ }
+ }
+ }
+ }
+}
diff --git a/dasena-web/public/assets/admin/scss/themes/applications/_chat.scss b/dasena-web/public/assets/admin/scss/themes/applications/_chat.scss
new file mode 100644
index 0000000..d20b871
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/themes/applications/_chat.scss
@@ -0,0 +1,211 @@
+/*
+<--!----------------------------------------------------------------!-->
+<--! Chat !-->
+<--!----------------------------------------------------------------!-->
+*/
+.chatting-setting {
+ .chatting-setting-tabs {
+ a {
+ &.nav-link {
+ &:hover,
+ &.active {
+ color: $primary;
+ background-color: lighten($primary, 35);
+ }
+ }
+ }
+ }
+}
+.text.typing {
+ .wave {
+ .dot {
+ width: 2px;
+ height: 2px;
+ border-radius: 100%;
+ display: inline-block;
+ background-color: $success;
+ animation: wave 1.3s linear infinite;
+ &:first-of-type {
+ margin-left: 3px;
+ }
+ &:nth-child(2) {
+ -webkit-animation-delay: -1.1s;
+ -moz-animation-delay: -1.1s;
+ -o-animation-delay: -1.1s;
+ animation-delay: -1.1s;
+ }
+ &:nth-child(3) {
+ -webkit-animation-delay: -0.9s;
+ -moz-animation-delay: -0.9s;
+ -o-animation-delay: -0.9s;
+ animation-delay: -0.9s;
+ }
+ }
+ }
+ @-webkit-keyframes wave {
+ 0%,
+ 100%,
+ 60% {
+ -webkit-transform: initial;
+ transform: initial;
+ }
+ 30% {
+ -webkit-transform: translateY(-5px);
+ transform: translateY(-5px);
+ }
+ }
+ @-moz-keyframes wave {
+ 0%,
+ 100%,
+ 60% {
+ -moz-transform: initial;
+ transform: initial;
+ }
+ 30% {
+ -moz-transform: translateY(-5px);
+ transform: translateY(-5px);
+ }
+ }
+ @-o-keyframes wave {
+ 0%,
+ 100%,
+ 60% {
+ -o-transform: initial;
+ transform: initial;
+ }
+ 30% {
+ -o-transform: translateY(-5px);
+ transform: translateY(-5px);
+ }
+ }
+ @keyframes wave {
+ 0%,
+ 100%,
+ 60% {
+ -webkit-transform: initial;
+ -moz-transform: initial;
+ -o-transform: initial;
+ transform: initial;
+ }
+ 30% {
+ -webkit-transform: translateY(-5px);
+ -moz-transform: translateY(-5px);
+ -o-transform: translateY(-5px);
+ transform: translateY(-5px);
+ }
+ }
+}
+.calling-modal-screen {
+ .chat-calling-content {
+ --bs-modal-bg: transparent !important;
+ background-image: radial-gradient(circle, $white, #f4f6fb, #e7eef6, #d7e7f0, #c6e0e7);
+ .voice-call-content {
+ height: calc(100% - 170px);
+ }
+ .video-call-content {
+ height: calc(100% - 170px);
+ video {
+ top: 0;
+ left: 0;
+ right: 0;
+ bottom: 0;
+ width: 100%;
+ height: 100%;
+ object-fit: cover;
+ position: absolute;
+ }
+ }
+ }
+ .chat-calling-text-message-sidebar {
+ top: 0;
+ bottom: 0;
+ opacity: 0;
+ right: -50%;
+ width: 0px;
+ max-width: 0px;
+ min-width: 0px;
+ visibility: hidden;
+ background-color: $white;
+ transition: all 0.3s ease;
+ animation: fadeIn 0.5s ease;
+ height: calc(100% - 170px) !important;
+ &.active {
+ right: 0;
+ opacity: 1;
+ width: 400px;
+ max-width: 400px;
+ min-width: 400px;
+ visibility: visible;
+ .in-call-messages-items {
+ height: calc(100% - -25px) !important;
+ }
+ }
+ .in-call-messages-items {
+ height: calc(100% - 135px) !important;
+ }
+ }
+}
+.chat-calling-info {
+ .timetracker,
+ .ringing {
+ display: none;
+ opacity: 0;
+ visibility: hidden;
+ transition: visibility 700ms;
+ }
+ .timetracker.active {
+ display: block;
+ opacity: 1;
+ visibility: visible;
+ }
+ .ringing.active {
+ display: block;
+ opacity: 1;
+ visibility: visible;
+ }
+}
+.animation-infinite {
+ -webkit-animation: animation-infinite 2s infinite;
+ -moz-animation: animation-infinite 2s infinite;
+ -o-animation: animation-infinite 2s infinite;
+ animation: animation-infinite 2s infinite;
+ @-webkit-keyframes animation-infinite {
+ 0% {
+ box-shadow: 0 0 0 0 $gray-300;
+ }
+ 100% {
+ box-shadow: 0 0 0 25px transparent;
+ }
+ }
+ @-moz-keyframes animation-infinite {
+ 0% {
+ box-shadow: 0 0 0 0 $gray-300;
+ }
+ 100% {
+ box-shadow: 0 0 0 25px transparent;
+ }
+ }
+ @-o-keyframes animation-infinite {
+ 0% {
+ box-shadow: 0 0 0 0 $gray-300;
+ }
+ 100% {
+ box-shadow: 0 0 0 25px transparent;
+ }
+ }
+ @keyframes animation-infinite {
+ 0% {
+ box-shadow: 0 0 0 0 $gray-300;
+ }
+ 100% {
+ box-shadow: 0 0 0 25px transparent;
+ }
+ }
+}
+.calling-receiver-action {
+ .avatar-text {
+ &:hover {
+ color: $white !important;
+ }
+ }
+}
diff --git a/dasena-web/public/assets/admin/scss/themes/applications/_email.scss b/dasena-web/public/assets/admin/scss/themes/applications/_email.scss
new file mode 100644
index 0000000..77c966d
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/themes/applications/_email.scss
@@ -0,0 +1,102 @@
+/*
+<--!----------------------------------------------------------------!-->
+<--! Email !-->
+<--!----------------------------------------------------------------!-->
+*/
+.nxl-container {
+ &.apps-email {
+ .nxl-content {
+ .main-content {
+ .content-area {
+ .content-area-header {
+ .page-header-left {
+ .action-list-items {
+ display: none;
+ transition: all 0.3s ease;
+ }
+ &.show-action {
+ .action-list-items {
+ gap: 10px;
+ display: flex;
+ transition: all 0.3s ease;
+ }
+ }
+ }
+ }
+ .content-area-body {
+ .single-items {
+ cursor: pointer;
+ padding: 10px 5px;
+ display: flex;
+ align-items: center;
+ background-color: $white;
+ border-bottom: 1px solid $border-color;
+ .item-meta {
+ padding: 12px 25px;
+ }
+ .item-info {
+ cursor: pointer;
+ padding: 12px 30px;
+ }
+ .item-data {
+ padding: 12px 25px 15px 0;
+ }
+ }
+ }
+ .items-details {
+ left: 0;
+ top: 1px;
+ bottom: 0;
+ right: -100%;
+ opacity: 0;
+ z-index: 1025;
+ position: absolute;
+ visibility: hidden;
+ background-color: #f3f4f6;
+ transition: all 0.3s ease;
+ transform: translateX(100%);
+ .items-details-header {
+ height: 74px;
+ padding: 13px 25px;
+ display: flex;
+ align-items: center;
+ justify-content: space-between;
+ background-color: $white;
+ border-bottom: 1px solid $border-color;
+ }
+ .items-details-body {
+ margin: 25px 25px;
+ .accordion {
+ .accordion-item {
+ .accordion-header {
+ .accordion-button {
+ background-color: transparent !important;
+ }
+ }
+ }
+ }
+ }
+ .items-details-footer {
+ background-color: $white;
+ }
+ }
+ &.items-details-active {
+ .items-details {
+ left: 0;
+ top: 1px;
+ right: 0;
+ bottom: 0;
+ opacity: 1;
+ visibility: visible;
+ transition: all 0.3s ease;
+ transform: translateX(0);
+ }
+ .content-area-body {
+ display: none;
+ }
+ }
+ }
+ }
+ }
+ }
+}
diff --git a/dasena-web/public/assets/admin/scss/themes/applications/_notes.scss b/dasena-web/public/assets/admin/scss/themes/applications/_notes.scss
new file mode 100644
index 0000000..b6958de
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/themes/applications/_notes.scss
@@ -0,0 +1,129 @@
+/*
+<--!----------------------------------------------------------------!-->
+<--! Notes !-->
+<--!----------------------------------------------------------------!-->
+*/
+.nxl-container {
+ &.apps-notes {
+ .nxl-content {
+ .main-content {
+ .note-has-grid {
+ .nav-link {
+ padding: 10px 15px;
+ }
+ .single-note-item {
+ .card {
+ .note-title {
+ font-size: $font-15;
+ font-weight: $font-700;
+ }
+ .side-stick {
+ left: 0;
+ top: 20px;
+ width: 2px;
+ height: 40px;
+ position: absolute;
+ background-color: rgba(82, 95, 127, 0.5);
+ }
+ }
+ &.all-category .point {
+ color: $dark;
+ }
+ &.note-favourite {
+ .favourite-note {
+ color: $warning;
+ }
+ }
+ &.note-tasks,
+ &.note-works,
+ &.note-social,
+ &.note-archive,
+ &.note-priority,
+ &.note-personal,
+ &.note-business,
+ &.note-important {
+ .category {
+ .category-tasks,
+ .category-works,
+ .category-social,
+ .category-archive,
+ .category-priority,
+ .category-personal,
+ .category-business,
+ .category-important {
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ }
+ }
+ }
+ &.note-tasks {
+ .point {
+ color: $danger;
+ }
+ .side-stick {
+ background-color: $danger;
+ }
+ }
+ &.note-works {
+ .point {
+ color: $primary;
+ }
+ .side-stick {
+ background-color: $primary;
+ }
+ }
+ &.note-social {
+ .point {
+ color: $info;
+ }
+ .side-stick {
+ background-color: $info;
+ }
+ }
+ &.note-archive {
+ .point {
+ color: $dark;
+ }
+ .side-stick {
+ background-color: $dark;
+ }
+ }
+ &.note-priority {
+ .point {
+ color: $danger;
+ }
+ .side-stick {
+ background-color: $danger;
+ }
+ }
+ &.note-personal {
+ .point {
+ color: $primary;
+ }
+ .side-stick {
+ background-color: $primary;
+ }
+ }
+ &.note-business {
+ .point {
+ color: $warning;
+ }
+ .side-stick {
+ background-color: $warning;
+ }
+ }
+ &.note-important {
+ .point {
+ color: $success;
+ }
+ .side-stick {
+ background-color: $success;
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+}
diff --git a/dasena-web/public/assets/admin/scss/themes/applications/_storage.scss b/dasena-web/public/assets/admin/scss/themes/applications/_storage.scss
new file mode 100644
index 0000000..994dff6
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/themes/applications/_storage.scss
@@ -0,0 +1,5 @@
+/*
+<--!----------------------------------------------------------------!-->
+<--! Storage !-->
+<--!----------------------------------------------------------------!-->
+*/
diff --git a/dasena-web/public/assets/admin/scss/themes/applications/_tasks.scss b/dasena-web/public/assets/admin/scss/themes/applications/_tasks.scss
new file mode 100644
index 0000000..0ac14d1
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/themes/applications/_tasks.scss
@@ -0,0 +1,20 @@
+/*
+<--!----------------------------------------------------------------!-->
+<--! Tasks !-->
+<--!----------------------------------------------------------------!-->
+*/
+.nxl-container {
+ &.apps-tasks {
+ .nxl-content {
+ .main-content {
+ .single-task-list {
+ &.task-completed {
+ color: $success !important;
+ background-color: $bg-soft-success;
+ text-decoration: line-through !important;
+ }
+ }
+ }
+ }
+ }
+}
diff --git a/dasena-web/public/assets/admin/scss/themes/components/_accordion.scss b/dasena-web/public/assets/admin/scss/themes/components/_accordion.scss
new file mode 100644
index 0000000..05239aa
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/themes/components/_accordion.scss
@@ -0,0 +1,43 @@
+/*
+<--!----------------------------------------------------------------!-->
+<--! Accordion !-->
+<--!----------------------------------------------------------------!-->
+*/
+.accordion {
+ .accordion-item {
+ background-color: $white;
+ border-color: $border-color;
+ border-radius: $radius-sm;
+ .accordion-header {
+ .accordion-button {
+ z-index: 0;
+ color: $dark;
+ font-size: $font-14;
+ font-weight: $font-700;
+ border-color: $border-color;
+ &:after {
+ color: $dark;
+ width: 10px;
+ height: 10px;
+ background-size: 10px;
+ filter: invert(0);
+ }
+ &:not(.collapsed) {
+ box-shadow: none;
+ background-color: $gray-200;
+ &:after {
+ margin-right: 0 !important;
+ }
+ }
+ }
+ }
+ .accordion-body {
+ color: $brand-body;
+ padding: 25px 25px;
+ border-color: $border-color;
+ }
+ .accordion-footer {
+ border-color: $border-color;
+ }
+ }
+}
diff --git a/dasena-web/public/assets/admin/scss/themes/components/_alert.scss b/dasena-web/public/assets/admin/scss/themes/components/_alert.scss
new file mode 100644
index 0000000..dae92a2
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/themes/components/_alert.scss
@@ -0,0 +1,39 @@
+/*
+<--!----------------------------------------------------------------!-->
+<--! Alert !-->
+<--!----------------------------------------------------------------!-->
+*/
+.alert {
+ &.alert-soft-success-message {
+ color: $success;
+ background-color: lighten($success, 52);
+ border: 1px dashed lighten($success, 25);
+ a {
+ color: $success;
+ }
+ }
+ &.alert-soft-warning-message {
+ color: $warning;
+ background-color: lighten($warning, 40);
+ border: 1px dashed lighten($warning, 25);
+ a {
+ color: $warning;
+ }
+ }
+ &.alert-soft-danger-message {
+ color: $danger;
+ background-color: lighten($danger, 35);
+ border: 1px dashed lighten($danger, 28);
+ a {
+ color: $danger;
+ }
+ }
+ &.alert-soft-teal-message {
+ color: $teal;
+ background-color: lighten($teal, 45);
+ border: 1px dashed lighten($teal, 20);
+ a {
+ color: $teal;
+ }
+ }
+}
diff --git a/dasena-web/public/assets/admin/scss/themes/components/_badge.scss b/dasena-web/public/assets/admin/scss/themes/components/_badge.scss
new file mode 100644
index 0000000..3c9b2f7
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/themes/components/_badge.scss
@@ -0,0 +1,18 @@
+/*
+<--!----------------------------------------------------------------!-->
+<--! Badge SCSS Start !-->
+<--!----------------------------------------------------------------!-->
+*/
+.badge {
+ font-size: $font-11;
+ font-weight: $font-600;
+ padding: 5px 6px;
+ border-radius: 3px;
+ @each $color, $value in $theme-colors {
+ &.bg-light-#{$color} {
+ color: $value;
+ background: shift-color($value, $soft-bg-level);
+ border-color: shift-color($value, $soft-bg-level);
+ }
+ }
+}
diff --git a/dasena-web/public/assets/admin/scss/themes/components/_button.scss b/dasena-web/public/assets/admin/scss/themes/components/_button.scss
new file mode 100644
index 0000000..35ecd89
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/themes/components/_button.scss
@@ -0,0 +1,235 @@
+/*
+<--!----------------------------------------------------------------!-->
+<--! Button SCSS Start !-->
+<--!----------------------------------------------------------------!-->
+*/
+
+@each $color, $value in $theme-colors {
+ .btn-light-#{$color} {
+ color: $value;
+ background: shift-color($value, $soft-bg-level);
+ border-color: shift-color($value, $soft-bg-level);
+ &:hover {
+ color: #fff;
+ background: $value;
+ border-color: $value;
+ }
+ &.focus,
+ &:focus {
+ color: #fff;
+ background: $value;
+ border-color: $value;
+ }
+ &:not(:disabled):not(.disabled).active,
+ &:not(:disabled):not(.disabled):active,
+ .show > &.dropdown-toggle {
+ color: #fff;
+ background: $value;
+ border-color: $value;
+ }
+ }
+
+ .btn-check:active,
+ .btn-check:checked {
+ + .btn-light-#{$color} {
+ background: $value;
+ color: #fff;
+ border-color: $value;
+ }
+ }
+}
+
+button,
+.btn {
+ i {
+ font-size: 16px;
+ }
+
+ &[class*="btn-light-"] {
+ box-shadow: none;
+ }
+
+ &[class*="btn-outline-"]:not(:hover) {
+ box-shadow: none;
+ }
+
+ &.btn-shadow {
+ box-shadow: 0 6px 7px -1px rgba(80, 86, 175, 0.3);
+ }
+
+ &.btn-sm {
+ i {
+ font-size: 10px;
+ }
+ }
+}
+
+.btn {
+ display: flex;
+ padding: 12px 16px;
+ font-size: $font-10;
+ line-height: normal;
+ align-items: center;
+ justify-content: center;
+ font-weight: $font-700;
+ text-transform: $font-uppercase;
+ letter-spacing: $text-spacing-md;
+ border-radius: 3px;
+ transition: all 0.3s ease;
+ &:hover,
+ &:focus,
+ &:active,
+ &:focus,
+ &.active,
+ &.show,
+ .btn-check:focus + &,
+ .btn-check:checked + &,
+ .btn-check:active + & {
+ &:hover,
+ &:focus,
+ &:active,
+ &:focus {
+ color: $white;
+ outline: none;
+ box-shadow: none;
+ transition: all 0.3s ease;
+ }
+ }
+}
+.btn-light,
+.btn-light-brand {
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ color: $brand-dark;
+ border: 1px solid $border-color-2;
+ &:hover,
+ &:focus,
+ &:active,
+ &:focus,
+ &.show {
+ color: $brand-dark !important;
+ border: 1px solid $gray-400 !important;
+ transition: all 0.3s ease;
+ }
+}
+.btn-icon {
+ color: $dark;
+ display: flex;
+ padding: 11px 11px;
+ align-items: center;
+ justify-content: center;
+ border: 1px solid $border-color-2;
+ border-radius: 3px;
+ transition: all 0.3s ease;
+ &:hover,
+ &:focus,
+ &:active,
+ &:focus,
+ &.show {
+ color: $brand-dark !important;
+ border: 1px solid $gray-400 !important;
+ transition: all 0.3s ease;
+ }
+}
+.btn-close {
+ &:focus,
+ &:active {
+ outline: 0;
+ box-shadow: none;
+ }
+}
+button:focus:not(:focus-visible) {
+ outline: none;
+ box-shadow: none;
+ transition: all 0.3s ease;
+}
+.btn-sm,
+.btn-group-sm > .btn {
+ padding: 7px 15px;
+ font-size: $font-9;
+}
+.btn-md,
+.btn-group-md > .btn {
+ padding: 10px 15px;
+ font-size: $font-10;
+}
+.btn-lg,
+.btn-group-lg > .btn {
+ padding: 15px 20px;
+ font-size: $font-11;
+}
+.btn-xl,
+.btn-group-lg > .btn {
+ padding: 20px 30px;
+ font-size: $font-12;
+}
+.btn-xxl,
+.btn-group-lg > .btn {
+ padding: 25px 35px;
+ font-size: $font-15;
+}
+.btn-primary,
+.btn-primary:hover,
+.btn.bg-soft-primary:focus,
+.btn.bg-soft-primary:hover {
+ color: $white !important;
+ border-color: $primary !important;
+ background-color: $primary !important;
+}
+.btn-secondary,
+.btn-secondary:hover,
+.btn.bg-soft-secondary:focus,
+.btn.bg-soft-secondary:hover {
+ color: $white !important;
+ border-color: $secondary !important;
+ background-color: $secondary !important;
+}
+.btn-success,
+.btn-success:hover,
+.btn.bg-soft-success:focus,
+.btn.bg-soft-success:hover {
+ color: $white !important;
+ border-color: $success !important;
+ background-color: $success !important;
+}
+.btn-danger,
+.btn-danger:hover,
+.btn.bg-soft-danger:focus,
+.btn.bg-soft-danger:hover {
+ color: $white !important;
+ border-color: $danger !important;
+ background-color: $danger !important;
+}
+.btn-info,
+.btn-info:hover,
+.btn.bg-soft-info:focus,
+.btn.bg-soft-info:hover {
+ color: $white !important;
+ border-color: $info !important;
+ background-color: $info !important;
+}
+.btn-warning,
+.btn-warning:hover,
+.btn.bg-soft-warning:focus,
+.btn.bg-soft-warning:hover {
+ color: $white !important;
+ border-color: $warning !important;
+ background-color: $warning !important;
+}
+.btn-teal,
+.btn-teal:hover,
+.btn.bg-soft-teal:focus,
+.btn.bg-soft-teal:hover {
+ color: $white !important;
+ border-color: $teal !important;
+ background-color: $teal !important;
+}
+.btn-indigo,
+.btn-indigo:hover,
+.btn.bg-soft-indigo:focus,
+.btn.bg-soft-indigo:hover {
+ color: $white !important;
+ border-color: $indigo !important;
+ background-color: $indigo !important;
+}
diff --git a/dasena-web/public/assets/admin/scss/themes/components/_card.scss b/dasena-web/public/assets/admin/scss/themes/components/_card.scss
new file mode 100644
index 0000000..bfa59f6
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/themes/components/_card.scss
@@ -0,0 +1,210 @@
+/*
+<--!----------------------------------------------------------------!-->
+<--! Card SCSS Start !-->
+<--!----------------------------------------------------------------!-->
+*/
+.card {
+ margin-bottom: 24px;
+ border-radius: $radius-md;
+ border: 1px solid transparent;
+ transition: all 0.3s ease;
+ box-shadow: $card-shadow;
+
+ &:hover {
+ transition: all 0.3s ease;
+
+ .card-footer[class*="bg-"] {
+ box-shadow: none;
+ }
+
+ .card-header-btn {
+ opacity: 1;
+ visibility: visible;
+ transform: translateX(0px);
+ transition: all 0.3s ease;
+ }
+ }
+
+ .card-header {
+ display: flex;
+ align-items: center;
+ justify-content: space-between;
+ border-bottom: 1px solid $border-color;
+ background-color: transparent;
+
+ .card-title {
+ margin-bottom: 0;
+ color: $brand-dark;
+ font-size: $font-16;
+ font-weight: $font-700;
+
+ +p,
+ +small {
+ margin-top: 10px;
+
+ &:last-child {
+ margin-bottom: 0;
+ }
+ }
+ }
+
+ .card-header-right {
+ right: 10px;
+ top: 10px;
+ float: right;
+ padding: 0;
+ position: absolute;
+
+ @media only screen and (max-width: 575px) {
+ display: none;
+ }
+
+ .dropdown-menu {
+ margin-top: 0;
+
+ li {
+ cursor: pointer;
+
+ a {
+ font-size: 14px;
+ text-transform: capitalize;
+ }
+ }
+ }
+
+ .btn.dropdown-toggle {
+ border: none;
+ background: transparent;
+ box-shadow: none;
+ color: #888;
+
+ i {
+ margin-right: 0;
+ }
+
+ &:after {
+ display: none;
+ }
+
+ &:focus {
+ box-shadow: none;
+ outline: none;
+ }
+ }
+
+ // custom toggler
+ .btn.dropdown-toggle {
+ border: none;
+ background: transparent;
+ box-shadow: none;
+ padding: 0;
+ width: 20px;
+ height: 20px;
+ right: 8px;
+ top: 8px;
+
+ &.mobile-menu span {
+ background-color: #888;
+ height: 2px;
+ border-radius: 5px;
+
+ &:after,
+ &:before {
+ border-radius: 5px;
+ height: 2px;
+ background-color: #888;
+ }
+ }
+ }
+
+ .nav-pills {
+ padding: 0;
+ box-shadow: none;
+ background: transparent;
+ }
+ }
+ }
+
+ .card-footer {
+ color: #283c50;
+ transition: box-shadow 0.2s ease-in-out;
+ border-top: 1px solid $border-color;
+ background-color: transparent;
+ }
+
+ .card-header-action,
+ .card-header-btn {
+ gap: 5px;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ }
+
+ .card-header-btn {
+ opacity: 0;
+ visibility: hidden;
+ transform: translateX(30px);
+ transition: all 0.3s ease;
+ }
+
+ &.card-expand {
+ top: 0;
+ left: 0;
+ right: 0;
+ bottom: 0;
+ z-index: 99999;
+ position: fixed !important;
+ overflow-x: hidden;
+ overflow-y: scroll;
+ border-radius: 0;
+ height: calc(100% - 0px);
+ transition: all 0.3s ease;
+
+ &.card-loading {
+ position: absolute;
+ }
+
+ &.card-expand .card-body {
+ flex: 1 0 0;
+ }
+ }
+
+ .card-loader {
+ position: absolute;
+ top: 0;
+ left: 0;
+ right: 0;
+ bottom: 0;
+ z-index: 1030;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ border-radius: $radius-md;
+ background: rgba(255, 255, 255, 0.9);
+ }
+
+ &.card-loading .card-header {
+ position: relative;
+ z-index: 1030;
+ }
+
+ &.card-loading,
+ &.card-loading .card-body {
+ position: relative;
+ }
+
+ .spinner-border {
+ --bs-spinner-width: 1rem;
+ --bs-spinner-height: 1rem;
+ --bs-spinner-border-width: 1px;
+ }
+
+ @each $color,
+ $value in $theme-colors {
+ &.bg-#{$color} {
+ box-shadow: 0 10px 10px -1px transparentize($value, 0.7);
+ }
+ }
+}
+
+// Card css end
\ No newline at end of file
diff --git a/dasena-web/public/assets/admin/scss/themes/components/_dropdown.scss b/dasena-web/public/assets/admin/scss/themes/components/_dropdown.scss
new file mode 100644
index 0000000..44cfc43
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/themes/components/_dropdown.scss
@@ -0,0 +1,77 @@
+/*
+<--!----------------------------------------------------------------!-->
+<--! Dropdown SCSS Start !-->
+<--!----------------------------------------------------------------!-->
+*/
+.dropdown-toggle {
+ &.arrow-none {
+ &:after {
+ display: none;
+ }
+ }
+}
+.dropdown-menu {
+ padding: 15px 0;
+ border: 1px solid $border-color;
+ box-shadow: 0 10px 24px 0 rgba(62, 57, 107, 0.18);
+ &[data-popper-placement="bottom-start"],
+ &[data-popper-placement="bottom-end"] {
+ border-radius: 0 0 10px 10px;
+ box-shadow: 0 10px 24px 0 rgba(62, 57, 107, 0.18);
+ }
+ &[data-popper-placement="top-start"],
+ &[data-popper-placement="top-end"] {
+ border-radius: 10px 10px 0 0;
+ box-shadow: 0 -10px 24px 0 rgba(62, 57, 107, 0.18);
+ }
+}
+.nxl-header {
+ .dropdown-menu {
+ animation: 0.4s ease-in-out 0s normal forwards 1 fadein;
+ }
+}
+@keyframes fadein {
+ from {
+ opacity: 0;
+ transform: translate3d(0, 8px, 0);
+ }
+
+ to {
+ opacity: 1;
+ transform: translate3d(0, 0, 0);
+ }
+}
+.dropdown {
+ .dropdown-menu {
+ width: 225px;
+ .dropdown-item {
+ margin: 3px 10px;
+ padding: 10px 15px;
+ color: $brand-dark;
+ font-size: $font-13;
+ font-weight: $font-600;
+ display: flex;
+ align-items: center;
+ border-radius: $radius-sm;
+ transition: all 0.3s ease;
+ width: -webkit-fill-available;
+ &.active,
+ &:active,
+ &:focus,
+ &:hover {
+ color: $darken;
+ background-color: $brand-light;
+ transition: all 0.3s ease;
+ i.bg-gray-500 {
+ background-color: $darken !important;
+ transition: all 0.3s ease;
+ }
+ }
+ i {
+ font-size: 16px;
+ margin-right: 15px;
+ }
+ }
+ }
+}
+// dropdown css end
diff --git a/dasena-web/public/assets/admin/scss/themes/components/_form.scss b/dasena-web/public/assets/admin/scss/themes/components/_form.scss
new file mode 100644
index 0000000..367fbbf
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/themes/components/_form.scss
@@ -0,0 +1,209 @@
+/*
+<--!----------------------------------------------------------------!-->
+<--! Form SCSS Start !-->
+<--!----------------------------------------------------------------!-->
+*/
+
+input,
+.custom-file,
+.custom-select,
+.form-select,
+.form-control {
+ color: $dark;
+ padding: 12px 15px;
+ border-color: $border-color;
+ border-radius: $radius-sm;
+ &.active,
+ &.focus,
+ &:active,
+ &:focus,
+ &:active,
+ &:focus {
+ outline: 0;
+ color: $dark;
+ border-color: $primary !important;
+ box-shadow: none !important;
+ }
+ &::placeholder {
+ color: $gray-500 !important;
+ }
+ &::-ms-placeholder {
+ color: $gray-500 !important;
+ }
+ &::-moz-placeholder {
+ color: $gray-500 !important;
+ }
+ &::-webkit-placeholder {
+ color: $gray-500 !important;
+ }
+}
+.form-label,
+.col-form-label {
+ color: $dark !important;
+ font-size: $font-12 !important;
+ font-weight: $font-600 !important;
+}
+.form-select {
+ color: $dark;
+ background-size: 10px;
+ filter: invert(0);
+ .form-select-sm,
+ &.form-select-sm {
+ background-size: 6px;
+ }
+}
+.input-group-text {
+ color: $dark;
+ padding: 0 15px;
+ font-weight: $font-600;
+ border-radius: $radius-sm;
+ border-color: $border-color;
+ background-color: darken($gray-100, 1);
+}
+input[type="search"]::-webkit-search-cancel-button {
+ display: none;
+}
+/*
+<--!----------------------------------------------------------------!-->
+<--! Custom Checkbox !-->
+<--!----------------------------------------------------------------!-->
+*/
+input[type="checkbox"],
+input[type="radio"] {
+ padding: 0;
+ box-sizing: border-box;
+}
+.custom-control {
+ display: block;
+ min-height: 1.8px;
+ position: relative;
+ padding-left: 0.75rem;
+}
+.custom-control-input {
+ left: 10px;
+ opacity: 0;
+ z-index: -1;
+ width: 1.25rem;
+ height: 1.375rem;
+ position: absolute;
+}
+.custom-control-label {
+ left: 15px;
+ cursor: pointer;
+ margin-bottom: 0;
+ position: relative;
+ color: $brand-dark;
+ font-size: $font-13;
+ vertical-align: top;
+ font-weight: $font-500;
+ text-transform: inherit;
+}
+.custom-checkbox {
+ .custom-control-label {
+ &:before {
+ content: "";
+ width: 18px;
+ height: 18px;
+ top: 1px;
+ left: -28px;
+ display: block;
+ border-width: 3px;
+ position: absolute;
+ border-radius: $radius-xs;
+ border: 1px solid $border-color;
+ background-color: darken($gray-100, 1);
+ }
+ &:after {
+ top: 1px;
+ content: "";
+ left: -1.65rem;
+ display: block;
+ width: 0.75rem;
+ height: 0.75rem;
+ position: absolute;
+ background-size: 0;
+ background-repeat: no-repeat;
+ background: no-repeat 50%/50% 50%;
+ transition: background-size 0.15s ease-in-out;
+ }
+ }
+ .custom-control-input:checked ~ .custom-control-label::after {
+ background-size: 100%;
+ transition: background-size 0.15s ease-in-out;
+ }
+ .custom-control-input:checked ~ .custom-control-label::after {
+ top: 1px;
+ left: -26px;
+ color: $white;
+ content: "\f272";
+ position: absolute;
+ font-family: bootstrap-icons !important;
+ }
+ .custom-control-input:checked ~ .custom-control-label::before {
+ color: $white;
+ border-color: $primary;
+ background-color: $primary;
+ }
+}
+.custom-control-label:before,
+.custom-file-label,
+.custom-select {
+ -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, background-size 5s ease-in-out;
+ -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, background-size 5s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
+ transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, background-size 5s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
+ -o-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -o-background-size 5s ease-in-out;
+ -moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, background-size 5s ease-in-out, -moz-box-shadow 0.15s ease-in-out, -moz-background-size 5s 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, background-size 5s 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, background-size 5s ease-in-out, -webkit-box-shadow 0.15s ease-in-out, -moz-box-shadow 0.15s ease-in-out, -moz-background-size 5s ease-in-out, -o-background-size 5s ease-in-out;
+}
+.custom-radio {
+ .custom-control-label {
+ &:before {
+ border-radius: $radius-circle;
+ }
+ }
+ .custom-control-input:checked ~ .custom-control-label::after {
+ border: 3px solid $white;
+ border-radius: $radius-circle;
+ }
+}
+.form-switch {
+ .form-check-input:checked {
+ border-color: $primary;
+ background-color: $primary;
+ }
+}
+@mixin switch($res: "sm") {
+ $index: 1rem;
+ $mainVal: 1rem;
+ @if $res == "md" {
+ $index: 2rem;
+ $mainVal: 1.5rem;
+ } @else if $res == "lg" {
+ $index: 3rem;
+ $mainVal: 2rem;
+ } @else if $res == "xl" {
+ $index: 4rem;
+ $mainVal: 2.5rem;
+ }
+ .form-check-input {
+ height: $mainVal;
+ width: calc(#{$index} + 0.75rem);
+ border-radius: $mainVal * 2;
+ }
+}
+.form-check-input {
+ clear: left;
+}
+.form-switch.form-switch-sm {
+ @include switch();
+}
+.form-switch.form-switch-md {
+ @include switch("md");
+}
+.form-switch.form-switch-lg {
+ @include switch("lg");
+}
+.form-switch.form-switch-xl {
+ @include switch("xl");
+}
diff --git a/dasena-web/public/assets/admin/scss/themes/components/_general.scss b/dasena-web/public/assets/admin/scss/themes/components/_general.scss
new file mode 100644
index 0000000..690409b
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/themes/components/_general.scss
@@ -0,0 +1,1165 @@
+/*
+<--!----------------------------------------------------------------!-->
+<--! General SCSS Start !-->
+<--!----------------------------------------------------------------!-->
+*/
+body {
+ line-height: 1.6;
+ color: $brand-body;
+ overflow-x: hidden;
+ font-size: $font-body;
+ scroll-behavior: smooth;
+ font-family: $font-inter;
+ transition: all 0.3s ease;
+ -webkit-font-smoothing: antialiased;
+ background-color: rgba(243, 244, 246);
+}
+
+* {
+ &:focus {
+ outline: none;
+ text-decoration: none;
+ }
+}
+
+a {
+ color: $brand-dark;
+ text-decoration: none;
+ font-weight: $font-600;
+ transition: all 0.3s ease;
+ &:hover {
+ color: $primary;
+ text-decoration: none;
+ }
+
+ &:not([href]) {
+ color: inherit;
+ }
+}
+
+b,
+strong {
+ font-weight: 600;
+}
+
+.c-pointer {
+ cursor: pointer;
+}
+
+.h1,
+.h2,
+.h3,
+.h4,
+.h5,
+.h6,
+h1,
+h2,
+h3,
+h4,
+h5,
+h6 {
+ color: $brand-dark;
+ font-weight: $font-700;
+}
+
+img {
+ border-radius: $radius-xs;
+}
+
+/*
+<--!----------------------------------------------------------------!-->
+<--! Avatar !-->
+<--!----------------------------------------------------------------!-->
+*/
+.avatar-text,
+.avatar-image {
+ width: 40px;
+ height: 40px;
+ max-width: 40px;
+ max-height: 40px;
+ min-width: 40px;
+ min-height: 40px;
+ overflow: hidden;
+ border-radius: 100%;
+ cursor: pointer;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ font-weight: $font-700;
+ background-color: $white;
+ border: 1px solid $border-color-2;
+}
+.avatar-xs {
+ width: 12px;
+ height: 12px;
+ max-width: 12px;
+ max-height: 12px;
+ min-width: 12px;
+ min-height: 12px;
+ * {
+ font-size: $font-8;
+ }
+}
+.avatar-sm {
+ width: 20px;
+ height: 20px;
+ max-width: 20px;
+ max-height: 20px;
+ min-width: 20px;
+ min-height: 20px;
+ * {
+ font-size: $font-10;
+ }
+}
+.avatar-md {
+ width: 30px;
+ height: 30px;
+ max-width: 30px;
+ max-height: 30px;
+ min-width: 30px;
+ min-height: 30px;
+ * {
+ font-size: $font-12;
+ }
+}
+.avatar-lg {
+ width: 50px;
+ height: 50px;
+ max-width: 50px;
+ max-height: 50px;
+ min-width: 50px;
+ min-height: 50px;
+}
+.avatar-xl {
+ width: 65px;
+ height: 65px;
+ max-width: 65px;
+ max-height: 65px;
+ min-width: 65px;
+ min-height: 65px;
+}
+.avatar-xxl {
+ width: 80px;
+ height: 80px;
+ max-width: 80px;
+ max-height: 80px;
+ min-width: 80px;
+ min-height: 80px;
+}
+
+/*
+<--!----------------------------------------------------------------!-->
+<--! Sizing !-->
+<--!----------------------------------------------------------------!-->
+*/
+.font-body {
+ font-size: $font-body;
+}
+.fs-5 {
+ font-size: $font-5;
+}
+.fs-6 {
+ font-size: $font-6;
+}
+.fs-7 {
+ font-size: $font-7;
+}
+.fs-8 {
+ font-size: $font-8;
+}
+.fs-9 {
+ font-size: $font-9;
+}
+.fs-10 {
+ font-size: $font-10;
+}
+.fs-11 {
+ font-size: $font-11;
+}
+.fs-12 {
+ font-size: $font-12;
+}
+.fs-13 {
+ font-size: $font-13;
+}
+.fs-14 {
+ font-size: $font-14;
+}
+.fs-15 {
+ font-size: $font-15;
+}
+.fs-16 {
+ font-size: $font-16;
+}
+.fs-17 {
+ font-size: $font-17;
+}
+.fs-18 {
+ font-size: $font-18;
+}
+.fs-19 {
+ font-size: $font-19;
+}
+.fs-20 {
+ font-size: $font-20;
+}
+.fs-22 {
+ font-size: $font-22;
+}
+.fs-24 {
+ font-size: $font-24;
+}
+.fs-26 {
+ font-size: $font-26;
+}
+.fs-28 {
+ font-size: $font-28;
+}
+.fs-30 {
+ font-size: $font-30;
+}
+/*
+<--!----------------------------------------------------------------!-->
+<--! Family !-->
+<--!----------------------------------------------------------------!-->
+*/
+.font-lato {
+ font-family: $font-lato;
+}
+.font-rubik {
+ font-family: $font-rubik;
+}
+.font-inter {
+ font-family: $font-inter;
+}
+.font-cinzel {
+ font-family: $font-cinzel;
+}
+.font-nunito {
+ font-family: $font-nunito;
+}
+.font-roboto {
+ font-family: $font-roboto;
+}
+.font-ubuntu {
+ font-family: $font-ubuntu;
+}
+.font-poppins {
+ font-family: $font-poppins;
+}
+.font-raleway {
+ font-family: $font-raleway;
+}
+.font-system-ui {
+ font-family: $font-system-ui;
+}
+.font-noto-sans {
+ font-family: $font-noto-sans;
+}
+.font-fira-sans {
+ font-family: $font-fira-sans;
+}
+.font-work-sans {
+ font-family: $font-work-sans;
+}
+.font-open-sans {
+ font-family: $font-open-sans;
+}
+.font-maven-pro {
+ font-family: $font-maven-pro;
+}
+.font-quicksand {
+ font-family: $font-quicksand;
+}
+.font-montserrat {
+ font-family: $font-montserrat;
+}
+.font-josefin-sans {
+ font-family: $font-josefin-sans;
+}
+.font-ibm-plex-sans {
+ font-family: $font-ibm-plex-sans;
+}
+.font-source-sans-pro {
+ font-family: $font-source-sans-pro;
+}
+.font-montserrat-alt {
+ font-family: $font-montserrat-alt;
+}
+.font-roboto-slab {
+ font-family: $font-roboto-slab;
+}
+/*
+<--!----------------------------------------------------------------!-->
+<--! Colors !-->
+<--!----------------------------------------------------------------!-->
+*/
+.text-primary {
+ color: $primary !important;
+}
+.text-success {
+ color: $success !important;
+}
+.text-danger {
+ color: $danger !important;
+}
+.text-info {
+ color: $info !important;
+}
+.text-warning {
+ color: $warning !important;
+}
+.text-teal {
+ color: $teal !important;
+}
+.text-indigo {
+ color: $indigo !important;
+}
+.text-dark {
+ color: $dark !important;
+}
+.text-gray-100 {
+ color: $gray-100 !important;
+}
+.text-gray-200 {
+ color: $gray-200 !important;
+}
+.text-gray-300 {
+ color: $gray-300 !important;
+}
+.text-gray-400 {
+ color: $gray-400 !important;
+}
+.text-gray-500 {
+ color: $gray-500 !important;
+}
+.text-gray-600 {
+ color: $gray-600 !important;
+}
+.text-soft-primary {
+ color: lighten($primary, 35) !important;
+}
+.text-soft-success {
+ color: lighten($success, 35) !important;
+}
+.text-soft-danger {
+ color: lighten($danger, 35) !important;
+}
+.text-soft-info {
+ color: lighten($info, 35) !important;
+}
+.text-soft-warning {
+ color: lighten($warning, 35) !important;
+}
+.text-soft-teal {
+ color: lighten($teal, 35) !important;
+}
+.text-soft-indigo {
+ color: lighten($indigo, 35) !important;
+}
+.text-soft-dark {
+ color: lighten($dark, 35) !important;
+}
+/*
+<--!----------------------------------------------------------------!-->
+<--! Spacing !-->
+<--!----------------------------------------------------------------!-->
+*/
+.text-spacing-1 {
+ letter-spacing: 0.5px;
+}
+.text-spacing-2 {
+ letter-spacing: 1px;
+}
+.text-spacing-3 {
+ letter-spacing: 1.5px;
+}
+.text-spacing-4 {
+ letter-spacing: 2px;
+}
+.text-spacing-5 {
+ letter-spacing: 2.5px;
+}
+/*
+<--!----------------------------------------------------------------!-->
+<--! Background Solid Color !-->
+<--!----------------------------------------------------------------!-->
+*/
+.bg-white {
+ background-color: $white !important;
+}
+.bg-primary {
+ background-color: $primary !important;
+}
+.bg-secondary {
+ background-color: $secondary !important;
+}
+.bg-success {
+ background-color: $success !important;
+}
+.bg-info {
+ background-color: $info !important;
+}
+.bg-danger {
+ background-color: $danger !important;
+}
+.bg-dark {
+ background-color: $dark !important;
+}
+.bg-warning {
+ background-color: $warning !important;
+}
+.bg-black {
+ background-color: $black !important;
+}
+.bg-muted {
+ background-color: $brand-muted !important;
+}
+.bg-light {
+ background-color: $light !important;
+}
+.bg-blue {
+ background-color: $blue !important;
+}
+.bg-teal {
+ background-color: $teal !important;
+}
+.bg-indigo {
+ background-color: $indigo !important;
+}
+.bg-cyan {
+ background-color: $cyan !important;
+}
+.bg-green {
+ background-color: $green !important;
+}
+.bg-red {
+ background-color: $red !important;
+}
+.bg-orange {
+ background-color: $orange !important;
+}
+.bg-darken {
+ background-color: $darken !important;
+}
+.bg-gray-100 {
+ background-color: $gray-100 !important;
+}
+.bg-gray-200 {
+ background-color: $gray-200 !important;
+}
+.bg-gray-300 {
+ background-color: $gray-300 !important;
+}
+.bg-gray-400 {
+ background-color: $gray-400 !important;
+}
+.bg-gray-500 {
+ background-color: $gray-500 !important;
+}
+.bg-gray-600 {
+ background-color: $gray-600 !important;
+}
+.bg-gray-700 {
+ background-color: $gray-700 !important;
+}
+.bg-gray-800 {
+ background-color: $gray-800 !important;
+}
+.bg-gray-900 {
+ background-color: $gray-900 !important;
+}
+
+/*
+<--!----------------------------------------------------------------!-->
+<--! Background Soft Color !-->
+<--!----------------------------------------------------------------!-->
+*/
+.bg-soft-100 {
+ background-color: lighten($gray-100, 1) !important;
+}
+.bg-soft-200 {
+ background-color: lighten($gray-200, 2) !important;
+}
+.bg-soft-300 {
+ background-color: lighten($gray-300, 3) !important;
+}
+.bg-soft-400 {
+ background-color: lighten($gray-400, 4) !important;
+}
+.bg-soft-500 {
+ background-color: lighten($gray-500, 5) !important;
+}
+.bg-soft-primary {
+ background-color: lighten($primary, 44) !important;
+}
+.bg-soft-success {
+ background-color: lighten($success, 50) !important;
+}
+.bg-soft-danger {
+ background-color: lighten($danger, 35) !important;
+}
+.bg-soft-info {
+ background-color: lighten($info, 40) !important;
+}
+.bg-soft-warning {
+ background-color: lighten($warning, 35) !important;
+}
+.bg-soft-teal {
+ background-color: lighten($teal, 40) !important;
+}
+.bg-soft-indigo {
+ background-color: lighten($indigo, 45) !important;
+}
+.bg-soft-dark {
+ background-color: lighten($dark, 70) !important;
+}
+.bg-soft-darken {
+ background-color: lighten($darken, 80) !important;
+}
+/*
+<--!----------------------------------------------------------------!-->
+<--! Border Gray Color !-->
+<--!----------------------------------------------------------------!-->
+*/
+.border-gray-1 {
+ border-color: darken($gray-200, 1) !important;
+}
+.border-gray-2 {
+ border-color: darken($gray-200, 2) !important;
+}
+.border-gray-3 {
+ border-color: darken($gray-200, 3) !important;
+}
+.border-gray-4 {
+ border-color: darken($gray-200, 4) !important;
+}
+.border-gray-5 {
+ border-color: darken($gray-200, 5) !important;
+}
+/*
+<--!----------------------------------------------------------------!-->
+<--! Border Soft Color !-->
+<--!----------------------------------------------------------------!-->
+*/
+.border-soft-primary {
+ border-color: lighten($primary, 40) !important;
+}
+.border-soft-success {
+ border-color: lighten($success, 40) !important;
+}
+.border-soft-danger {
+ border-color: lighten($danger, 32) !important;
+}
+.border-soft-info {
+ border-color: lighten($info, 34) !important;
+}
+.border-soft-warning {
+ border-color: lighten($warning, 28) !important;
+}
+.border-soft-teal {
+ border-color: lighten($teal, 32) !important;
+}
+.border-soft-indigo {
+ border-color: lighten($indigo, 40) !important;
+}
+/*
+<--!----------------------------------------------------------------!-->
+<--! Border Style !-->
+<--!----------------------------------------------------------------!-->
+*/
+.border-dashed {
+ border-style: dashed !important;
+}
+.border-start-dashed {
+ border-left-style: dashed !important;
+}
+.border-end-dashed {
+ border-right-style: dashed !important;
+}
+.border-top-dashed {
+ border-top-style: dashed !important;
+}
+.border-bottom-dashed {
+ border-bottom-style: dashed !important;
+}
+.border-dotted {
+ border-style: dotted !important;
+}
+.border-start-dotted {
+ border-left-style: dotted !important;
+}
+.border-end-dotted {
+ border-right-style: dotted !important;
+}
+.border-top-dotted {
+ border-top-style: dotted !important;
+}
+.border-bottom-dotted {
+ border-bottom-style: dotted !important;
+}
+.border-double {
+ border-style: double !important;
+}
+.border-start-double {
+ border-left-style: double !important;
+}
+.border-end-double {
+ border-right-style: double !important;
+}
+.border-top-double {
+ border-top-style: double !important;
+}
+.border-bottom-double {
+ border-bottom-style: double !important;
+}
+.border-groove {
+ border-style: groove !important;
+}
+.border-start-groove {
+ border-left-style: groove !important;
+}
+.border-end-groove {
+ border-right-style: groove !important;
+}
+.border-top-groove {
+ border-top-style: groove !important;
+}
+.border-bottom-groove {
+ border-bottom-style: groove !important;
+}
+/*
+<--!----------------------------------------------------------------!-->
+<--! Border Color !-->
+<--!----------------------------------------------------------------!-->
+*/
+.border-primary {
+ border-color: $primary !important;
+}
+.border-secondary {
+ border-color: $secondary !important;
+}
+.border-success {
+ border-color: $success !important;
+}
+.border-danger {
+ border-color: $danger !important;
+}
+.border-warning {
+ border-color: $warning !important;
+}
+.border-teal {
+ border-color: $teal !important;
+}
+.border-info {
+ border-color: $info !important;
+}
+.border-indigo {
+ border-color: $indigo !important;
+}
+.border-dark {
+ border-color: $dark !important;
+}
+.border-black {
+ border-color: $black !important;
+}
+/*
+<--!----------------------------------------------------------------!-->
+<--! Width !-->
+<--!----------------------------------------------------------------!-->
+*/
+.wd-1 {
+ width: 1px;
+ max-width: 1px;
+ min-width: 1px;
+}
+.wd-2 {
+ width: 2px;
+ max-width: 2px;
+ min-width: 2px;
+}
+.wd-3 {
+ width: 3px;
+ max-width: 3px;
+ min-width: 3px;
+}
+.wd-4 {
+ width: 4px;
+ max-width: 4px;
+ min-width: 4px;
+}
+.wd-5 {
+ width: 5px;
+ max-width: 5px;
+ min-width: 5px;
+}
+.wd-6 {
+ width: 6px;
+ max-width: 6px;
+ min-width: 6px;
+}
+.wd-7 {
+ width: 7px;
+ max-width: 7px;
+ min-width: 7px;
+}
+.wd-8 {
+ width: 8px;
+ max-width: 8px;
+ min-width: 8px;
+}
+.wd-9 {
+ width: 9px;
+ max-width: 9px;
+ min-width: 9px;
+}
+.wd-10 {
+ width: 10px;
+ max-width: 10px;
+ min-width: 10px;
+}
+.wd-15 {
+ width: 15px;
+ max-width: 15px;
+ min-width: 15px;
+}
+.wd-20 {
+ width: 20px;
+ max-width: 20px;
+ min-width: 20px;
+}
+.wd-30 {
+ width: 30px;
+ max-width: 30px;
+ min-width: 30px;
+}
+.wd-40 {
+ width: 40px;
+ max-width: 40px;
+ min-width: 40px;
+}
+.wd-50 {
+ width: 50px;
+ max-width: 50px;
+ min-width: 50px;
+}
+.wd-60 {
+ width: 60px;
+ max-width: 60px;
+ min-width: 60px;
+}
+.wd-70 {
+ width: 70px;
+ max-width: 70px;
+ min-width: 70px;
+}
+.wd-80 {
+ width: 80px;
+ max-width: 80px;
+ min-width: 80px;
+}
+.wd-90 {
+ width: 90px;
+ max-width: 90px;
+ min-width: 90px;
+}
+.wd-100 {
+ width: 100px;
+ max-width: 100px;
+ min-width: 100px;
+}
+.wd-150 {
+ width: 150px;
+ max-width: 150px;
+ min-width: 150px;
+}
+.wd-200 {
+ width: 200px;
+ max-width: 200px;
+ min-width: 200px;
+}
+.wd-250 {
+ width: 250px;
+ max-width: 250px;
+ min-width: 250px;
+}
+.wd-300 {
+ width: 300px;
+ max-width: 300px;
+ min-width: 300px;
+}
+.wd-350 {
+ width: 350px;
+ max-width: 350px;
+ min-width: 350px;
+}
+.wd-400 {
+ width: 400px;
+ max-width: 400px;
+ min-width: 400px;
+}
+.wd-450 {
+ width: 450px;
+ max-width: 450px;
+ min-width: 450px;
+}
+.wd-500 {
+ width: 500px;
+ max-width: 500px;
+ min-width: 500px;
+}
+/*
+<--!----------------------------------------------------------------!-->
+<--! Height !-->
+<--!----------------------------------------------------------------!-->
+*/
+.ht-1 {
+ height: 1px;
+ max-height: 1px;
+ min-height: 1px;
+}
+.ht-2 {
+ height: 2px;
+ max-height: 2px;
+ min-height: 2px;
+}
+.ht-3 {
+ height: 3px;
+ max-height: 3px;
+ min-height: 3px;
+}
+.ht-4 {
+ height: 4px;
+ max-height: 4px;
+ min-height: 4px;
+}
+.ht-5 {
+ height: 5px;
+ max-height: 5px;
+ min-height: 5px;
+}
+.ht-5 {
+ height: 5px;
+ max-height: 5px;
+ min-height: 5px;
+}
+.ht-6 {
+ height: 6px;
+ max-height: 6px;
+ min-height: 6px;
+}
+.ht-7 {
+ height: 7px;
+ max-height: 7px;
+ min-height: 7px;
+}
+.ht-8 {
+ height: 8px;
+ max-height: 8px;
+ min-height: 8px;
+}
+.ht-9 {
+ height: 9px;
+ max-height: 9px;
+ min-height: 9px;
+}
+.ht-10 {
+ height: 10px;
+ max-height: 10px;
+ min-height: 10px;
+}
+.ht-15 {
+ height: 15px;
+ max-height: 15px;
+ min-height: 15px;
+}
+.ht-20 {
+ height: 20px;
+ max-height: 20px;
+ min-height: 20px;
+}
+.ht-30 {
+ height: 30px;
+ max-height: 30px;
+ min-height: 30px;
+}
+.ht-40 {
+ height: 40px;
+ max-height: 40px;
+ min-height: 40px;
+}
+.ht-50 {
+ height: 50px;
+ max-height: 50px;
+ min-height: 50px;
+}
+.ht-60 {
+ height: 60px;
+ max-height: 60px;
+ min-height: 60px;
+}
+.ht-70 {
+ height: 70px;
+ max-height: 70px;
+ min-height: 70px;
+}
+.ht-80 {
+ height: 80px;
+ max-height: 80px;
+ min-height: 80px;
+}
+.ht-90 {
+ height: 90px;
+ max-height: 90px;
+ min-height: 90px;
+}
+.ht-100 {
+ height: 100px;
+ max-height: 100px;
+ min-height: 100px;
+}
+.ht-150 {
+ height: 150px;
+ max-height: 150px;
+ min-height: 150px;
+}
+.ht-200 {
+ height: 200px;
+ max-height: 200px;
+ min-height: 200px;
+}
+.ht-250 {
+ height: 250px;
+ max-height: 250px;
+ min-height: 250px;
+}
+.ht-300 {
+ height: 300px;
+ max-height: 300px;
+ min-height: 300px;
+}
+.ht-350 {
+ height: 350px;
+ max-height: 350px;
+ min-height: 350px;
+}
+.ht-400 {
+ height: 400px;
+ max-height: 400px;
+ min-height: 400px;
+}
+.ht-450 {
+ height: 450px;
+ max-height: 450px;
+ min-height: 450px;
+}
+.ht-500 {
+ height: 500px;
+ max-height: 500px;
+ min-height: 500px;
+}
+/*
+<--!----------------------------------------------------------------!-->
+<--! Shadows !-->
+<--!----------------------------------------------------------------!-->
+*/
+.shadow-none {
+ box-shadow: $shadow-none;
+}
+.shadow-sm {
+ box-shadow: $shadow-sm;
+}
+.shadow-md {
+ box-shadow: $shadow-md;
+}
+.shadow-lg {
+ box-shadow: $shadow-lg;
+}
+.shadow-xl {
+ box-shadow: $shadow-xl;
+}
+.shadow-xxl {
+ box-shadow: $shadow-xxl;
+}
+
+/*
+<--!----------------------------------------------------------------!-->
+<--! Stretch Height !-->
+<--!----------------------------------------------------------------!-->
+*/
+.stretch {
+ height: 100%;
+ display: flex;
+ align-items: stretch;
+ flex-direction: column;
+ &.stretch-full {
+ height: calc(100% - 24px);
+ }
+ &.stretch-onethird {
+ height: calc(75% - 24px);
+ }
+ &.stretch-half {
+ height: calc(50% - 24px);
+ }
+ &.stretch-quarter {
+ height: calc(25% - 24px);
+ }
+}
+/*
+<--!----------------------------------------------------------------!-->
+<--! Miscellaneous !-->
+<--!----------------------------------------------------------------!-->
+*/
+.tooltip {
+ font-size: $font-10;
+ font-family: inherit;
+ font-weight: $font-500;
+ text-transform: $font-uppercase;
+ .tooltip-inner {
+ padding: 5px 10px;
+ letter-spacing: 0.35px;
+ border-radius: 3px;
+ }
+}
+.popover {
+ border-color: $border-color;
+}
+hr {
+ margin: 25px auto;
+ border-color: $gray-500;
+}
+.dropdown-dividar {
+ margin: 10px auto;
+ border-top: 1px solid $border-color;
+}
+.text-truncate-1-line {
+ width: 100%;
+ max-width: 100%;
+ white-space: nowrap;
+ text-overflow: ellipsis;
+ overflow: hidden;
+ @supports (-webkit-line-clamp: 1) {
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: initial;
+ display: -webkit-box !important;
+ -webkit-line-clamp: 1;
+ -webkit-box-orient: vertical;
+ }
+}
+.text-truncate-2-line {
+ width: 100%;
+ max-width: 100%;
+ white-space: nowrap;
+ text-overflow: ellipsis;
+ overflow: hidden;
+ @supports (-webkit-line-clamp: 2) {
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: initial;
+ display: -webkit-box !important;
+ -webkit-line-clamp: 2;
+ -webkit-box-orient: vertical;
+ }
+}
+.text-truncate-3-line {
+ width: 100%;
+ max-width: 100%;
+ white-space: nowrap;
+ text-overflow: ellipsis;
+ overflow: hidden;
+ @supports (-webkit-line-clamp: 3) {
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: initial;
+ display: -webkit-box !important;
+ -webkit-line-clamp: 3;
+ -webkit-box-orient: vertical;
+ }
+}
+.text-truncate-4-line {
+ width: 100%;
+ max-width: 100%;
+ white-space: nowrap;
+ text-overflow: ellipsis;
+ overflow: hidden;
+ @supports (-webkit-line-clamp: 4) {
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: initial;
+ display: -webkit-box !important;
+ -webkit-line-clamp: 4;
+ -webkit-box-orient: vertical;
+ }
+}
+.text-truncate-5-line {
+ width: 100%;
+ max-width: 100%;
+ white-space: nowrap;
+ text-overflow: ellipsis;
+ overflow: hidden;
+ @supports (-webkit-line-clamp: 5) {
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: initial;
+ display: -webkit-box !important;
+ -webkit-line-clamp: 5;
+ -webkit-box-orient: vertical;
+ }
+}
+/*
+<--!----------------------------------------------------------------!-->
+<--! FullScreen Switcher !-->
+<--!----------------------------------------------------------------!-->
+*/
+body {
+ .full-screen-switcher {
+ a {
+ .maximize {
+ display: block;
+ }
+ .minimize {
+ display: none;
+ }
+ }
+ }
+ &.full-screen-helper {
+ .full-screen-switcher {
+ a {
+ .maximize {
+ display: none;
+ }
+ .minimize {
+ display: block;
+ }
+ }
+ }
+ }
+}
+:not(:root):fullscreen::backdrop {
+ background: transparent;
+}
+/*
+<--!----------------------------------------------------------------!-->
+<--! Scrollbar !-->
+<--!----------------------------------------------------------------!-->
+*/
+::-webkit-scrollbar {
+ width: 5px;
+ height: 5px;
+ border-radius: 15px;
+}
+::-webkit-scrollbar-track {
+ background-color: $white;
+ border-radius: 15px;
+}
+::-webkit-scrollbar-thumb {
+ background-color: $gray-300;
+ border-radius: 15px;
+}
+::-webkit-scrollbar-thumb {
+ &:hover {
+ background-color: $darken;
+ transition: all 0.3s ease;
+ }
+}
diff --git a/dasena-web/public/assets/admin/scss/themes/components/_language.scss b/dasena-web/public/assets/admin/scss/themes/components/_language.scss
new file mode 100644
index 0000000..845e25d
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/themes/components/_language.scss
@@ -0,0 +1,41 @@
+/*
+<--!----------------------------------------------------------------!-->
+<--! Language SCSS Start !-->
+<--!----------------------------------------------------------------!-->
+*/
+#languageSelectModal {
+ .language_select {
+ a {
+ color: $dark;
+ padding: 10px;
+ border-radius: 5px;
+ margin-bottom: 10px;
+ border: 1px dashed $border-color;
+ transition: all 0.3s ease;
+ &::hover {
+ background-color: $brand-light;
+ }
+ }
+ &.active {
+ a {
+ position: relative;
+ &:before {
+ top: 0;
+ left: 0;
+ right: 0;
+ bottom: 0;
+ width: 100%;
+ height: 100%;
+ z-index: 9999;
+ content: "✓";
+ color: $primary;
+ position: absolute;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ background-color: $brand-light;
+ }
+ }
+ }
+ }
+}
diff --git a/dasena-web/public/assets/admin/scss/themes/components/_miscellaneous.scss b/dasena-web/public/assets/admin/scss/themes/components/_miscellaneous.scss
new file mode 100644
index 0000000..c014858
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/themes/components/_miscellaneous.scss
@@ -0,0 +1,194 @@
+/*
+<--!----------------------------------------------------------------!-->
+<--! Miscellaneous !-->
+<--!----------------------------------------------------------------!-->
+*/
+.img-group {
+ display: flex;
+ align-items: center;
+ justify-content: flex-end;
+ .avatar-image,
+ .avatar-text {
+ overflow: hidden;
+ margin-left: -10px;
+ align-items: center;
+ display: inline-flex;
+ justify-content: center;
+ border-radius: 100%;
+ border: 2px solid $white;
+ transition: all 0.3s ease;
+ &:hover {
+ transition: all 0.3s ease;
+ transform: translateY(-4px) scale(1.07);
+ }
+ }
+}
+/*
+<--!----------------------------------------------------------------!-->
+<--! Pagination !-->
+<--!----------------------------------------------------------------!-->
+*/
+ul.pagination-common-style {
+ li {
+ a {
+ width: 30px;
+ height: 30px;
+ color: $dark;
+ font-size: $font-12;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ border-radius: 100%;
+ transition: all 0.3s ease;
+ border: 1px solid darken($gray-100, 2);
+ &:hover,
+ &.active {
+ color: $white !important;
+ background-color: $primary;
+ transition: all 0.3s ease;
+ }
+ }
+ }
+}
+
+/*
+<--!----------------------------------------------------------------!-->
+<--! Ladda Button CSS !-->
+<--!----------------------------------------------------------------!-->
+*/
+.ladda-button {
+ padding: 15px 25px;
+ font-size: $font-10;
+ font-weight: $font-700;
+ text-transform: $font-uppercase;
+ background-color: $white;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ border-top: 1px solid $border-color;
+ border-radius: 0 0 $radius-md $radius-md;
+}
+
+/*
+<--!----------------------------------------------------------------!-->
+<--! Password Generator !-->
+<--!----------------------------------------------------------------!-->
+*/
+.generate-pass {
+ .field {
+ .show-pass {
+ width: 45px;
+ position: relative;
+ &:before {
+ top: 13px;
+ left: 16.5px;
+ content: "\e95f";
+ position: absolute;
+ font-family: feather !important;
+ }
+ }
+ }
+ div.progress-bar {
+ display: flex;
+ align-items: center;
+ flex-direction: row;
+ justify-content: space-between;
+ div {
+ width: 23%;
+ height: 4px;
+ border-radius: 25px;
+ background-color: darken($gray-100, 1);
+ }
+ }
+}
+
+/*
+<--!----------------------------------------------------------------!-->
+<--! Card Radio Select !-->
+<--!----------------------------------------------------------------!-->
+*/
+.card-input-element {
+ margin-left: 25px;
+ margin-bottom: -25px;
+}
+.card-input-element + .card {
+ color: $primary;
+ box-shadow: none;
+ border-radius: $radius-sm;
+ border: 1px dashed $border-color-2;
+ transition: all 0.3s ease;
+ .avatar-text {
+ color: $brand-dark;
+ transition: all 0.3s ease;
+ }
+ h6,
+ .text-muted {
+ transition: all 0.3s ease;
+ }
+}
+
+.card-input-element + .card:hover {
+ cursor: pointer;
+}
+
+.card-input-element:checked + .card {
+ border: 1px dashed $success;
+ transition: border 0.3s;
+ .avatar-text {
+ color: $success;
+ border: 1px dashed $success;
+ transition: all 0.3s ease;
+ }
+ h6,
+ .text-muted {
+ color: $success !important;
+ transition: all 0.3s ease;
+ }
+}
+
+.card-input-element:checked + .card::after {
+ content: "\e92b";
+ color: $success;
+ font-size: 24px;
+ font-family: "feather";
+ animation-name: fadeInCheckbox;
+ animation-duration: 0.5s;
+ animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
+}
+
+@-webkit-keyframes fadeInCheckbox {
+ from {
+ opacity: 0;
+ -webkit-transform: rotateZ(-20deg);
+ }
+ to {
+ opacity: 1;
+ -webkit-transform: rotateZ(0deg);
+ }
+}
+
+@keyframes fadeInCheckbox {
+ from {
+ opacity: 0;
+ transform: rotateZ(-20deg);
+ }
+ to {
+ opacity: 1;
+ transform: rotateZ(0deg);
+ }
+}
+
+/*
+<--!----------------------------------------------------------------!-->
+<--! File Upload !-->
+<--!----------------------------------------------------------------!-->
+*/
+.custom-file-upload {
+ width: 100%;
+ cursor: pointer;
+ padding: 25px 25px;
+ background: $gray-100;
+ display: inline-block;
+ border-radius: $radius-sm;
+ border: 1px dashed $border-color-2;
+}
diff --git a/dasena-web/public/assets/admin/scss/themes/components/_modal.scss b/dasena-web/public/assets/admin/scss/themes/components/_modal.scss
new file mode 100644
index 0000000..1a41a1f
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/themes/components/_modal.scss
@@ -0,0 +1,33 @@
+/*
+<--!----------------------------------------------------------------!-->
+<--! Modal SCSS Start !-->
+<--!----------------------------------------------------------------!-->
+*/
+body.modal-open {
+ .nxl-header,
+ .nxl-navigation,
+ .page-header,
+ .nxl-container {
+ filter: blur(3px);
+ transition: all 0.2s linear;
+ }
+}
+.fade-scale {
+ opacity: 0;
+ transform: scale(0.9);
+ transition: all 0.2s linear;
+ &.show {
+ opacity: 1;
+ transform: scale(1);
+ transition: all 0.2s linear;
+ }
+}
+.modal {
+ .modal-content {
+ border-radius: $radius-md;
+ }
+}
+.modal-backdrop {
+ background-color: #022142;
+ transition: all 0.2s linear;
+}
diff --git a/dasena-web/public/assets/admin/scss/themes/components/_navs-tabs.scss b/dasena-web/public/assets/admin/scss/themes/components/_navs-tabs.scss
new file mode 100644
index 0000000..bdd204d
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/themes/components/_navs-tabs.scss
@@ -0,0 +1,30 @@
+/*
+<--!----------------------------------------------------------------!-->
+<--! Navs-Tabs !-->
+<--!----------------------------------------------------------------!-->
+*/
+.nav-tabs-wrapper {
+ height: 65px;
+ display: flex;
+ justify-content: space-between;
+ .nav-tabs-custom-style {
+ border-bottom: none;
+ .nav-item {
+ .nav-link {
+ padding: 20px 25px;
+ color: $brand-dark;
+ font-weight: $font-600;
+ border-radius: $radius-none;
+ border-bottom: 3px solid transparent;
+ border-top: none;
+ &.hover,
+ &.active {
+ color: $primary;
+ border-bottom: 3px solid $primary;
+ background-color: $bg-soft-primary;
+ transition: all 0.3s ease;
+ }
+ }
+ }
+ }
+}
diff --git a/dasena-web/public/assets/admin/scss/themes/components/_offcanvas.scss b/dasena-web/public/assets/admin/scss/themes/components/_offcanvas.scss
new file mode 100644
index 0000000..3e6879f
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/themes/components/_offcanvas.scss
@@ -0,0 +1,10 @@
+/*
+<--!----------------------------------------------------------------!-->
+<--! Offcanvas !-->
+<--!----------------------------------------------------------------!-->
+*/
+.offcanvas {
+ &.offcanvas-end {
+ border-color: $border-color !important;
+ }
+}
diff --git a/dasena-web/public/assets/admin/scss/themes/components/_search.scss b/dasena-web/public/assets/admin/scss/themes/components/_search.scss
new file mode 100644
index 0000000..ff0ace5
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/themes/components/_search.scss
@@ -0,0 +1,44 @@
+/*
+<--!----------------------------------------------------------------!-->
+<--! Search SCSS Start !-->
+<--!----------------------------------------------------------------!-->
+*/
+#searchModal {
+ .search-form {
+ .input-group-text,
+ .search-input-field {
+ border: none;
+ padding: 25px 10px;
+ background: $white;
+ &:focus,
+ &:active {
+ box-shadow: none;
+ }
+ }
+ .input-group-text {
+ .btn-close {
+ opacity: 1;
+ position: relative;
+ background: transparent;
+ &:after {
+ content: "Esc";
+ position: absolute;
+ top: 0.4rem;
+ right: 0.4rem;
+ height: 1.5rem;
+ padding-right: 6px;
+ padding-left: 6px;
+ font-size: $font-11;
+ color: $brand-dark;
+ font-weight: $font-500;
+ text-transform: $font-uppercase;
+ border-radius: $radius-sm;
+ border: 1px solid $border-color;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ }
+ }
+ }
+ }
+}
diff --git a/dasena-web/public/assets/admin/scss/themes/components/_table.scss b/dasena-web/public/assets/admin/scss/themes/components/_table.scss
new file mode 100644
index 0000000..a59d8e0
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/themes/components/_table.scss
@@ -0,0 +1,121 @@
+/*
+<--!----------------------------------------------------------------!-->
+<--! Tables !-->
+<--!----------------------------------------------------------------!-->
+*/
+.table-responsive {
+ .table {
+ color: $brand-dark;
+ margin-top: 0 !important;
+ margin-bottom: 0 !important;
+ border-color: $border-color;
+ vertical-align: middle;
+ &:not(caption) > * {
+ border-color: $border-color !important;
+ }
+ thead {
+ th {
+ /* border-top: 1px solid $border-color; */
+ border-bottom: 1px solid $border-color;
+ }
+ }
+ thead,
+ tfoot {
+ th {
+ padding: 8px 15px;
+ color: $brand-dark;
+ font-size: $font-10;
+ font-weight: $font-700;
+ text-transform: $font-uppercase;
+ &:first-child {
+ padding-left: 30px;
+ }
+ &:last-child {
+ padding-right: 30px;
+ }
+ }
+ }
+ tbody {
+ tr {
+ &:last-child * {
+ border-bottom: transparent;
+ }
+ }
+ }
+ tr {
+ td {
+ padding: 15px 15px;
+ white-space: nowrap;
+ vertical-align: middle;
+ &:first-child {
+ padding-left: 30px;
+ }
+ &:last-child {
+ padding-right: 30px;
+ }
+ }
+ }
+ &.table-dark {
+ border-color: $black !important;
+ tr,
+ td,
+ th {
+ color: $gray-600;
+ border-color: $dark;
+ }
+ }
+ &.table-striped > tbody > tr:nth-of-type(odd) > *,
+ &.table-hover > tbody > tr:hover > * {
+ --bs-table-accent-bg: rgb(244 244 249);
+ }
+ }
+ table.dataTable {
+ &.table-hover {
+ > tbody > tr:hover > * {
+ box-shadow: none;
+ transition: all 0.3s ease;
+ background-color: lighten($gray-100, 1);
+ }
+ }
+ tbody {
+ > tr {
+ &.selected > * {
+ color: $dark;
+ box-shadow: inset 0 0 0 #eeeef5;
+ a {
+ color: $dark;
+ }
+ }
+ }
+ }
+ }
+ div.dataTables_wrapper {
+ div.dataTables_filter,
+ div.dataTables_length {
+ input,
+ select {
+ padding: 8px 15px;
+ }
+ }
+ }
+ .dataTables_paginate {
+ .page-link {
+ color: $dark;
+ font-size: $font-12;
+ box-shadow: none !important;
+ border-color: darken($gray-100, 1);
+ }
+ .active > .page-link,
+ .page-link.active {
+ color: $white !important;
+ background-color: $primary;
+ }
+ .disabled > .page-link,
+ .page-link.disabled {
+ color: $gray-400;
+ }
+ }
+ div.dataTables_info {
+ font-size: $font-11;
+ }
+}
diff --git a/dasena-web/public/assets/admin/scss/themes/layouts/_nxl-common.scss b/dasena-web/public/assets/admin/scss/themes/layouts/_nxl-common.scss
new file mode 100644
index 0000000..fd29d63
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/themes/layouts/_nxl-common.scss
@@ -0,0 +1,477 @@
+/*
+<--!----------------------------------------------------------------!-->
+<--! Common SCSS Start !-->
+<--!----------------------------------------------------------------!-->
+*/
+.nxl-container {
+ position: relative;
+ top: $header-height;
+ margin-left: $navigation-width;
+ min-height: calc(100vh - #{$header-height});
+ transition: all 0.3s ease;
+
+ .nxl-content {
+ &.without-header {
+ padding-top: 0px;
+ }
+
+ &.nxl-full-content {
+ .main-content {
+ padding: 0px;
+ }
+ }
+
+ .main-content {
+ overflow-x: hidden;
+ padding: 30px 30px 5px;
+
+ .content-sidebar,
+ .content-area {
+ width: 100%;
+ height: 100vh;
+ position: relative;
+ }
+
+ .content-sidebar {
+ overflow-y: auto;
+ background-color: $white;
+ border-right: 1px solid $border-color;
+
+ .content-sidebar-header {
+ height: 75px;
+ padding: 25px 30px;
+ border-bottom: 1px solid $border-color;
+ display: flex;
+ align-items: center;
+ }
+ }
+
+ .content-area {
+ .content-area-header {
+ height: 75px;
+ padding: 25px 30px;
+ background-color: $white;
+ border-bottom: 1px solid $border-color;
+ gap: 15px;
+ display: flex;
+ align-items: center;
+
+ .search-form {
+ &.search-form-active {
+ display: block;
+ }
+
+ .search-form-inner {
+ top: 0;
+ left: 0;
+ right: 0;
+ bottom: 0;
+ gap: 25px;
+ z-index: 1;
+ width: 100%;
+ display: flex;
+ padding: 0 25px;
+ position: absolute;
+ align-items: center;
+ background-color: $white;
+ }
+ }
+ }
+
+ .content-area-body {
+ padding: 30px 30px;
+ }
+ }
+ }
+ }
+
+ .page-header+.nxl-content {
+ padding-top: calc(30px + 65px);
+ }
+
+ .page-header {
+ .page-header-right {
+ .reportrange-picker {
+ cursor: pointer;
+ width: max-content;
+
+ .reportrange-picker-field {
+ color: $brand-dark;
+ padding: 10px 15px;
+ font-size: $font-12;
+ font-weight: $font-500;
+ text-transform: $font-uppercase;
+ border: 1px solid $border-color-2;
+ border-radius: $radius-sm;
+ }
+ }
+ }
+
+ .filter-btn {
+ cursor: pointer;
+ gap: 10px;
+ display: flex;
+ align-items: center;
+ padding: 9px 15px 8px;
+ border-radius: $radius-sm;
+ border: 1px solid $border-color-2;
+ }
+ }
+
+ .page-header-collapse {
+ .accordion-body {
+ padding: 30px 30px;
+ background-color: $white;
+ border-bottom: 1px solid $border-color;
+ }
+ }
+
+ .footer {
+ padding: 20px 30px;
+ display: flex;
+ align-items: center;
+ justify-content: space-between;
+ background-color: $white;
+ border-top: 1px solid $border-color;
+ }
+}
+
+.minimenu {
+ .nxl-container {
+ margin-left: $navigation-collapsed-width;
+ }
+
+ .page-header {
+ left: $navigation-collapsed-width;
+ }
+}
+
+.page-header {
+ display: flex;
+ align-items: center;
+ top: $header-height;
+ left: $navigation-width;
+ right: 0;
+ z-index: 1023;
+ min-height: 65px;
+ padding: 0 30px;
+ background: $white;
+ box-shadow: $card-shadow;
+
+ .page-block {
+ width: calc(100% - 50%);
+ }
+
+ .page-header-title {
+ display: inline-block;
+ }
+
+ h5 {
+ margin-bottom: 0;
+ margin-right: 8px;
+ padding-right: 10px;
+ color: $brand-dark;
+ font-weight: $font-600;
+ border-right: 1px solid darken($body-bg, 10%);
+ }
+
+ .breadcrumb {
+ padding: 0;
+ display: inline-flex;
+ margin-bottom: 0;
+ background: transparent;
+ font-size: 13px;
+ color: $brand-muted;
+ font-weight: $font-800;
+
+ a {
+ color: $brand-dark;
+ }
+
+ .breadcrumb-item {
+ a:hover {
+ color: $primary;
+ }
+
+ +.breadcrumb-item::before {
+ position: relative;
+ top: 2px;
+ }
+
+ &:last-child {
+ opacity: 0.75;
+ font-weight: $font-400;
+ }
+ }
+
+ svg {
+ width: 14px;
+ height: 14px;
+ vertical-align: baseline;
+ }
+ }
+}
+
+.upgrade-card {
+ .card-body {
+ padding-bottom: 100px;
+ z-index: 1;
+ position: relative;
+ }
+
+ >.container {
+ z-index: 5;
+ position: relative;
+ margin-top: -60px;
+ }
+
+ .up-price-table {
+ td {
+ border-color: $body-bg;
+ }
+
+ th {
+ border: none;
+
+ +th {
+ border-radius: 5px 5px 0 0;
+ padding: 20px 0;
+ }
+ }
+
+ tbody {
+ tr {
+ &:first-child td {
+ border-top: none;
+ }
+ }
+ }
+
+ td,
+ th {
+ text-align: right;
+
+ +td,
+ +th {
+ text-align: center;
+ }
+
+ +td {
+ border-left: 1px solid $body-bg;
+ }
+ }
+ }
+}
+
+// Burgur menu start
+.hamburger {
+ display: inline-block;
+ cursor: pointer;
+ transition: filter 0.15s linear;
+ width: 20px;
+ height: 20px;
+
+ &.is-active {
+ .hamburger-inner {
+ background-color: #000;
+
+ &::after,
+ &::before {
+ background-color: #000;
+ }
+ }
+ }
+}
+
+.hamburger-inner {
+ display: block;
+ top: 50%;
+ margin-top: -2px;
+ width: 18px;
+ height: 2px;
+ background-color: $header-color;
+ border-radius: 4px;
+ position: absolute;
+ transition: transform 0.15s ease;
+
+ &::after,
+ &::before {
+ width: 18px;
+ height: 2px;
+ background-color: $header-color;
+ border-radius: 4px;
+ position: absolute;
+ transition: transform 0.15s ease;
+ }
+
+ &::after,
+ &::before {
+ content: "";
+ display: block;
+ }
+
+ &::before {
+ top: -6px;
+ }
+
+ &::after {
+ bottom: -6px;
+ }
+}
+
+.hamburger--arrowturn.is-active .hamburger-inner {
+ transform: rotate(-180deg);
+}
+
+.hamburger--arrowturn.is-active .hamburger-inner::before {
+ transform: translate3d(4px, 2px, 0) rotate(45deg) scale(0.7, 1);
+}
+
+.hamburger--arrowturn.is-active .hamburger-inner::after {
+ transform: translate3d(4px, -2px, 0) rotate(-45deg) scale(0.7, 1);
+}
+
+// Burgur menu End
+.ps {
+ touch-action: auto;
+ overflow-anchor: none;
+ overflow: hidden !important;
+}
+
+.ps__rail-x {
+ display: none;
+ opacity: 0;
+ height: 15px;
+ bottom: 0;
+ position: absolute;
+ transition: background-color 0.2s linear, opacity 0.2s linear;
+}
+
+.ps__rail-y {
+ right: 0;
+ opacity: 0;
+ width: 15px;
+ display: none;
+ position: absolute;
+ transition: background-color 0.2s linear, opacity 0.2s linear;
+}
+
+.ps--active-x>.ps__rail-x,
+.ps--active-y>.ps__rail-y {
+ display: block;
+ background-color: transparent;
+}
+
+.ps:hover> {
+
+ .ps__rail-x,
+ .ps__rail-y {
+ opacity: 0.6;
+ }
+}
+
+.ps--focus> {
+
+ .ps__rail-x,
+ .ps__rail-y {
+ opacity: 0.6;
+ }
+}
+
+.ps--scrolling-x>.ps__rail-x,
+.ps--scrolling-y>.ps__rail-y {
+ opacity: 0.6;
+}
+
+.ps {
+
+ .ps__rail-x.ps--clicking,
+ .ps__rail-x:focus,
+ .ps__rail-x:hover,
+ .ps__rail-y.ps--clicking,
+ .ps__rail-y:focus,
+ .ps__rail-y:hover {
+ opacity: 0.9;
+ background-color: #eee;
+ }
+}
+
+.ps__thumb-x {
+ height: 6px;
+ bottom: 2px;
+ border-radius: 6px;
+ position: absolute;
+ background-color: #aaa;
+ transition: background-color 0.2s linear, height 0.2s ease-in-out;
+}
+
+.ps__thumb-y {
+ width: 6px;
+ right: 2px;
+ position: absolute;
+ border-radius: 6px;
+ background-color: #aaa;
+ transition: background-color 0.2s linear, width 0.2s ease-in-out;
+}
+
+.ps__rail-x {
+
+ &.ps--clicking .ps__thumb-x,
+ &:focus>.ps__thumb-x,
+ &:hover>.ps__thumb-x {
+ height: 10px;
+ background-color: #999;
+ }
+}
+
+.ps__rail-y {
+
+ &.ps--clicking .ps__thumb-y,
+ &:focus>.ps__thumb-y,
+ &:hover>.ps__thumb-y {
+ width: 10px;
+ background-color: #999;
+ }
+}
+
+@supports (-ms-overflow-style: none) {
+ .ps {
+ overflow: auto !important;
+ }
+}
+
+@media screen and (-ms-high-contrast: active),
+(-ms-high-contrast: none) {
+ .ps {
+ overflow: auto !important;
+ }
+}
+
+.navbar-content {
+ position: relative;
+}
+
+.ps__rail-y {
+ z-index: 5;
+}
+
+.ps .ps__rail-x.ps--clicking,
+.ps .ps__rail-x:focus,
+.ps .ps__rail-x:hover,
+.ps .ps__rail-y.ps--clicking,
+.ps .ps__rail-y:focus,
+.ps .ps__rail-y:hover {
+ background: transparent;
+}
+
+.ps__thumb-y {
+ background: $gray-400;
+}
+
+.ps__rail-y.ps--clicking .ps__thumb-y,
+.ps__rail-y:focus>.ps__thumb-y,
+.ps__rail-y:hover>.ps__thumb-y {
+ background: $gray-500;
+}
+
+// Common layout css end
\ No newline at end of file
diff --git a/dasena-web/public/assets/admin/scss/themes/layouts/_nxl-header.scss b/dasena-web/public/assets/admin/scss/themes/layouts/_nxl-header.scss
new file mode 100644
index 0000000..af188ae
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/themes/layouts/_nxl-header.scss
@@ -0,0 +1,630 @@
+/*
+<--!----------------------------------------------------------------!-->
+<--! Header CSS Start !-->
+<--!----------------------------------------------------------------!-->
+*/
+.nxl-header {
+ right: 0;
+ z-index: 1025;
+ position: fixed;
+ left: $navigation-width;
+ color: $brand-light;
+ background: $white;
+ min-height: $header-height;
+ border-bottom: 1px solid $border-color;
+
+ .header-wrapper {
+ display: flex;
+ padding: 0 30px;
+
+ ul {
+ margin-bottom: 0;
+ display: inline-flex;
+ }
+
+ .nxl-lavel-mega-menu-toggle,
+ .nxl-navigation-toggle {
+ line-height: normal;
+
+ a {
+ color: $brand-dark;
+ }
+
+ i {
+ line-height: 1;
+ font-size: $font-24;
+
+ &.feather-arrow-left {
+ font-size: $font-20;
+ }
+ }
+ }
+
+ .nxl-h-item {
+ min-height: 79px;
+ display: flex;
+ align-items: center;
+ position: relative;
+ }
+
+ .nxl-head-link {
+ margin-left: 3px;
+ padding: 12px 12px;
+ position: relative;
+ display: flex;
+ align-items: center;
+ font-weight: $font-500;
+ color: $header-link-color;
+ border-radius: $radius-circle;
+
+ >i {
+ font-size: $font-20;
+ }
+
+ &.active,
+ &:active,
+ &:focus,
+ &:hover {
+ color: $primary;
+ text-decoration: none;
+ background: $brand-light;
+
+ .hamburger {
+ .hamburger-inner {
+ background-color: $primary;
+
+ &::after,
+ &::before {
+ background-color: $primary;
+ }
+ }
+ }
+ }
+
+ &.nxl-language-link {
+ padding: 15px 12px;
+ }
+
+ .nxl-h-badge {
+ position: absolute;
+ top: 0px;
+ right: 5px;
+ font-size: $font-9;
+ border-radius: $radius-circle;
+
+ &.dots {
+ top: 8px;
+ right: 12px;
+ padding: 0;
+ width: 8px;
+ height: 8px;
+ }
+ }
+ }
+
+ .nxl-h-dropdown {
+ width: 225px;
+ top: 100% !important;
+ transition: all 0.3s ease-in-out;
+
+ &.dropdown-menu-end {
+ right: 0 !important;
+ left: auto !important;
+ }
+
+ &.nxl-user-dropdown {
+ width: 300px;
+ }
+
+ .dropdown-header {
+ margin-bottom: 10px;
+ padding-bottom: 20px;
+ padding-left: 25px;
+ padding-right: 25px;
+ border-bottom: 1px solid $border-color;
+ }
+
+ .dropdown-item {
+ margin: 0 10px;
+ border-radius: $radius-sm;
+ width: -webkit-fill-available;
+ }
+
+ .fa-circle {
+ font-size: $font-5;
+ vertical-align: middle;
+ }
+ }
+
+ .nxl-level-menu {
+ position: relative;
+
+ &:hover {
+ >.dropdown-menu {
+ left: 100%;
+ display: block;
+ top: 0px !important;
+ transition: all 0.3s ease-in-out;
+ }
+ }
+ }
+
+ .nxl-mega-menu {
+ position: static;
+ transition: all 0.3s ease-in-out;
+
+ .nxl-h-dropdown {
+ left: 30px;
+ width: 576px;
+ max-width: 100%;
+ padding: 0px 0px;
+
+ &.nxl-mega-menu-sm {
+ width: 576px;
+ max-width: 100%;
+ }
+
+ &.nxl-mega-menu-md {
+ width: 768px;
+ max-width: 100%;
+ }
+
+ &.nxl-mega-menu-lg {
+ width: 992px;
+ max-width: 100%;
+ }
+
+ &.nxl-mega-menu-xl {
+ width: 1200px;
+ max-width: 100%;
+ }
+
+ &.nxl-mega-menu-xxl {
+ width: 1400px;
+ max-width: 100%;
+ }
+
+ &.nxl-mega-menu-full {
+ width: 100%;
+ max-width: 100%;
+ left: 0 !important;
+ right: 0 !important;
+ }
+
+ .nxl-mega-menu-tabs {
+ width: 250px;
+ min-width: 250px;
+ max-width: 100%;
+ padding: 25px 25px;
+
+ .nav-link {
+ border: none;
+ margin-bottom: 5px;
+ padding: 10px 15px;
+ text-align: left;
+ color: $brand-dark;
+ font-size: $font-body;
+ font-weight: $font-700;
+ background-color: $white;
+ border-radius: $radius-sm;
+ transition: all 0.3s ease;
+ display: flex;
+ align-items: center;
+
+ &.active {
+ color: $darken;
+ background-color: $brand-light;
+ transition: all 0.3s ease;
+ }
+
+ .menu-icon {
+ margin-right: 10px;
+ flex-shrink: 0;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+
+ i {
+ font-size: $font-15;
+ }
+ }
+
+ .menu-title {
+ flex-grow: 1;
+ display: flex;
+ align-items: center;
+ }
+
+ .menu-arrow {
+ margin-left: 5px;
+ overflow: hidden;
+ position: relative;
+ display: flex;
+ flex-shrink: 0;
+ align-items: stretch;
+ }
+ }
+ }
+
+ .nxl-mega-menu-tabs-content {
+ width: 100%;
+ padding: 30px 30px;
+ border-left: 1px solid $border-color;
+
+ .dropdown-item-title {
+ color: $darken;
+ padding: 0 15px 5px;
+ }
+
+ .dropdown-item {
+ margin: 0 0;
+ }
+
+ .menu-item-heading {
+ font-size: $font-body;
+ }
+
+ .nxl-mega-menu-image {
+ margin: auto auto;
+ text-align: center;
+ border-radius: $radius-lg;
+ background-color: $brand-light;
+
+ img {
+ width: 100%;
+ border-radius: $radius-lg;
+
+ &.full-user-avtar {
+ width: auto;
+ height: 275px;
+ padding: 25px 25px;
+ }
+ }
+ }
+
+ .nxl-mega-menu-integrations,
+ .nxl-mega-menu-resources-right {
+ .dropdown-item {
+ display: flex;
+ align-items: center;
+ margin-bottom: 5px;
+ border: 1px dashed $border-color;
+ transition: all 0.3s ease;
+
+ .menu-item-icon {
+ width: 15px;
+ margin-right: 10px;
+ flex-shrink: 0;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+
+ i {
+ font-size: $font-15;
+ }
+ }
+
+ .menu-item-title {
+ flex-grow: 1;
+ display: flex;
+ align-items: center;
+ }
+
+ .menu-item-arrow {
+ margin-left: 5px;
+ overflow: hidden;
+ position: relative;
+ display: flex;
+ flex-shrink: 0;
+ align-items: stretch;
+
+ i {
+ margin-right: 0px;
+ }
+ }
+ }
+ }
+
+ .nxl-mega-menu-resources {
+
+ .dropdown-item-title,
+ .dropdown-item {
+ margin-bottom: 15px;
+ }
+
+ .dropdown-item:last-child {
+ margin-bottom: 0px;
+ }
+
+ .carousel-inner {
+ .carousel-item {
+ .carousel-caption {
+ .carousel-caption-title {
+ color: $white;
+ }
+
+ .carousel-caption-desc {
+ color: $white;
+ font-size: $font-12;
+ }
+ }
+ }
+ }
+ }
+
+ .nxl-mega-menu-miscellaneous {
+ margin-top: -30px;
+ margin-left: -30px;
+ margin-right: -30px;
+
+ .nxl-mega-menu-miscellaneous-tabs {
+ width: 100%;
+ margin-bottom: 25px;
+
+ .nav-item {
+ .nav-link {
+ border: none;
+ text-align: left;
+ color: $brand-dark;
+ font-size: $font-body;
+ font-weight: $font-700;
+ padding: 15px 25px;
+ border-radius: $radius-none;
+ border-right: 1px solid $border-color;
+ border-bottom: 1px solid $border-color;
+ transition: all 0.3s ease;
+ display: flex;
+ align-items: center;
+
+ &:first-child {
+ margin-left: 0;
+ }
+
+ &.active {
+ color: $primary;
+ border-bottom: 1px solid $primary;
+ }
+
+ .menu-icon {
+ width: 15px;
+ margin-right: 10px;
+ flex-shrink: 0;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+
+ i {
+ font-size: $font-15;
+ }
+ }
+
+ .menu-title {
+ flex-grow: 1;
+ display: flex;
+ align-items: center;
+ }
+ }
+ }
+ }
+
+ .nxl-mega-menu-miscellaneous-content {
+ padding: 15px 30px;
+
+ .nxl-mega-menu-miscellaneous-services,
+ .nxl-mega-menu-miscellaneous-features {
+ i {
+ font-size: $font-16;
+ }
+ }
+ }
+ }
+ }
+
+ .carousel-inner {
+ .carousel-item {
+ .carousel-caption {
+ .carousel-caption-title {
+ color: $white;
+ }
+
+ .carousel-caption-desc {
+ color: $white;
+ font-size: $font-12;
+ }
+ }
+ }
+ }
+ }
+ }
+
+ .nxl-header-search {
+ .nxl-search-dropdown {
+ width: 425px;
+ padding-top: 0;
+ overflow-x: hidden;
+ max-height: calc(100vh - 150px);
+
+ .search-form {
+ padding: 7px 10px;
+
+ .input-group-text,
+ .search-input-field {
+ border: none;
+ padding: 15px 10px;
+ background: $white;
+
+ &:focus,
+ &:active {
+ box-shadow: none;
+ }
+ }
+
+ .input-group-text {
+ .btn-close {
+ opacity: 1;
+ position: relative;
+ background: transparent;
+
+ &:after {
+ content: "Esc";
+ position: absolute;
+ top: 0;
+ right: 0;
+ height: 1.35rem;
+ padding-left: 6px;
+ padding-right: 6px;
+ font-size: $font-9;
+ color: $brand-dark;
+ font-weight: $font-700;
+ text-transform: $font-uppercase;
+ letter-spacing: $text-spacing-sm;
+ border-radius: $radius-sm;
+ border: 1px solid $border-color;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ }
+ }
+ }
+ }
+
+ .search-items-wrapper {
+ max-height: 415px;
+ }
+ }
+ }
+
+ .nxl-header-language {
+ .nxl-language-dropdown {
+ width: 425px;
+ padding-top: 0;
+ overflow-x: hidden;
+ max-height: calc(100vh - 150px);
+
+ .language_select {
+ a {
+ color: $dark;
+ padding: 10px;
+ margin-bottom: 10px;
+ font-size: $font-12;
+ border-radius: $radius-sm;
+ border: 1px dashed $border-color;
+ transition: all 0.3s ease;
+
+ &:hover {
+ background-color: $brand-light;
+ }
+ }
+
+ &.active {
+ a {
+ position: relative;
+
+ &:before {
+ top: 0;
+ left: 0;
+ right: 0;
+ bottom: 0;
+ width: 100%;
+ height: 100%;
+ z-index: 9999;
+ content: "✓";
+ color: $primary;
+ position: absolute;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ background-color: $brand-light;
+ }
+ }
+ }
+ }
+ }
+ }
+
+ .nxl-timesheets-menu {
+ padding: 0;
+ min-width: 20rem;
+
+ .timesheets-head {
+ padding: 20px;
+ border-radius: 2px 2px 0 0;
+ border-bottom: 1px solid $border-color;
+ }
+
+ .timesheets-body {
+ padding: 30px 20px;
+ }
+
+ .timesheets-footer {
+ padding: 15px 20px;
+ border-radius: 0 0 2px 2px;
+ border-top: 1px solid $border-color;
+ }
+ }
+
+ .nxl-notifications-menu {
+ padding: 0;
+ min-width: 20rem;
+
+ .notifications-head {
+ padding: 20px;
+ border-radius: 2px 2px 0 0;
+ border-bottom: 1px solid $border-color;
+ }
+
+ .notifications-item {
+ display: flex;
+ cursor: pointer;
+ padding: 15px 20px;
+ transition: all 0.3s ease;
+
+ +.notifications-item {
+ border-top: 1px dashed $border-color;
+ }
+
+ img {
+ width: 60px;
+ height: 60px;
+ }
+
+ .notifications-desc {
+ flex: 1;
+
+ .text-body {
+ color: $brand-dark !important;
+ margin-bottom: 5px;
+ font-size: $font-13;
+ font-weight: $font-400;
+ }
+ }
+
+ .notifications-date {
+ font-size: $font-11;
+ }
+ }
+
+ .notifications-footer {
+ padding: 15px 20px;
+ border-radius: 0 0 2px 2px;
+ border-top: 1px solid $border-color;
+ }
+ }
+
+ .user-avtar {
+ width: 40px;
+ margin-right: 15px;
+ border-radius: 50%;
+ }
+ }
+}
+
+html {
+ &.minimenu {
+ .nxl-header {
+ left: $navigation-collapsed-width;
+ }
+ }
+}
+
+// header css end
\ No newline at end of file
diff --git a/dasena-web/public/assets/admin/scss/themes/layouts/_nxl-navigation.scss b/dasena-web/public/assets/admin/scss/themes/layouts/_nxl-navigation.scss
new file mode 100644
index 0000000..7bb31e1
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/themes/layouts/_nxl-navigation.scss
@@ -0,0 +1,361 @@
+/*
+<--!----------------------------------------------------------------!-->
+<--! Navigarion CSS Start !-->
+<--!----------------------------------------------------------------!-->
+*/
+.nxl-navigation {
+ top: 0;
+ bottom: 0;
+ z-index: 1026;
+ position: fixed;
+ background: $white;
+ width: $navigation-width;
+ transition: all 0.3s ease;
+
+ .m-header {
+ z-index: 1;
+ overflow: hidden;
+ position: relative;
+ display: flex;
+ padding: 15px 30px;
+ align-items: center;
+ height: $header-height;
+ background: $white;
+ border-right: 1px solid $border-color;
+ border-bottom: 1px solid $border-color;
+
+ .logo-sm {
+ display: none;
+ }
+ }
+
+ .navbar-content {
+ padding: 10px 0;
+ position: relative;
+ border-right: 1px solid $border-color;
+ height: calc(100vh - #{$header-height});
+
+ ul {
+ list-style: none;
+ padding-left: 0;
+ margin-bottom: 0;
+ }
+
+ .nxl-caption {
+ display: block;
+ color: $brand-muted;
+ font-size: $font-10;
+ font-weight: $font-700;
+ letter-spacing: 0.07em;
+ padding: 15px 20px 10px;
+ text-transform: uppercase;
+
+ label {
+ margin-bottom: 0;
+ }
+
+ span:not(.badge) {
+ display: block;
+ color: #67758a;
+ text-transform: $font-capitalize;
+
+ font: {
+ size: 10px;
+ weight: 500;
+ }
+ }
+ }
+
+ .nxl-micon {
+ margin-right: 12px;
+ display: inline-block;
+ vertical-align: middle;
+
+ i {
+ font-size: 18px;
+ }
+ }
+
+ .nxl-link {
+ display: block;
+ line-height: 1.2;
+ padding: 10px 15px;
+ font-size: $font-13;
+ color: $brand-dark;
+ font-weight: $font-600;
+ transition: all 0.3s ease;
+
+ &.active,
+ &:hover {
+ text-decoration: none;
+ color: $brand-dark;
+ transition: all 0.3s ease;
+
+ .nxl-micon {
+ i {
+ color: $brand-dark;
+ transition: all 0.3s ease;
+ }
+ }
+ }
+ }
+
+ .nxl-arrow {
+ float: right;
+ //display: inline-block;
+ transition: all 0.2s ease-in-out;
+ }
+
+ .nxl-badge {
+ margin-left: 8px;
+ }
+
+ .nxl-submenu {
+ .nxl-link {
+ font-size: 0.8rem;
+ padding: 10px 20px;
+ margin-left: 35px !important;
+ margin-right: 5px !important;
+ }
+
+ .nxl-submenu {
+ .nxl-link {
+ margin-left: 45px !important;
+ }
+
+ .nxl-submenu {
+ .nxl-link {
+ margin-left: 55px !important;
+ }
+ }
+ }
+ }
+
+ .nxl-item {
+ &.disabled {
+ a {
+ cursor: not-allowed;
+ user-select: none;
+ }
+ }
+
+ &.active,
+ &:hover {
+ >.nxl-link {
+ color: $darken;
+ background-color: $brand-light;
+ transition: all 0.3s ease;
+
+ .nxl-micon {
+ i {
+ color: $darken;
+ transition: all 0.3s ease;
+ }
+ }
+ }
+ }
+ }
+
+ .nxl-navbar {
+ >.nxl-item {
+
+ &.active,
+ &:hover {
+ >.nxl-link {
+ color: $darken;
+ background-color: $brand-light;
+ transition: all 0.3s ease;
+ }
+ }
+ }
+ }
+
+ .nxl-hasmenu {
+ &.nxl-trigger {
+ >.nxl-submenu {
+ display: block;
+ }
+
+ >.nxl-link {
+ >.nxl-arrow {
+ transform: rotate(90deg);
+ }
+ }
+ }
+ }
+
+ .card {
+ margin: 20px;
+ color: $brand-dark;
+ background: $gray-100;
+ border-color: $border-color;
+ }
+ }
+}
+
+.nxl-menu-overlay {
+ position: fixed;
+ top: 0;
+ left: 0;
+ width: 100vw;
+ height: 100vh;
+ z-index: 1;
+ background: rgba(0, 0, 0, 0.2);
+}
+
+html:not(.minimenu) {
+ .nxl-navigation {
+ .nxl-link {
+ margin: 3px 15px;
+ border-radius: 5px;
+ }
+
+ .nxl-submenu {
+ position: relative;
+
+ .nxl-item {
+ margin: 3px 10px;
+ border-radius: 5px;
+ }
+
+ .nxl-submenu {
+ >.nxl-item {
+ &:before {
+ left: 60px;
+ }
+ }
+
+ .nxl-submenu {
+ >.nxl-item {
+ &:before {
+ left: 80px;
+ }
+ }
+ }
+ }
+ }
+ }
+}
+
+html.minimenu {
+ .nxl-navigation {
+ width: $navigation-collapsed-width;
+ transition: all 0.3s ease;
+
+ .logo-sm {
+ width: 42px;
+ display: block;
+ transition: all 0.3s ease;
+ }
+
+ .logo-lg,
+ .nxl-mtext,
+ .nxl-arrow,
+ .card {
+ display: none;
+ transition: all 0.3s ease;
+ }
+
+ .navbar-content {
+ width: 100px;
+ transition: all 0.3s ease;
+
+ .nxl-link {
+ margin: 0 20px;
+ padding: 12px 20px;
+ border-radius: 6px 6px;
+ }
+
+ .nxl-hasmenu.nxl-trigger {
+ >.nxl-submenu {
+ display: none;
+ }
+ }
+
+ .nxl-caption {
+ position: relative;
+
+ &:before {
+ top: 0;
+ display: flex;
+ align-items: center;
+ width: 100%;
+ height: 100%;
+ font-size: 16px;
+ padding-left: 20px;
+ content: "\e9a4";
+ position: absolute;
+ font-family: feather !important;
+ }
+
+ label {
+ display: none;
+ }
+ }
+ }
+ }
+
+ /*minimenu-hover-expend*/
+ .nxl-navigation {
+ &:hover {
+ .navbar-content {
+ position: absolute !important;
+ width: $navigation-width;
+ background-color: $white;
+ border-right: 1px solid $border-color;
+ transition: all 0.3s ease;
+
+ .nxl-caption,
+ .nxl-mtext,
+ .nxl-arrow,
+ .card {
+ display: inline-block;
+ transition: all 0.3s ease;
+ }
+
+ .nxl-link {
+ margin: 0 15px;
+ margin-bottom: 3px;
+ padding: 10px 20px;
+ }
+
+ .nxl-submenu {
+ .nxl-link {
+ margin-bottom: 3px;
+ padding-left: 20px;
+ margin-left: 50px !important;
+ margin-right: 15px !important;
+ }
+
+ .nxl-submenu {
+ .nxl-link {
+ margin-left: 65px !important;
+ }
+
+ .nxl-submenu {
+ .nxl-link {
+ margin-left: 80px !important;
+ }
+ }
+ }
+ }
+
+ .nxl-hasmenu.nxl-trigger {
+ >.nxl-submenu {
+ display: block;
+ }
+ }
+
+ .nxl-caption {
+ &:before {
+ content: none;
+ }
+
+ label {
+ display: block;
+ }
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/dasena-web/public/assets/admin/scss/themes/layouts/_nxl-responsive.scss b/dasena-web/public/assets/admin/scss/themes/layouts/_nxl-responsive.scss
new file mode 100644
index 0000000..ee9e0ce
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/themes/layouts/_nxl-responsive.scss
@@ -0,0 +1,765 @@
+/*
+<--!----------------------------------------------------------------!-->
+<--! @media (min-width: 320px) !-->
+<--!----------------------------------------------------------------!-->
+*/
+@media (min-width: 320px) {
+}
+
+/*
+<--!----------------------------------------------------------------!-->
+<--! @media (min-width: 375px) !-->
+<--!----------------------------------------------------------------!-->
+*/
+@media (min-width: 375px) {
+}
+
+/*
+<--!----------------------------------------------------------------!-->
+<--! @media (min-width: 576px) !-->
+<--!----------------------------------------------------------------!-->
+*/
+@media (min-width: 576px) {
+ .nxl-user-dropdown {
+ .dropdown-menu.show {
+ display: block;
+ left: -225px !important;
+ top: -10px !important;
+ }
+ }
+}
+
+/*
+<--!----------------------------------------------------------------!-->
+<--! @media (min-width: 768px) !-->
+<--!----------------------------------------------------------------!-->
+*/
+@media (min-width: 768px) {
+}
+
+/*
+<--!----------------------------------------------------------------!-->
+<--! @media (min-width: 992px) !-->
+<--!----------------------------------------------------------------!-->
+*/
+@media (min-width: 992px) {
+}
+
+/*
+<--!----------------------------------------------------------------!-->
+<--! @media (min-width: 1024px) !-->
+<--!----------------------------------------------------------------!-->
+*/
+@media (min-width: 1024px) {
+ .nxl-head-mobile-toggler {
+ display: none;
+ }
+}
+
+/*
+<--!----------------------------------------------------------------!-->
+<--! @media (min-width: 1200px) !-->
+<--!----------------------------------------------------------------!-->
+*/
+@media (min-width: 1200px) {
+ .nxl-container {
+ &.apps-container {
+ .nxl-content {
+ &.without-header {
+ .main-content {
+ .app-sidebar-open-trigger,
+ .app-sidebar-close-trigger {
+ display: none !important ;
+ }
+ }
+ }
+ }
+ }
+ }
+}
+
+/*
+<--!----------------------------------------------------------------!-->
+<--! @media (min-width: 1400px) !-->
+<--!----------------------------------------------------------------!-->
+*/
+@media (min-width: 1400px) {
+}
+
+/*
+<--!----------------------------------------------------------------!-->
+<--! @media (min-width: 1600px) !-->
+<--!----------------------------------------------------------------!-->
+*/
+@media (min-width: 1600px) {
+}
+
+/*
+<--!----------------------------------------------------------------!-->
+<--! @media (max-width: 319.98px) !-->
+<--!----------------------------------------------------------------!-->
+*/
+@media (max-width: 319.98px) {
+}
+
+/*
+<--!----------------------------------------------------------------!-->
+<--! @media (max-width: 374.98px) !-->
+<--!----------------------------------------------------------------!-->
+*/
+@media (max-width: 374.98px) {
+}
+
+/*
+<--!----------------------------------------------------------------!-->
+<--! @media (max-width: 424.98px) !-->
+<--!----------------------------------------------------------------!-->
+*/
+@media (max-width: 424.98px) {
+ /*auth*/
+ .auth-container {
+ .wd-450 {
+ width: 350px !important;
+ min-width: 350px !important;
+ max-width: 350px !important;
+ }
+ }
+}
+
+/*
+<--!----------------------------------------------------------------!-->
+<--! @media (max-width: 575.98px) !-->
+<--!----------------------------------------------------------------!-->
+*/
+@media (max-width: 575.98px) {
+ .nxl-header {
+ .header-wrapper {
+ padding: 0 20px;
+ .nxl-h-item {
+ position: static;
+ .nxl-h-dropdown {
+ left: 0 !important;
+ right: 0 !important;
+ width: -webkit-fill-available;
+ }
+ }
+ .nxl-level-menu {
+ .dropdown-menu {
+ left: 0;
+ display: block;
+ padding-left: 30px;
+ }
+ }
+ }
+ }
+ .nxl-container {
+ .nxl-content {
+ .page-header {
+ padding: 0 20px;
+ /*
+ .page-header-title {
+ display: none;
+ }
+ */
+ }
+ .main-content {
+ padding: 20px 20px 5px;
+ .content-area {
+ .content-area-header,
+ .content-area-body {
+ padding: 20px 20px;
+ }
+ }
+ }
+ }
+ }
+ /*general*/
+ .card {
+ margin-bottom: 20px;
+ }
+ /*plugins*/
+ .tui-full-calendar-popup {
+ .tui-full-calendar-popup-container {
+ min-width: 300px;
+ .tui-full-calendar-section-calendar {
+ width: 130px;
+ .tui-full-calendar-dropdown-button .tui-full-calendar-content,
+ .tui-full-calendar-section-state .tui-full-calendar-content {
+ width: 85px !important;
+ }
+ }
+ .tui-full-calendar-section-state {
+ width: 145px !important;
+ }
+ .tui-full-calendar-dropdown-button.tui-full-calendar-popup-section-item {
+ width: 140px !important;
+ }
+ .tui-full-calendar-section-title {
+ width: calc(100% - 55px) !important;
+ }
+ .tui-full-calendar-section-title input {
+ width: 185px !important;
+ }
+ .tui-full-calendar-popup-section-item.tui-full-calendar-section-location input {
+ width: 240px !important;
+ }
+ .tui-full-calendar-section-end-date,
+ .tui-full-calendar-section-start-date {
+ width: 110px !important;
+ }
+ .tui-full-calendar-section-end-date input,
+ .tui-full-calendar-section-start-date input {
+ width: 68px !important;
+ }
+ .tui-full-calendar-popup-section-item .tui-full-calendar-section-allday {
+ margin-left: 10px;
+ padding: 5px 12px 5px 12px;
+ }
+ }
+ }
+ /*auth*/
+ .auth-container {
+ .card {
+ margin: 20px auto;
+ &.wd-450 {
+ width: 400px;
+ min-width: 400px;
+ max-width: 400px;
+ }
+ }
+ }
+}
+
+/*
+<--!----------------------------------------------------------------!-->
+<--! @media (max-width: 767.98px) !-->
+<--!----------------------------------------------------------------!-->
+*/
+@media (max-width: 767.98px) {
+ .nxl-header {
+ .header-wrapper {
+ .nxl-h-item {
+ position: static;
+ .nxl-h-dropdown {
+ &.nxl-search-dropdown,
+ &.nxl-language-dropdown {
+ left: 0 !important;
+ right: 0 !important;
+ width: -webkit-fill-available;
+ }
+ }
+ }
+ }
+ }
+ .nxl-container {
+ .nxl-content {
+ .page-header {
+ .page-header-right {
+ .page-header-right-items {
+ top: 79px;
+ right: 0px;
+ z-index: 99;
+ height: 100%;
+ width: 280px;
+ position: fixed;
+ background-color: $white;
+ border-top: 1px solid $border-color;
+ border-left: 1px solid $border-color;
+ display: flex;
+ flex-direction: column;
+ opacity: 0;
+ visibility: hidden;
+ transition: all 0.3s ease;
+ transform: translateX(100%);
+ &.page-header-right-open {
+ opacity: 1;
+ visibility: visible;
+ transition: all 0.3s ease;
+ transform: translateX(0%);
+ box-shadow: $shadow-lg;
+ .btn,
+ .dropdown,
+ .reportrange-picker,
+ .reportrange-picker-field {
+ width: 100%;
+ }
+ .dropdown {
+ .dropdown-menu {
+ width: 240px;
+ transform: translate3d(0px, 40px, 0px) !important;
+ }
+ }
+ }
+ .page-header-right-items-wrapper {
+ padding: 20px 20px;
+ flex-direction: column;
+ }
+ .page-header-right-close-toggle {
+ height: 65px;
+ width: 100%;
+ padding: 15px;
+ display: flex;
+ align-items: center;
+ line-height: 0;
+ border-bottom: 1px solid $border-color;
+ }
+ }
+ }
+ }
+ .page-content-left-navigation-wrapper {
+ left: 0;
+ top: 80px;
+ z-index: 98;
+ height: 100%;
+ width: 250px;
+ display: block;
+ position: fixed;
+ background: $white;
+ border-right: 1px solid $border-color;
+ opacity: 0;
+ visibility: hidden;
+ transition: all 0.3s ease;
+ transform: translateX(-100%);
+ &.page-content-left-open {
+ opacity: 1;
+ visibility: visible;
+ transition: all 0.3s ease;
+ transform: translateX(0);
+ }
+ .page-content-left-close-toggle {
+ height: 65px;
+ width: 100%;
+ padding: 15px;
+ display: flex;
+ align-items: center;
+ line-height: 0;
+ border-bottom: 1px solid $border-color;
+ }
+ }
+ .page-content-right-navigation-wrapper {
+ right: 0;
+ top: 80px;
+ z-index: 98;
+ height: 100%;
+ width: 250px;
+ display: block;
+ position: fixed;
+ background: $white;
+ border-left: 1px solid $border-color;
+ opacity: 0;
+ visibility: hidden;
+ transition: all 0.3s ease;
+ transform: translateX(100%);
+ &.page-content-right-open {
+ opacity: 1;
+ visibility: visible;
+ transition: all 0.3s ease;
+ transform: translateX(0);
+ }
+ .page-content-right-close-toggle {
+ height: 65px;
+ width: 100%;
+ padding: 15px;
+ display: flex;
+ align-items: center;
+ line-height: 0;
+ border-bottom: 1px solid $border-color;
+ }
+ }
+ .help-center-content-header {
+ height: 350px !important;
+ min-height: 350px !important;
+ max-height: 350px !important;
+ }
+ .page-content-left-navigation-wrapper {
+ .nav-tabs-custom-style {
+ width: 100%;
+ margin-top: -1px;
+ flex-direction: column;
+ .nav-item {
+ .nav-link {
+ width: 100%;
+ text-align: left;
+ padding: 15px 25px;
+ border-right: none;
+ border-left: 3px solid transparent;
+ border-bottom: 1px solid $border-color;
+ &.active,
+ &:hover {
+ border-bottom: 0;
+ border-left: 3px solid $primary !important;
+ }
+ }
+ }
+ }
+ }
+ .page-content-right-navigation-wrapper {
+ .proposal-action-btn {
+ display: flex;
+ flex-direction: column;
+ padding: 20px 20px;
+ .action-btn {
+ height: auto;
+ margin-bottom: 5px;
+ padding: 10px 20px;
+ align-items: center;
+ justify-content: flex-start;
+ border: 1px solid $border-color;
+ border-radius: $radius-sm;
+
+ &.action-btn-right-border {
+ padding-right: 0;
+ }
+ i {
+ font-size: $font-15;
+ }
+ }
+ }
+ }
+ .main-content {
+ .content-area {
+ .content-area-body {
+ .wd-300,
+ .wd-350,
+ .wd-400,
+ .wd-450,
+ .wd-500,
+ .wd-550,
+ .wd-600 {
+ width: 100%;
+ max-width: 100%;
+ min-width: 100%;
+ }
+ }
+ }
+ }
+ }
+ }
+
+ /*general*/
+ .wd-300,
+ .wd-350,
+ .wd-400,
+ .wd-450,
+ .wd-500,
+ .wd-550,
+ .wd-600 {
+ width: 100%;
+ }
+}
+
+/*
+<--!----------------------------------------------------------------!-->
+<--! @media (max-width: 991.98px) !-->
+<--!----------------------------------------------------------------!-->
+*/
+@media (max-width: 991.98px) {
+ .nxl-header {
+ .header-wrapper {
+ .header-left {
+ .nxl-lavel-mega-menu {
+ top: 0;
+ left: 0;
+ z-index: 1;
+ width: 300px;
+ height: 100%;
+ position: fixed;
+ overflow-y: auto;
+ overflow-x: hidden;
+ background: $white;
+ box-shadow: $shadow-lg;
+ border-right: 1px solid $border-color;
+ opacity: 0;
+ visibility: hidden;
+ transform: translateX(-100%);
+ transition: all 0.3s ease;
+ .nxl-lavel-mega-menu-toggle {
+ a#nxl-lavel-mega-menu-hide {
+ width: 100%;
+ height: 80px;
+ padding: 25px;
+ display: flex;
+ align-items: center;
+ border-bottom: 1px solid $border-color;
+ }
+ }
+ .nxl-lavel-mega-menu-wrapper {
+ padding: 25px 25px;
+ flex-direction: column;
+ .nxl-mega-menu {
+ .nxl-h-dropdown {
+ display: block;
+ width: 100%;
+ top: 80px !important;
+ border: none;
+ box-shadow: none;
+ left: 0 !important;
+ .nxl-mega-menu-tabs {
+ width: 100%;
+ min-width: 100%;
+ max-width: 100%;
+ }
+ .nxl-mega-menu-tabs-content {
+ height: auto;
+ overflow-y: auto;
+ border-left: none;
+ border-top: 1px solid $border-color;
+ .nxl-mega-menu-miscellaneous {
+ .nxl-mega-menu-miscellaneous-tabs {
+ border: none;
+ .nav-item {
+ .nav-link {
+ width: 100%;
+ border-top: none;
+ border-right: none;
+ border-bottom: none;
+ border-left: 1px solid transparent;
+ border-radius: $radius-none;
+ &:first-child {
+ margin-left: 0;
+ }
+ &.active {
+ border-bottom: none;
+ border-left: 1px solid $primary;
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+ html {
+ &.nxl-lavel-mega-menu-open {
+ .nxl-header {
+ .header-wrapper {
+ .header-left {
+ .nxl-lavel-mega-menu {
+ opacity: 1;
+ visibility: visible;
+ transform: translateX(0);
+ transition: all 0.3s ease;
+ .nxl-lavel-menu {
+ display: inline;
+ }
+ .nxl-mega-menu {
+ display: inline;
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+ /*auth-cover*/
+ .auth-cover-wrapper {
+ .auth-cover-content-inner {
+ display: none;
+ }
+ .auth-cover-sidebar-inner {
+ padding: 25px 25px;
+ margin: 30px 30px;
+ border-radius: $radius-lg;
+ .auth-cover-card-wrapper {
+ .auth-cover-card {
+ padding: 25px 0;
+ width: 100%;
+ max-width: 300px;
+ }
+ }
+ }
+ }
+}
+
+/*
+<--!----------------------------------------------------------------!-->
+<--! @media (max-width: 1023.98px) !-->
+<--!----------------------------------------------------------------!-->
+*/
+@media (max-width: 1023.98px) {
+ #tasksDetailsOffcanvas {
+ &.w-50 {
+ width: 100% !important;
+ }
+ }
+}
+
+/*
+<--!----------------------------------------------------------------!-->
+<--! @media (max-width: 1024px) !-->
+<--!----------------------------------------------------------------!-->
+*/
+@media (max-width: 1024px) {
+ .nxl-header {
+ top: 0;
+ left: 0 !important;
+ transition: all 0.15s ease-in-out;
+ .nxl-head-link {
+ display: inline-flex;
+ mobile-collapse {
+ position: absolute;
+ left: 15px;
+ }
+ }
+ .nxl-head-mobile-toggler {
+ display: inline-flex;
+ }
+ .nxl-navigation-toggle {
+ display: none;
+ }
+ &.mob-header-active {
+ top: $header-height;
+ .header-wrapper {
+ background: $header-background;
+ position: relative;
+ z-index: 5;
+ }
+ }
+ .nxl-md-overlay {
+ position: fixed;
+ top: 0;
+ left: 0;
+ width: 100vw;
+ height: 100vh;
+ z-index: 1;
+ background: rgba(0, 0, 0, 0.2);
+ }
+ .nxl-mega-menu .nxl-mega-dmenu .row.g-0 > .col {
+ flex: 100%;
+ }
+ }
+ .nxl-navigation {
+ left: -#{$navigation-width};
+ box-shadow: none;
+ transition: all 0.15s ease-in-out;
+ &.mob-navigation-active {
+ left: 0 !important;
+ .navbar-wrapper {
+ position: relative;
+ z-index: 5;
+ background: inherit;
+ }
+ }
+ }
+ .minimenu {
+ .nxl-header {
+ left: 0 !important;
+ }
+ .nxl-container {
+ margin-left: 0;
+ }
+ }
+ .nxl-container {
+ .nxl-content {
+ .help-center-content-header {
+ .search-form {
+ width: 75% !important;
+ }
+ }
+ }
+ }
+}
+
+/*
+<--!----------------------------------------------------------------!-->
+<--! @media (max-width: 1199.98px) !-->
+<--!----------------------------------------------------------------!-->
+*/
+@media (max-width: 1199.98px) {
+ .nxl-header {
+ .header-wrapper {
+ .header-left {
+ .nxl-mega-menu {
+ .nxl-h-dropdown {
+ width: auto;
+ left: 30px !important;
+ right: 30px !important;
+ .nxl-mega-menu-tabs-content {
+ height: 330px;
+ overflow-y: scroll;
+ }
+ }
+ }
+ }
+ }
+ }
+ .nxl-container {
+ margin-left: 0px;
+ &.apps-container {
+ .nxl-content {
+ &.without-header {
+ .main-content {
+ .content-sidebar {
+ z-index: 1025;
+ position: absolute;
+ opacity: 0;
+ visibility: hidden;
+ transition: all 0.3s ease;
+ transform: translateX(-100%);
+ &.app-sidebar-open {
+ opacity: 1;
+ visibility: visible;
+ transition: all 0.3s ease;
+ transform: translateX(0);
+ box-shadow: $shadow-lg;
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+ /*auth-cover*/
+ .auth-cover-wrapper {
+ .auth-cover-content-inner {
+ max-width: calc(100% - 450px);
+ }
+ .auth-cover-sidebar-inner {
+ max-width: 450px;
+ .auth-cover-card-wrapper {
+ .auth-cover-card {
+ padding: 25px 0;
+ width: 100%;
+ max-width: 450px;
+ }
+ }
+ }
+ }
+ /*auth-creative*/
+ .auth-creative-wrapper {
+ .auth-creative-inner {
+ .creative-card-wrapper {
+ max-width: calc(100% - 60px);
+ }
+ }
+ }
+}
+
+/*
+<--!----------------------------------------------------------------!-->
+<--! @media (max-width: 1399.98px) !-->
+<--!----------------------------------------------------------------!-->
+*/
+@media (max-width: 1399.98px) {
+}
+
+/*
+<--!----------------------------------------------------------------!-->
+<--! @media (max-width: 1599.98px) !-->
+<--!----------------------------------------------------------------!-->
+*/
+@media (max-width: 1599.98px) {
+}
+
+/*
+<--!----------------------------------------------------------------!-->
+<--! @media (min-width: 1200px) and (max-width: 1600px) !-->
+<--!----------------------------------------------------------------!-->
+*/
+@media (min-width: 1200px) and (max-width: 1600px) {
+}
diff --git a/dasena-web/public/assets/admin/scss/themes/layouts/_nxl-sidebar.scss b/dasena-web/public/assets/admin/scss/themes/layouts/_nxl-sidebar.scss
new file mode 100644
index 0000000..f488f52
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/themes/layouts/_nxl-sidebar.scss
@@ -0,0 +1,43 @@
+/*
+<--!----------------------------------------------------------------!-->
+<--! Content Sidebar !-->
+<--!----------------------------------------------------------------!-->
+*/
+.main-content {
+ .content-sidebar {
+ &.content-sidebar-md {
+ max-width: 300px;
+ }
+ &.content-sidebar-lg {
+ max-width: 350px;
+ }
+ &.content-sidebar-xl {
+ max-width: 400px;
+ }
+ .content-sidebar-body {
+ .nxl-content-sidebar-item {
+ margin: 15px 0;
+ .nav-item {
+ margin: 0 15px 5px 15px;
+ .nav-link {
+ gap: 15px;
+ display: flex;
+ align-items: center;
+ padding: 10px 15px;
+ color: $brand-dark;
+ font-size: $font-13;
+ font-weight: $font-600;
+ border-radius: $radius-sm;
+ transition: all 0.3s ease;
+ &:hover,
+ &.active {
+ color: $darken;
+ background-color: $brand-light;
+ transition: all 0.3s ease;
+ }
+ }
+ }
+ }
+ }
+ }
+}
diff --git a/dasena-web/public/assets/admin/scss/themes/options/_theme-options-customizer.scss b/dasena-web/public/assets/admin/scss/themes/options/_theme-options-customizer.scss
new file mode 100644
index 0000000..4331a97
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/themes/options/_theme-options-customizer.scss
@@ -0,0 +1,152 @@
+/*
+<--!----------------------------------------------------------------!-->
+<--! Customizer CSS !-->
+<--!----------------------------------------------------------------!-->
+*/
+.theme-customizer {
+ top: 0;
+ right: 0;
+ width: 350px;
+ height: 100%;
+ z-index: 1025;
+ position: fixed;
+ background-color: $white;
+ border-left: 1px solid $border-color;
+ transform: translateX(100%);
+ transition: all 0.3s ease;
+ &.theme-customizer-open {
+ transform: translateX(0);
+ transition: all 0.3s ease;
+ box-shadow: $shadow-lg;
+ .customizer-handle {
+ right: 0;
+ left: auto;
+ display: none;
+ }
+ }
+ .customizer-handle {
+ top: 48%;
+ left: -48px;
+ position: absolute;
+ .cutomizer-open-trigger {
+ padding: 15px;
+ color: $white;
+ border: 1px solid $primary;
+ border-radius: 6px 0px 0px 6px;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ box-shadow: $shadow-md;
+ }
+ .cutomizer-open-trigger {
+ i {
+ animation-name: spin;
+ animation-duration: 2500ms;
+ animation-iteration-count: infinite;
+ animation-timing-function: linear;
+ }
+ @keyframes spin {
+ from {
+ transform: rotate(0deg);
+ }
+ to {
+ transform: rotate(360deg);
+ }
+ }
+ }
+ }
+ .customizer-sidebar-wrapper {
+ .customizer-sidebar-body {
+ height: calc(100vh - 140px);
+
+ .theme-options-set {
+ border-radius: 5px;
+ .theme-options-items {
+ .single-option {
+ .options-label {
+ overflow: hidden;
+ border-radius: 5px;
+ transition: all 0.5s ease;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ &:hover {
+ transition: all 0.5s ease;
+ background-color: darken($gray-100, 1);
+ }
+ }
+ input {
+ &:checked {
+ + .options-label {
+ &:before {
+ top: 0;
+ left: 0;
+ right: 0;
+ bottom: 0;
+ width: 100%;
+ height: 100%;
+ z-index: 9999;
+ display: flex;
+ font-size: 12px;
+ color: $primary;
+ content: "\f272";
+ position: absolute;
+ align-items: center;
+ cursor: not-allowed;
+ font-weight: $font-400;
+ justify-content: center;
+ transition: all 0.5s ease;
+ background-color: darken($gray-100, 1);
+ font-family: bootstrap-icons !important;
+ }
+ }
+ }
+ }
+ &.active {
+ display: block !important;
+ &:before {
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 5px;
+ width: 94%;
+ height: 100%;
+ z-index: 9999;
+ display: flex;
+ font-size: 12px;
+ color: $primary;
+ content: "\f272";
+ position: absolute;
+ align-items: center;
+ cursor: not-allowed;
+ font-weight: $font-400;
+ justify-content: center;
+ transition: all 0.5s ease;
+ background-color: darken($gray-100, 1);
+ font-family: bootstrap-icons !important;
+ }
+ }
+ }
+ &.app-theme {
+ .single-option {
+ position: relative;
+ .palette-card {
+ width: 100%;
+ height: 100%;
+ padding: 3px;
+ height: 30px;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ span {
+ width: 100%;
+ height: 100%;
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+}
diff --git a/dasena-web/public/assets/admin/scss/themes/options/_theme-options-dark-theme.scss b/dasena-web/public/assets/admin/scss/themes/options/_theme-options-dark-theme.scss
new file mode 100644
index 0000000..657ad2c
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/themes/options/_theme-options-dark-theme.scss
@@ -0,0 +1,1289 @@
+/*
+<--!----------------------------------------------------------------!-->
+<--! Dark Theme !-->
+<--!----------------------------------------------------------------!-->
+*/
+html {
+ &.app-skin-dark {
+ a,
+ .h1,
+ .h2,
+ .h3,
+ .h4,
+ .h5,
+ .h6,
+ h1,
+ h2,
+ h3,
+ h4,
+ h5,
+ h6,
+ input,
+ .btn,
+ .text-dark,
+ .user-name,
+ .form-label,
+ #renderRange,
+ .form-control,
+ .ladda-button,
+ .dropdown-item,
+ .input-group-text,
+ .custom-file,
+ .custom-select,
+ .form-select,
+ .col-form-label,
+ .table tfoot th,
+ .table thead th,
+ .accordion-body,
+ .list-group-item,
+ .custom-control-label,
+ .reportrange-picker-field,
+ .daterangepicker .ranges li {
+ color: $white !important;
+ }
+ body,
+ .table,
+ .text-muted {
+ color: $dark-theme-color !important;
+ }
+ .dropdown-item {
+ &:focus,
+ &:hover,
+ &:active,
+ &.active {
+ color: $primary !important;
+ }
+ }
+ body,
+ .offcanvas,
+ .page-header,
+ .avatar-text,
+ .avatar-image,
+ .input-group-text,
+ .language_select.active a:before {
+ background-color: $dark-theme-color-dark !important;
+ }
+ .card,
+ .footer,
+ .bg-white,
+ .nxl-header,
+ .swal2-popup,
+ .ladda-button,
+ .dropdown-menu,
+ .modal-content,
+ .list-group-item,
+ .page-header-right-items,
+ .page-content-left-sidebar-wrapper,
+ .page-content-right-sidebar-wrapper,
+ #searchModal .search-form .input-group-text,
+ #searchModal .search-form .search-input-field {
+ background-color: $dark-theme-color-darker !important;
+ }
+ .btn-light,
+ .filter-btn,
+ .btn-light-brand,
+ .card .card-loader,
+ .reportrange-picker-field {
+ background-color: $dark-theme-color-hover !important;
+ }
+ .card,
+ .border,
+ .footer,
+ .btn-icon,
+ .btn-light,
+ .offcanvas,
+ .nxl-header,
+ .filter-btn,
+ .page-header,
+ .avatar-text,
+ .avatar-image,
+ .card-header,
+ .card-footer,
+ .page-header,
+ .border-top,
+ .border-end,
+ .border-start,
+ .border-bottom,
+ .ladda-button,
+ .modal-header,
+ .modal-footer,
+ .modal-content,
+ .dropdown-menu,
+ .form-control,
+ .table tr td,
+ .table thead th,
+ .dropdown-header,
+ .dropdown-divider,
+ .btn-light-brand,
+ .timesheets-head,
+ .list-group-item,
+ .input-group-text,
+ .language_select a,
+ .timesheets-footer,
+ .notifications-item,
+ .notifications-head,
+ .notifications-footer,
+ .reportrange-picker-field,
+ .pagination-common-style li a,
+ .page-header-right-items,
+ .page-header-right-close-toggle,
+ .page-content-left-close-toggle,
+ .page-content-right-close-toggle,
+ .page-content-left-sidebar-wrapper,
+ .page-content-right-sidebar-wrapper {
+ border-color: $dark-theme-color-border !important;
+ }
+ input,
+ textarea,
+ .custom-file,
+ .custom-select,
+ .form-select,
+ .form-control {
+ background-color: transparent !important;
+ border-color: $dark-theme-color-border !important;
+ &:focus,
+ &:hover,
+ &:active,
+ &.active {
+ border-color: $primary !important;
+ }
+ }
+ .dropdown-item,
+ .nxl-header .nxl-head-link,
+ .daterangepicker .ranges li,
+ .daterangepicker td.available,
+ .daterangepicker th.available {
+ &:focus,
+ &:hover,
+ &:active,
+ &.active {
+ background-color: $dark-theme-color-hover !important;
+ }
+ }
+ .btn {
+ &:hover,
+ &:focus,
+ &:active,
+ &:focus,
+ &.active,
+ &.show,
+ .btn-check:focus + &,
+ .btn-check:checked + &,
+ .btn-check:active + & {
+ &:hover,
+ &:focus,
+ &:active,
+ &:focus {
+ color: $white !important;
+ }
+ }
+ }
+ .daterangepicker,
+ .apexcharts-tooltip {
+ box-shadow: 0 4px 24px 0 rgb(4 0 40 / 80%);
+ }
+ .apexcharts-graphical {
+ .apexcharts-radar-series {
+ polygon {
+ fill: #121a2e;
+ stroke: #242f4a;
+ }
+ }
+ }
+ .btn-close {
+ filter: invert(1);
+ }
+ hr {
+ border-color: lighten($dark-theme-color-border, 6) !important;
+ }
+ /* <---------------! General !---------------> */
+ .bg-soft-100,
+ .bg-gray-100 {
+ background-color: lighten($dark-theme-color-dark, 1) !important;
+ }
+ .bg-soft-200,
+ .bg-gray-200 {
+ background-color: lighten($dark-theme-color-dark, 2) !important;
+ }
+ .bg-soft-300,
+ .bg-gray-300 {
+ background-color: lighten($dark-theme-color-dark, 3) !important;
+ }
+ .bg-soft-400,
+ .bg-gray-400 {
+ background-color: lighten($dark-theme-color-dark, 4) !important;
+ }
+ .bg-soft-500,
+ .bg-gray-500 {
+ background-color: lighten($dark-theme-color-dark, 5) !important;
+ }
+ .bg-soft-600,
+ .bg-gray-600 {
+ background-color: lighten($dark-theme-color-dark, 6) !important;
+ }
+ .bg-primary {
+ background-color: $primary !important;
+ }
+ .bg-success {
+ background-color: $success !important;
+ }
+ .bg-danger {
+ background-color: $danger !important;
+ }
+ .bg-warning {
+ background-color: $warning !important;
+ }
+ .bg-indigo {
+ background-color: $indigo !important;
+ }
+ .bg-teal {
+ background-color: $teal !important;
+ }
+ .bg-info {
+ background-color: $info !important;
+ }
+ .bg-soft-primary {
+ background-color: rgb($primary, 0.075) !important;
+ }
+ .bg-soft-success {
+ background-color: rgb($success, 0.075) !important;
+ }
+ .bg-soft-danger {
+ background-color: rgb($danger, 0.075) !important;
+ }
+ .bg-soft-info {
+ background-color: rgb($info, 0.075) !important;
+ }
+ .bg-soft-warning {
+ background-color: rgb($warning, 0.075) !important;
+ }
+ .bg-soft-teal {
+ background-color: rgb($teal, 0.075) !important;
+ }
+ .bg-soft-indigo {
+ background-color: rgb($indigo, 0.075) !important;
+ }
+ .bg-soft-dark {
+ background-color: rgb($dark, 0.075) !important;
+ }
+ .bg-soft-darken {
+ background-color: rgb($darken, 0.075) !important;
+ }
+ .text-primary {
+ color: $primary !important;
+ }
+ .text-success {
+ color: $success !important;
+ }
+ .text-danger {
+ color: $danger !important;
+ }
+ .text-info {
+ color: $info !important;
+ }
+ .text-warning {
+ color: $warning !important;
+ }
+ .text-teal {
+ color: $teal !important;
+ }
+ .text-indigo {
+ color: $indigo !important;
+ }
+ .border-primary {
+ border-color: $primary !important;
+ }
+ .border-secondary {
+ border-color: $secondary !important;
+ }
+ .border-success {
+ border-color: $success !important;
+ }
+ .border-danger {
+ border-color: $danger !important;
+ }
+ .border-warning {
+ border-color: $warning !important;
+ }
+ .border-teal {
+ border-color: $teal !important;
+ }
+ .border-info {
+ border-color: $info !important;
+ }
+ .border-indigo {
+ border-color: $indigo !important;
+ }
+ .border-dark {
+ border-color: $dark !important;
+ }
+ .border-black {
+ border-color: $black !important;
+ }
+ .alert {
+ &.alert-soft-success-message {
+ color: $success;
+ background-color: rgb($success, 0.075);
+ border: 1px dashed darken($success, 25);
+ }
+ &.alert-soft-warning-message {
+ color: $warning;
+ background-color: rgb($warning, 0.075);
+ border: 1px dashed darken($warning, 25);
+ }
+ &.alert-soft-danger-message {
+ color: $danger;
+ background-color: rgb($danger, 0.075);
+ border: 1px dashed darken($danger, 20);
+ }
+ &.alert-soft-teal-message {
+ color: $teal;
+ background-color: rgb($teal, 0.075);
+ border: 1px dashed darken($teal, 20);
+ }
+ }
+
+ /* <---------------! Hamburger !---------------> */
+ .hamburger-inner {
+ background-color: $white;
+ &:after,
+ &:before {
+ background-color: $white;
+ }
+ }
+ /* <---------------! DateRangePicker !---------------> */
+ .daterangepicker {
+ color: $dark-theme-color;
+ border-color: $dark-theme-color-border;
+ background-color: $dark-theme-color-dark;
+ .drp-buttons,
+ .calendar-table,
+ .drp-calendar.left {
+ border-color: $dark-theme-color-border !important;
+ }
+ .calendar-table {
+ background-color: $dark-theme-color-dark;
+ }
+ td.off,
+ td.off.in-range {
+ opacity: 0.1;
+ background-color: $dark-theme-color-dark;
+ }
+ td.in-range {
+ background-color: $dark-theme-color-darker;
+ }
+ &:after,
+ &:before {
+ border-bottom-color: $dark-theme-color-border;
+ }
+ }
+
+ /* <---------------! Apex Charts !---------------> */
+ .apexcharts-canvas {
+ .apexcharts-tooltip,
+ .apexcharts-xaxistooltip {
+ color: $white;
+ border-color: $dark-theme-color-border;
+ background-color: $dark-theme-color-dark;
+ }
+ .apexcharts-tooltip-title {
+ color: $white;
+ border-color: $dark-theme-color-border;
+ background-color: $dark-theme-color-darker;
+ }
+ .apexcharts-grid {
+ line {
+ stroke: $dark-theme-color-dark;
+ }
+ }
+ .apexcharts-xaxistooltip-bottom:after,
+ .apexcharts-xaxistooltip-bottom:before {
+ border-bottom-color: $dark-theme-color-border;
+ }
+ }
+
+ /* <---------------! Select2 !---------------> */
+ .select2-container--bootstrap-5 {
+ .select2-selection {
+ border-color: $dark-theme-color-border;
+ background-color: $dark-theme-color-darker;
+ }
+ .select2-dropdown {
+ border-color: $dark-theme-color-border;
+ background-color: $dark-theme-color-darker;
+ .select2-results__options {
+ .select2-results__option {
+ color: $dark-theme-color;
+ }
+ .select2-results__option.select2-results__option--selected,
+ .select2-results__option[aria-selected="true"]:not(.select2-results__option--highlighted) {
+ background-color: rgba(84, 133, 228, 0.075) !important;
+ }
+ }
+ .select2-search {
+ .select2-search__field {
+ border-color: $dark-theme-color-border;
+ background-color: $dark-theme-color-dark;
+ }
+ }
+ }
+ .select2-selection--single {
+ .select2-selection__rendered {
+ color: $dark-theme-color;
+ }
+ }
+ .select2-selection--multiple {
+ .select2-selection__rendered {
+ .select2-selection__choice {
+ color: $dark-theme-color;
+ border-color: $dark-theme-color-border;
+ }
+ }
+ }
+ }
+
+ /* <---------------! timeTo !---------------> */
+ .timeTo {
+ div {
+ border-color: $dark-theme-color-border;
+ background-color: $dark-theme-color-dark;
+ }
+ &.timeTo-white {
+ div {
+ color: $dark-theme-color;
+ background-color: $dark-theme-color-dark;
+ }
+ }
+ }
+
+ /* <---------------! Circle Progress !---------------> */
+ .circle-progress {
+ .circle-progress-text {
+ fill: $white;
+ }
+ .circle-progress-circle {
+ stroke: $dark-theme-color-dark;
+ }
+ }
+
+ /* <---------------! simple Calendar !---------------> */
+ .calendar {
+ color: $white;
+ header {
+ border-color: $dark-theme-color-border;
+ .simple-calendar-btn {
+ border-color: $dark-theme-color-border;
+ &:hover {
+ background-color: $dark-theme-color-dark;
+ }
+ }
+ .month {
+ .year {
+ color: $dark-theme-color;
+ }
+ }
+ }
+ .day {
+ color: $dark-theme-color;
+ &.has-event {
+ background-color: lighten($dark-theme-color-dark, 3);
+ }
+ &.wrong-month {
+ opacity: 0.3;
+ color: darken($dark-theme-color, 5);
+ }
+ }
+ .filler,
+ .event-container {
+ background-color: $dark-theme-color-dark;
+ }
+ }
+
+ /* <---------------! SweetAlert2 !---------------> */
+ .swal2-container {
+ .swal2-popup.swal2-toast {
+ border-color: $dark-theme-color-border;
+ background-color: $dark-theme-color-darker;
+ }
+ &.swal2-backdrop-show {
+ background: rgb(25 35 60 / 80%);
+ }
+ }
+
+ /* <---------------! Tagify !---------------> */
+ .tagify__input {
+ color: $dark-theme-color;
+ &:before {
+ color: $dark-theme-color;
+ }
+ }
+ .tagify__dropdown {
+ border-color: $dark-theme-color-border;
+ .tagify__dropdown__wrapper {
+ border-color: $dark-theme-color-border;
+ background-color: $dark-theme-color-dark;
+ .tagify__dropdown__item {
+ border-color: $dark-theme-color-border;
+ &:hover {
+ background-color: $dark-theme-color-hover;
+ }
+ strong {
+ color: $white;
+ }
+ }
+ }
+ }
+
+ /* <---------------! Quill !---------------> */
+ .ql-snow {
+ &.ql-toolbar {
+ border-color: $dark-theme-color-border;
+ background-color: $dark-theme-color-dark;
+ .ql-picker.ql-expanded {
+ .ql-picker-label,
+ .ql-picker-options {
+ border-color: $dark-theme-color-border;
+ }
+ }
+ }
+ .ql-picker {
+ color: $dark-theme-color;
+ }
+ &.ql-container {
+ border-color: $dark-theme-color-border;
+ }
+ .ql-stroke {
+ stroke: $white;
+ }
+ .ql-picker-options {
+ background-color: $dark-theme-color-dark;
+ }
+ .ql-picker-label {
+ border-color: $dark-theme-color-border;
+ background-color: $dark-theme-color-dark;
+ }
+ .ql-editor {
+ color: $dark-theme-color;
+ }
+ }
+
+ /* <---------------! DatePicker !---------------> */
+ .datepicker-picker {
+ background-color: $dark-theme-color-dark;
+ .button {
+ color: $white;
+ background-color: $dark-theme-color-dark;
+ &:focus,
+ &:hover,
+ &:active {
+ background-color: $dark-theme-color-hover;
+ }
+ }
+ .datepicker-cell.range {
+ background-color: $dark-theme-color-hover;
+ }
+ .datepicker-cell:not(.disabled):hover,
+ .datepicker-cell.focused:not(.selected) {
+ color: $white;
+ background-color: $dark-theme-color-hover;
+ }
+ .datepicker-cell.next:not(.disabled),
+ .datepicker-cell.prev:not(.disabled) {
+ opacity: 0.3;
+ color: #536577;
+ }
+ .datepicker-footer {
+ background-color: $dark-theme-color-hover;
+ .datepicker-controls {
+ .button {
+ color: $white;
+ border-color: $dark-theme-color-border;
+ }
+ }
+ }
+ }
+
+ /* <---------------! Checklist !---------------> */
+ ul#checklist {
+ li {
+ border-color: $dark-theme-color-border;
+ &.checked {
+ color: $dark-theme-color;
+ background-color: $dark-theme-color-hover;
+ }
+ .close {
+ border-color: $dark-theme-color-border;
+ }
+ }
+ }
+
+ /* <---------------! TUI Calendar !---------------> */
+ lnb-calendars > div {
+ border-color: $dark-theme-color-border;
+ }
+ .lnb-calendars-item {
+ label {
+ color: $dark-theme-color !important;
+ }
+ }
+ .calendar-action-btn {
+ .calendar-dropdown-btn,
+ .menu-navi > .move-today {
+ color: $white !important;
+ border-color: $dark-theme-color-border !important;
+ }
+ }
+ .menu-navi {
+ .move-day {
+ color: $white;
+ border-color: $dark-theme-color-border;
+ }
+ }
+ .tui-datepicker *,
+ .lnb-calendars > div,
+ .tui-full-calendar-layout * {
+ color: $white !important;
+ }
+ .tui-datepicker *,
+ .lnb-calendars > div,
+ .tui-full-calendar-layout * {
+ border-color: $dark-theme-color-border !important;
+ }
+ .tui-datepicker *,
+ .tui-full-calendar-layout,
+ .tui-full-calendar-button,
+ .tui-full-calendar-dropdown-menu,
+ .tui-full-calendar-popup-container,
+ .tui-datepicker .tui-is-selectable:hover,
+ .tui-datepicker.tui-rangepicker .tui-is-selected-range {
+ background-color: $dark-theme-color-dark !important;
+ }
+ .tui-calendar-btn-next-month:after,
+ .tui-calendar-btn-next-year:after,
+ .tui-calendar-btn-prev-month:after,
+ .tui-calendar-btn-prev-year:after,
+ .tui-full-calendar-ic-close {
+ filter: invert(1);
+ }
+ input[type="checkbox"].tui-full-calendar-checkbox-round + span:before {
+ color: $dark-theme-color-dark;
+ }
+
+ /* <---------------! dataTable !---------------> */
+ .dataTables_wrapper {
+ .row {
+ &:last-child,
+ &:first-child {
+ border-color: $dark-theme-color-border !important;
+ }
+ }
+ table.dataTable {
+ &.table-hover > tbody > tr:hover > * {
+ background-color: $dark-theme-color-hover;
+ }
+ }
+ .dataTables_paginate {
+ .page-link {
+ border-color: $dark-theme-color-border;
+ background-color: $dark-theme-color-dark;
+ &.disabled {
+ opacity: 0.3;
+ background-color: $dark-theme-color-darker;
+ }
+ }
+ }
+ }
+
+ /* <---------------! Steps !---------------> */
+ .wizard {
+ .steps.sticky {
+ background-color: $dark-theme-color-darker !important;
+ }
+ > .steps,
+ > .actions {
+ > ul {
+ > li {
+ border-color: $dark-theme-color-border;
+ }
+ }
+ }
+ .tabcontrol ul,
+ ul[role="tablist"] {
+ border-color: $dark-theme-color-border;
+ }
+ .card-input-element + .card .avatar-text {
+ color: $white;
+ }
+ > .actions {
+ border-color: $dark-theme-color-border;
+ .disabled {
+ a,
+ a:active,
+ a:hover {
+ opacity: 0.3;
+ background-color: $dark-theme-color-darker;
+ }
+ }
+ }
+ > .content {
+ > .body {
+ label {
+ &.error {
+ background-color: #ff355b14;
+ border: 1px dashed #ff617147;
+ }
+ }
+ }
+ }
+ }
+
+ /* <---------------! Custom Upload !---------------> */
+ .custom-file-upload {
+ border-color: $dark-theme-color-border;
+ background-color: $dark-theme-color-hover;
+ }
+
+ /* <---------------! Accordion !---------------> */
+ .accordion {
+ .accordion-item {
+ background-color: $dark-theme-color-dark;
+ border-color: $dark-theme-color-border;
+ .accordion-header {
+ .accordion-button {
+ color: $white;
+ border-color: $dark-theme-color-border;
+ }
+ .accordion-button:not(.collapsed) {
+ color: $primary;
+ background-color: $dark-theme-color-hover;
+ }
+ }
+ }
+ }
+ .accordion-collapse {
+ .accordion-body {
+ border-color: $dark-theme-color-border;
+ background-color: $dark-theme-color-dark !important;
+ }
+ }
+
+ /* <---------------! Dropdown !---------------> */
+ .dropdown {
+ .dropdown-menu {
+ box-shadow: 0 10px 20px rgb(5 0 38 / 80%);
+ .dropdown-item {
+ i.bg-gray-500 {
+ background-color: $white !important;
+ }
+ &.active,
+ &:active,
+ &:focus,
+ &:hover {
+ i.bg-gray-500 {
+ background-color: $primary !important;
+ }
+ }
+ }
+ }
+ }
+
+ /* <---------------! Card !---------------> */
+ .card {
+ box-shadow: 0 0 20px rgb(14 32 56 / 30%);
+ }
+
+ /* <---------------! Table !---------------> */
+ .table {
+ > tbody > tr:hover > *,
+ > tbody > tr:nth-of-type(odd) > *,
+ &.table-hover > tbody > tr:hover > *,
+ &.table-striped > tbody > tr:nth-of-type(odd) > * {
+ color: $white !important;
+ --bs-table-accent-bg: #121b2e !important;
+ }
+ &:not(caption) > * {
+ border-color: $dark-theme-color-border !important;
+ }
+ }
+
+ /* <---------------! Form !---------------> */
+ .custom-checkbox {
+ .custom-control-label {
+ &:before {
+ border-color: $dark-theme-color-border;
+ background-color: lighten($dark-theme-color-dark, 5);
+ }
+ }
+ }
+
+ /* <---------------! Modal !---------------> */
+ .modal-backdrop {
+ --bs-backdrop-opacity: 0.9;
+ background-color: #000915;
+ }
+
+ /* <---------------! Popover !---------------> */
+ .popover {
+ border-color: $dark-theme-color-border;
+ background-color: $dark-theme-color-dark;
+ }
+
+ /* <---------------! Navs & Tabs !---------------> */
+ .nav-item {
+ .nav-link {
+ color: $white;
+ &.active,
+ &:hover {
+ color: $primary;
+ background-color: $dark-theme-color-hover !important;
+ }
+ }
+ }
+ .customers-nav-tabs,
+ .nav-tabs-custom-style {
+ border-color: $dark-theme-color-border;
+ .nav-item {
+ .nav-link {
+ border-radius: 0 0;
+ color: $white !important;
+ border-color: transparent !important;
+ &.hover,
+ &.active {
+ color: $primary !important;
+ border-bottom-color: $primary !important;
+ border-color: $dark-theme-color-border;
+ background-color: $dark-theme-color-hover;
+ }
+ }
+ }
+ }
+
+ /* <---------------! Miscellaneous !---------------> */
+ .activity-feed,
+ .activity-feed-1,
+ .activity-feed-2 {
+ .feed-item {
+ border-color: $dark-theme-color-border;
+ .text {
+ color: $white;
+ }
+ }
+ .feed-item-primary::after {
+ border-color: rgb(70 90 130);
+ }
+ .feed-item-secondary:after {
+ border-color: rgb(50 60 70);
+ }
+ .feed-item-success:after {
+ border-color: rgb(35 85 50);
+ }
+ .feed-item-info::after {
+ border-color: rgb(35 75 100);
+ }
+ .feed-item-warning::after {
+ border-color: rgb(95 80 30);
+ }
+ .feed-item-danger::after {
+ border-color: rgb(90 45 45);
+ }
+ .feed-item-teal::after {
+ border-color: rgb(40 85 70);
+ }
+ }
+ #searchModal {
+ .search-form {
+ .input-group-text {
+ .btn-close:after {
+ color: $gray-500;
+ border-color: $gray-500;
+ }
+ }
+ }
+ }
+
+ /* <---------------! Navigation !---------------> */
+ .nxl-navigation {
+ background: $navigation-background;
+ .m-header {
+ background: $header-brand-color;
+ border-right: 1px solid $navigation-border-color;
+ border-bottom: 1px solid lighten($header-brand-color, 5);
+ .logo-lg {
+ filter: invert(1);
+ }
+ }
+ .navbar-content {
+ border-right: 1px solid $navigation-border-color;
+ .nxl-caption {
+ color: $navigation-caption;
+ }
+ .nxl-link {
+ color: $navigation-color;
+ &:active,
+ &:focus,
+ &:hover {
+ color: $navigation-active-color;
+ .nxl-micon {
+ i {
+ color: $navigation-active-color;
+ }
+ }
+ }
+ }
+ .nxl-navbar {
+ > .nxl-item {
+ &.active,
+ &:focus,
+ &:hover {
+ > .nxl-link {
+ background-color: $navigation-hover-color;
+ }
+ }
+ }
+ }
+ .nxl-item {
+ &.active,
+ &:focus,
+ &:hover {
+ > .nxl-link {
+ color: $navigation-active-color;
+ background-color: $navigation-hover-color;
+ .nxl-micon {
+ i {
+ color: $navigation-active-color;
+ }
+ }
+ }
+ }
+ }
+ .card {
+ margin: 20px;
+ border-color: $brand-dark;
+ color: rgba(255, 255, 255, 0.6);
+ background: rgba(255, 255, 255, 0.05);
+ box-shadow: 0 0 0 1px rgb(0 0 0 / 15%);
+ .text-dark {
+ color: $white !important;
+ }
+ }
+ }
+ }
+ &.minimenu {
+ .nxl-navigation {
+ &:hover {
+ .navbar-content {
+ background-color: $navigation-background;
+ border-right: 1px solid $navigation-border-color;
+ }
+ }
+ }
+ }
+
+ /* <---------------! Header !---------------> */
+ .nxl-header {
+ .header-wrapper {
+ .header-left {
+ .nxl-mega-menu {
+ .nxl-h-dropdown {
+ .nxl-mega-menu-image {
+ background-color: $dark-theme-color-hover;
+ }
+ .nxl-mega-menu-tabs {
+ .nav-link {
+ color: $white;
+ background-color: $dark-theme-color-dark;
+ &:hover,
+ &.active {
+ color: $primary;
+ background-color: $dark-theme-color-hover;
+ }
+ }
+ }
+ .nxl-mega-menu-tabs-content {
+ border-color: $dark-theme-color-border;
+ .nxl-mega-menu-integrations,
+ .nxl-mega-menu-resources-right {
+ .dropdown-item {
+ border-color: $dark-theme-color-border;
+ }
+ }
+ .nxl-mega-menu-miscellaneous {
+ .nxl-mega-menu-miscellaneous-tabs {
+ border-color: $dark-theme-color-border;
+ .nav-item {
+ .nav-link {
+ color: $white;
+ border-color: $dark-theme-color-border;
+ &:hover,
+ &.active {
+ color: $primary;
+ }
+ }
+ }
+ }
+ .nxl-mega-menu-miscellaneous-content {
+ .nxl-mega-menu-miscellaneous-services {
+ i {
+ color: $white;
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+ .nxl-lavel-mega-menu {
+ border-color: $dark-theme-color-border;
+ background-color: $dark-theme-color-dark;
+ .nxl-lavel-mega-menu-toggle {
+ a#nxl-lavel-mega-menu-hide {
+ border-color: $dark-theme-color-border;
+ }
+ }
+ .nxl-lavel-mega-menu-wrapper {
+ .nxl-mega-menu {
+ .nxl-h-dropdown {
+ .nxl-mega-menu-tabs-content {
+ border-color: $dark-theme-color-border;
+ }
+ }
+ }
+ }
+ }
+ }
+ .header-right {
+ .nxl-header-search,
+ .nxl-header-language {
+ .nxl-h-dropdown {
+ &.nxl-search-dropdown {
+ .avatar-text {
+ color: $white;
+ }
+ }
+ &.nxl-language-dropdown {
+ .language_select {
+ a:hover {
+ background-color: lighten($dark-theme-color-dark, 2);
+ }
+ }
+ }
+ }
+ }
+ .nxl-notifications-menu {
+ .notifications-item {
+ .notifications-desc {
+ .text-body {
+ color: $white !important;
+ }
+ }
+ }
+ }
+ .timesheets-body {
+ i {
+ color: $white;
+ }
+ }
+ }
+ }
+ }
+
+ /* <---------------! Dashboard !---------------> */
+ .invoice-overview-tab-item {
+ .nav-item {
+ border-color: $dark-theme-color-border;
+ }
+ }
+
+ /* <---------------! Reports !---------------> */
+ .nxl-container {
+ .nxl-content {
+ .main-content {
+ .sales-pipeline-tabs {
+ .nav-item {
+ .nav-link {
+ border-color: $dark-theme-color-border;
+ background-color: $dark-theme-color-dark;
+ &.active {
+ background-color: lighten($dark-theme-color-dark, 3);
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+
+ /* <---------------! Applications !---------------> */
+ .nxl-container {
+ .nxl-content {
+ .main-content {
+ .content-sidebar {
+ border-color: $dark-theme-color-border;
+ background-color: $dark-theme-color-dark;
+ .content-sidebar-header {
+ border-color: $dark-theme-color-border;
+ background-color: $dark-theme-color-dark !important;
+ }
+ .content-sidebar-body {
+ .sidebar-search {
+ input {
+ background-color: $dark-theme-color-dark;
+ }
+ }
+ }
+ }
+ .content-area {
+ .content-area-header {
+ border-color: $dark-theme-color-border;
+ background-color: $dark-theme-color-dark !important;
+ .search-form {
+ .search-form-inner {
+ border-color: $dark-theme-color-border;
+ background-color: $dark-theme-color-dark !important;
+ input {
+ background-color: $dark-theme-color-dark;
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+ .calling-modal-screen {
+ .chat-calling-content {
+ background-image: radial-gradient(circle, #1d2538, #181f31, #0f172a, #080f1f, #050a16);
+ }
+ .chat-calling-text-message-sidebar {
+ background-color: $dark-theme-color-darker;
+ }
+ }
+ .nxl-container.apps-email {
+ .nxl-content {
+ .main-content {
+ .content-area {
+ .content-area-body {
+ .single-items {
+ border-color: $dark-theme-color-border;
+ background-color: $dark-theme-color-dark;
+ }
+ }
+ }
+ .items-details {
+ background-color: $dark-theme-color-dark !important;
+ .items-details-header {
+ border-color: $dark-theme-color-border;
+ background-color: $dark-theme-color-dark !important;
+ }
+ .items-details-footer {
+ background-color: $dark-theme-color-dark !important;
+ }
+ }
+ }
+ }
+ }
+
+ /* <---------------! Proposal !---------------> */
+ .proposal-action-btn {
+ .action-btn {
+ border-color: $dark-theme-color-border !important;
+ }
+ }
+
+ /* <---------------! Help Center !---------------> */
+ .help-center-content-header {
+ background-image: radial-gradient(circle, #1d2538, #181f31, #0f172a, #080f1f, #050a16);
+ .form-control {
+ background-color: $dark-theme-color-darker !important;
+ }
+ }
+
+ /* <---------------! Authentication !---------------> */
+ .auth-cover-wrapper {
+ .auth-cover-sidebar-inner {
+ box-shadow: $shadow-none;
+ background-color: $dark-theme-color-darker;
+ border-left: 1px solid $dark-theme-color-border;
+ }
+ }
+ .auth-creative-wrapper {
+ .auth-creative-inner {
+ &:after {
+ background-color: darken($dark-theme-color-darker, 2);
+ }
+ }
+ }
+
+ /* <---------------! Placeholder !---------------> */
+ ::-webkit-input-placeholder,
+ :-ms-input-placeholder,
+ ::placeholder {
+ color: #50566e !important;
+ }
+
+ /* <---------------! Scrollbar !---------------> */
+ ::-webkit-scrollbar-track {
+ background-color: $dark-theme-color-dark !important;
+ }
+ ::-webkit-scrollbar-thumb {
+ background-color: lighten($dark-theme-color-dark, 5) !important;
+ }
+
+ /* <---------------! dark-theme-switcher !---------------> */
+ .dark-light-theme {
+ .light-button {
+ display: inline-flex !important;
+ }
+ .dark-button {
+ display: none !important;
+ }
+ }
+
+ /* <---------------! Customizer !---------------> */
+ .theme-customizer {
+ background-color: $dark-theme-color-darker;
+ border-color: $dark-theme-color-border;
+ &.theme-customizer-open {
+ box-shadow: $dark-theme-box-shadow;
+ }
+ .customizer-handle {
+ .cutomizer-open-trigger {
+ color: $white;
+ box-shadow: $dark-theme-box-shadow;
+ }
+ }
+ .customizer-sidebar-wrapper {
+ .customizer-sidebar-body {
+ .theme-options-set {
+ .theme-options-items {
+ .single-option {
+ .options-label {
+ &:hover {
+ background-color: $dark-theme-color-hover;
+ }
+ }
+ input {
+ &:checked {
+ + .options-label {
+ &:before {
+ background-color: $dark-theme-color-hover;
+ }
+ }
+ }
+ }
+ &.active {
+ &:before {
+ background-color: $dark-theme-color-hover;
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+}
+.dark-button {
+ display: inline-flex !important;
+}
diff --git a/dasena-web/public/assets/admin/scss/themes/options/_theme-options-font.scss b/dasena-web/public/assets/admin/scss/themes/options/_theme-options-font.scss
new file mode 100644
index 0000000..1eec7c7
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/themes/options/_theme-options-font.scss
@@ -0,0 +1,117 @@
+/*
+<--!----------------------------------------------------------------!-->
+<--! Font Family Style Update !-->
+<--!----------------------------------------------------------------!-->
+*/
+html {
+ &.app-font-family-lato {
+ body {
+ font-family: $font-lato;
+ }
+ }
+ &.app-font-family-rubik {
+ body {
+ font-family: $font-rubik;
+ }
+ }
+ &.app-font-family-inter {
+ body {
+ font-family: $font-inter;
+ }
+ }
+ &.app-font-family-cinzel {
+ body {
+ font-family: $font-cinzel;
+ }
+ }
+ &.app-font-family-nunito {
+ body {
+ font-family: $font-nunito;
+ }
+ }
+ &.app-font-family-roboto {
+ body {
+ font-family: $font-roboto;
+ }
+ }
+ &.app-font-family-ubuntu {
+ body {
+ font-family: $font-ubuntu;
+ }
+ }
+ &.app-font-family-poppins {
+ body {
+ font-family: $font-poppins;
+ }
+ }
+ &.app-font-family-raleway {
+ body {
+ font-family: $font-raleway;
+ }
+ }
+ &.app-font-family-system-ui {
+ body {
+ font-family: $font-system-ui;
+ }
+ }
+ &.app-font-family-noto-sans {
+ body {
+ font-family: $font-noto-sans;
+ }
+ }
+ &.app-font-family-fira-sans {
+ body {
+ font-family: $font-fira-sans;
+ }
+ }
+ &.app-font-family-work-sans {
+ body {
+ font-family: $font-work-sans;
+ }
+ }
+ &.app-font-family-open-sans {
+ body {
+ font-family: $font-open-sans;
+ }
+ }
+ &.app-font-family-maven-pro {
+ body {
+ font-family: $font-maven-pro;
+ }
+ }
+ &.app-font-family-quicksand {
+ body {
+ font-family: $font-quicksand;
+ }
+ }
+ &.app-font-family-montserrat {
+ body {
+ font-family: $font-montserrat;
+ }
+ }
+ &.app-font-family-josefin-sans {
+ body {
+ font-family: $font-josefin-sans;
+ }
+ }
+ &.app-font-family-ibm-plex-sans {
+ body {
+ font-family: $font-ibm-plex-sans;
+ }
+ }
+ &.app-font-family-source-sans-pro {
+ body {
+ font-family: $font-source-sans-pro;
+ }
+ }
+ &.app-font-family-montserrat-alt {
+ body {
+ font-family: $font-montserrat-alt;
+ }
+ }
+ &.app-font-family-roboto-slab {
+ body {
+ font-family: $font-roboto-slab;
+ }
+ }
+}
diff --git a/dasena-web/public/assets/admin/scss/themes/options/_theme-options-header.scss b/dasena-web/public/assets/admin/scss/themes/options/_theme-options-header.scss
new file mode 100644
index 0000000..44a452c
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/themes/options/_theme-options-header.scss
@@ -0,0 +1,73 @@
+/*
+<--!----------------------------------------------------------------!-->
+<--! Header Dark !-->
+<--!----------------------------------------------------------------!-->
+*/
+
+html {
+ &.app-header-dark {
+ .nxl-navigation {
+ .m-header {
+ background: $navigation-background;
+ border-bottom: 1px solid $header-border-color;
+ border-right: 1px solid $navigation-border-color;
+ .logo-lg {
+ filter: invert(1);
+ }
+ }
+ }
+ .nxl-header {
+ color: $white;
+ background: $header-background;
+ border-bottom: 1px solid $header-border-color;
+ .header-wrapper {
+ .hamburger-inner {
+ background-color: $white;
+ &:after,
+ &:before {
+ background-color: $white;
+ }
+ }
+ .nxl-navigation-toggle {
+ a#menu-mini-button,
+ a#menu-expend-button {
+ color: $white;
+ }
+ }
+ .nxl-lavel-mega-menu-toggle {
+ a#nxl-lavel-mega-menu-open {
+ color: $white;
+ }
+ }
+ .nxl-head-link {
+ color: $white;
+ &:focus,
+ &:hover,
+ &:active,
+ &.active {
+ color: $primary;
+ background-color: $dark-theme-color-hover !important;
+ }
+ }
+ .nxl-lavel-mega-menu {
+ .nxl-lavel-mega-menu-wrapper {
+ .nxl-lavel-menu {
+ .avatar-image,
+ .avatar-text {
+ border-color: $header-border-color;
+ }
+ }
+ .nxl-mega-menu {
+ .btn-light,
+ .btn-light-brand {
+ color: $white !important;
+ border-color: $header-border-color !important;
+ background-color: $dark-theme-color-hover !important;
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+}
diff --git a/dasena-web/public/assets/admin/scss/themes/options/_theme-options-navigation.scss b/dasena-web/public/assets/admin/scss/themes/options/_theme-options-navigation.scss
new file mode 100644
index 0000000..ea3a53f
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/themes/options/_theme-options-navigation.scss
@@ -0,0 +1,85 @@
+/*
+<--!----------------------------------------------------------------!-->
+<--! Navigation Dark !-->
+<--!----------------------------------------------------------------!-->
+*/
+html {
+ &.app-navigation-dark {
+ .nxl-navigation {
+ background: $navigation-background;
+ .m-header {
+ background: $header-brand-color;
+ border-right: 1px solid $navigation-border-color;
+ border-bottom: 1px solid lighten($header-brand-color, 5);
+ .logo-lg {
+ filter: invert(1);
+ }
+ }
+ .navbar-content {
+ border-right: 1px solid $navigation-border-color;
+ .nxl-caption {
+ color: $navigation-caption;
+ }
+ .nxl-link {
+ color: $navigation-color;
+ &:active,
+ &:focus,
+ &:hover {
+ color: $navigation-active-color;
+ .nxl-micon {
+ i {
+ color: $navigation-active-color;
+ }
+ }
+ }
+ }
+ .nxl-navbar {
+ > .nxl-item {
+ &.active,
+ &:focus,
+ &:hover {
+ > .nxl-link {
+ background-color: $navigation-hover-color;
+ }
+ }
+ }
+ }
+ .nxl-item {
+ &.active,
+ &:focus,
+ &:hover {
+ > .nxl-link {
+ color: $navigation-active-color;
+ background-color: $navigation-hover-color;
+ .nxl-micon {
+ i {
+ color: $navigation-active-color;
+ }
+ }
+ }
+ }
+ }
+ .card {
+ margin: 20px;
+ border-color: $brand-dark;
+ color: rgba(255, 255, 255, 0.6);
+ background: rgba(255, 255, 255, 0.05);
+ box-shadow: 0 0 0 1px rgb(0 0 0 / 15%);
+ .text-dark {
+ color: $white !important;
+ }
+ }
+ }
+ }
+ &.minimenu {
+ .nxl-navigation {
+ &:hover {
+ .navbar-content {
+ background-color: $navigation-background;
+ border-right: 1px solid $navigation-border-color;
+ }
+ }
+ }
+ }
+ }
+}
diff --git a/dasena-web/public/assets/admin/scss/themes/options/_theme-options.scss b/dasena-web/public/assets/admin/scss/themes/options/_theme-options.scss
new file mode 100644
index 0000000..5a28883
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/themes/options/_theme-options.scss
@@ -0,0 +1,10 @@
+/*
+<--!----------------------------------------------------------------!-->
+<--! Theme Options !-->
+<--!----------------------------------------------------------------!-->
+*/
+@import "theme-options-customizer";
+@import "theme-options-navigation";
+@import "theme-options-header";
+@import "theme-options-dark-theme";
+@import "theme-options-font";
diff --git a/dasena-web/public/assets/admin/scss/themes/pages/_analytics.scss b/dasena-web/public/assets/admin/scss/themes/pages/_analytics.scss
new file mode 100644
index 0000000..854f536
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/themes/pages/_analytics.scss
@@ -0,0 +1,5 @@
+/*
+<--!----------------------------------------------------------------!-->
+<--! Analytics !-->
+<--!----------------------------------------------------------------!-->
+*/
diff --git a/dasena-web/public/assets/admin/scss/themes/pages/_authentication.scss b/dasena-web/public/assets/admin/scss/themes/pages/_authentication.scss
new file mode 100644
index 0000000..5a35d1f
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/themes/pages/_authentication.scss
@@ -0,0 +1,97 @@
+/*
+<--!----------------------------------------------------------------!-->
+<--! Authentication SCSS Start !-->
+<--!----------------------------------------------------------------!-->
+*/
+/*auth-minimal*/
+.auth-minimal-wrapper {
+ display: flex;
+ flex-direction: column;
+ min-height: 100vh;
+ .auth-minimal-inner {
+ display: flex;
+ flex-direction: column;
+ min-height: 100vh;
+ padding: 0;
+ .minimal-card-wrapper {
+ width: 100%;
+ max-width: 450px;
+ margin: auto auto;
+ }
+ }
+}
+/*auth-cover*/
+.auth-cover-wrapper {
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ .auth-cover-content-inner {
+ float: left;
+ display: flex;
+ flex-direction: column;
+ min-height: 100vh;
+ width: 100%;
+ max-width: calc(100% - 550px);
+ .auth-cover-content-wrapper {
+ display: flex;
+ flex-direction: column;
+ min-height: 100vh;
+ padding: 0;
+ .auth-img {
+ width: 600px;
+ margin: auto auto;
+ }
+ }
+ }
+ .auth-cover-sidebar-inner {
+ float: right;
+ display: flex;
+ flex-direction: column;
+ min-height: 100vh;
+ width: 100%;
+ max-width: 550px;
+ background-color: $white;
+ box-shadow: $card-shadow;
+ .auth-cover-card-wrapper {
+ display: flex;
+ flex-direction: column;
+ min-height: 100vh;
+ padding: 0;
+ .auth-cover-card {
+ width: 100%;
+ max-width: 450px;
+ margin: auto auto;
+ }
+ }
+ }
+}
+/*auth-creative*/
+.auth-creative-wrapper {
+ display: flex;
+ flex-direction: column;
+ min-height: 100vh;
+ .auth-creative-inner {
+ display: flex;
+ flex-direction: column;
+ min-height: 100vh;
+ padding: 0;
+ &:after {
+ top: 0;
+ bottom: 0;
+ width: 50%;
+ content: "";
+ position: fixed;
+ background: $gray-200;
+ }
+ .creative-card-wrapper {
+ width: 100%;
+ max-width: 1000px;
+ margin: auto auto;
+ .creative-card-body {
+ width: 100%;
+ max-width: 450px;
+ margin: auto auto;
+ }
+ }
+ }
+}
diff --git a/dasena-web/public/assets/admin/scss/themes/pages/_customers-create.scss b/dasena-web/public/assets/admin/scss/themes/pages/_customers-create.scss
new file mode 100644
index 0000000..2e4a359
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/themes/pages/_customers-create.scss
@@ -0,0 +1,25 @@
+/*
+<--!----------------------------------------------------------------!-->
+<--! Customers Create !-->
+<--!----------------------------------------------------------------!-->
+*/
+.customers-nav-tabs {
+ margin-bottom: -1px;
+ .nav-item {
+ .nav-link {
+ border: none;
+ padding: 20px 30px;
+ color: $brand-dark;
+ font-weight: $font-600;
+ border-radius: $radius-none;
+ border-bottom: 3px solid transparent;
+ transition: all 0.3s ease;
+ &.active {
+ color: $primary;
+ border-bottom: 3px solid $primary;
+ background-color: $bg-soft-primary;
+ transition: all 0.3s ease;
+ }
+ }
+ }
+}
diff --git a/dasena-web/public/assets/admin/scss/themes/pages/_customers-view.scss b/dasena-web/public/assets/admin/scss/themes/pages/_customers-view.scss
new file mode 100644
index 0000000..c3fa5c7
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/themes/pages/_customers-view.scss
@@ -0,0 +1,25 @@
+/*
+<--!----------------------------------------------------------------!-->
+<--! Customers View !-->
+<--!----------------------------------------------------------------!-->
+*/
+.customers-nav-tabs {
+ margin-bottom: -1px;
+ .nav-item {
+ .nav-link {
+ border: none;
+ padding: 20px 30px;
+ color: $brand-dark;
+ font-weight: $font-600;
+ border-radius: $radius-none;
+ border-bottom: 3px solid transparent;
+ transition: all 0.3s ease;
+ &.active {
+ color: $primary;
+ border-bottom: 3px solid $primary;
+ background-color: $bg-soft-primary;
+ transition: all 0.3s ease;
+ }
+ }
+ }
+}
diff --git a/dasena-web/public/assets/admin/scss/themes/pages/_dashboard.scss b/dasena-web/public/assets/admin/scss/themes/pages/_dashboard.scss
new file mode 100644
index 0000000..ee06860
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/themes/pages/_dashboard.scss
@@ -0,0 +1,10 @@
+/*
+<--!----------------------------------------------------------------!-->
+<--! Dashboard !-->
+<--!----------------------------------------------------------------!-->
+*/
+#leads-overview-donut {
+ .apexcharts-canvas {
+ margin: auto;
+ }
+}
diff --git a/dasena-web/public/assets/admin/scss/themes/pages/_help-desk.scss b/dasena-web/public/assets/admin/scss/themes/pages/_help-desk.scss
new file mode 100644
index 0000000..7c44687
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/themes/pages/_help-desk.scss
@@ -0,0 +1,295 @@
+/** =====================
+ Help Desk Application css start
+========================== **/
+
+.hd-body {
+ .excerpt {
+ padding: 15px;
+ background: $body-bg;
+ border: 1px solid $border-color;
+ }
+
+ .ticket-customer,
+ .ticket-type-icon {
+ display: block;
+ text-transform: capitalize;
+ }
+
+ &:hover .hover-blk {
+ transform: scale(1);
+ }
+}
+
+.sm-view {
+ .card-body {
+ .excerpt,
+ ul.list-inline {
+ display: none;
+ }
+ }
+}
+
+.md-view {
+ .excerpt {
+ display: none;
+ }
+}
+
+.md-view,
+.sm-view {
+ .col-auto {
+ ul {
+ li:nth-child(1),
+ li:nth-child(3) {
+ display: none;
+ }
+ }
+ }
+}
+
+.hover-blk {
+ background: #fff;
+ width: 270px;
+ left: calc(100% + 10px);
+ transform: scale(0);
+ z-index: 5;
+ transition: all 0.1s ease-out;
+
+ .img-txt p {
+ display: inline-block;
+ }
+}
+
+.topic-name {
+ h1 {
+ float: left;
+ font-weight: normal;
+ }
+
+ .btn-star {
+ float: right;
+ }
+}
+
+.dicon-blk {
+ top: 0;
+ right: 0;
+
+ li {
+ display: inline-block;
+ }
+}
+
+.hd-detail {
+ .col-right {
+ .edit-del {
+ opacity: 0;
+
+ i {
+ opacity: 0.2;
+
+ &:hover {
+ opacity: 1;
+ }
+ }
+ }
+ }
+
+ &:hover {
+ .edit-del {
+ opacity: 1;
+ }
+ }
+}
+
+.hdd-user {
+ i {
+ bottom: 0;
+ }
+}
+
+.ticket-block {
+ .hd-body {
+ border-left: 3px solid #ccc;
+ }
+
+ .col.border-right {
+ border-color: #ccc!important;
+ }
+
+ .ticket-type-icon {
+ font-weight: 500;
+ color: #111;
+ }
+
+ .excerpt {
+ h6 {
+ color: #686c71;
+ font-weight: 500;
+
+ a {
+ color: #686c71;
+
+ &:hover {
+ text-decoration: underline!important;
+ color: #111;
+ }
+ }
+ }
+ }
+}
+
+.ticket-block.open-tic {
+ .hd-body {
+ border-color: #ea394a;
+ // background-color: rgba(234, 57, 74,0.1);
+ }
+}
+
+.ticket-block.close-tic {
+ .hd-body {
+ border-color: #5AC17F;
+ // background-color: rgba(90,193,127,0.1);
+ }
+}
+
+.right-col {
+ .card-footer {
+ label {
+ font-weight: 500;
+ }
+ }
+}
+
+.hdd-right-inner .select2-container--default {
+ margin-bottom: 10px;
+
+ .select2-selection {
+ border-color: $border-color;
+ }
+}
+
+.hdd-right-side {
+ width: 495px;
+
+ .hdd-right-inner {
+ position: fixed;
+ width: 465px;
+ }
+}
+
+.span-content {
+ a {
+ padding: 0 7px;
+ }
+}
+
+.file-btn {
+ position: relative;
+ overflow: hidden;
+
+ input {
+ position: absolute;
+ font-size: 50px;
+ opacity: 0;
+ right: 0;
+ top: 0;
+ }
+}
+@media (max-width: 992px) {
+ .hd-detail .col-right .edit-del {
+ opacity: 1;
+ }
+}
+@media only screen and(max-width:767px) {
+ .hdd-right-side {
+ width: 100%;
+
+ .hdd-right-inner {
+ position: static;
+ width: 100%;
+ }
+ }
+}
+@media (max-width: 575px) {
+ .q-view .content {
+ width: 450px;
+ }
+}
+@media (max-width: 380px) {
+ .q-view .content {
+ width: 300px;
+ }
+}
+// ====================== new q view ======================
+
+#qviewModal {
+ &.fade {
+ .q-view-modal.modal-dialog {
+ transform: translateX(550px);
+ }
+ }
+
+ &.show {
+ padding-right: 0 !important;
+
+ .q-view-modal.modal-dialog {
+ transform: none;
+ }
+ }
+}
+
+.q-view-modal {
+ margin: 0;
+
+ .modal-content {
+ height: 100vh;
+ border-radius: 0;
+ border: none;
+
+ .modal-body {
+ flex: 1 1 100%;
+
+ .trumbowyg-box,
+ .trumbowyg-editor {
+ min-height: 110px;
+ }
+ }
+ }
+ @media (min-width: 576px) {
+ &.modal-dialog {
+ max-width: 550px;
+ margin: 0 0 0 auto;
+ }
+ }
+}
+
+.ticket-card {
+ &.open-ticket {
+ border-left: 3px solid $danger;
+ }
+
+ &.close-ticket {
+ border-left: 3px solid $success;
+ }
+}
+
+.help-main {
+ &.sm-view {
+ .help-md-hidden,
+ .help-sm-hidden {
+ display: none;
+ }
+ }
+
+ &.md-view {
+ .help-md-hidden {
+ display: none;
+ }
+ }
+}
+.popup-trigger{
+ cursor: pointer;
+}
+// ====================== new q view ======================
+/**====== Help Desk Application css start ======**/
diff --git a/dasena-web/public/assets/admin/scss/themes/pages/_help-knowledgebase.scss b/dasena-web/public/assets/admin/scss/themes/pages/_help-knowledgebase.scss
new file mode 100644
index 0000000..e646d1f
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/themes/pages/_help-knowledgebase.scss
@@ -0,0 +1,67 @@
+/*
+<--!----------------------------------------------------------------!-->
+<--! KnowledgeBase !-->
+<--!----------------------------------------------------------------!-->
+*/
+.nxl-container {
+ .help-center-content-header {
+ height: 650px;
+ min-height: 650px;
+ max-height: 650px;
+ background-image: radial-gradient(circle, $white, #f4f6fb, #e7eef6, #d7e7f0, #c6e0e7);
+ .search-form {
+ width: 100%;
+ margin: auto;
+ }
+ }
+ .nxl-content {
+ .help-center-main-contet-area {
+ .topic-category-section,
+ .topic-tranding-section,
+ .still-question-section {
+ margin-top: 60px;
+ }
+ }
+ }
+}
+.topics-details-offcanvas {
+ width: 100% !important;
+}
+
+/*
+<--!----------------------------------------------------------------!-->
+<--! @media (min-width: 1024px) !-->
+<--!----------------------------------------------------------------!-->
+*/
+@media (min-width: 1024px) {
+ .nxl-container {
+ .help-center-content-header {
+ .search-form {
+ width: 75%;
+ }
+ }
+ .nxl-content {
+ .help-center-main-contet-area {
+ .help-quick-card {
+ margin-top: -200px;
+ }
+ .topic-category-section,
+ .topic-tranding-section,
+ .still-question-section {
+ margin-top: 150px;
+ p.wd-50 {
+ width: 100% !important;
+ }
+ }
+ }
+ }
+ .topics-details-offcanvas {
+ width: 75% !important;
+ }
+ }
+}
+@media (min-width: 1400px) {
+ .topics-details-offcanvas {
+ width: 50% !important;
+ }
+}
diff --git a/dasena-web/public/assets/admin/scss/themes/pages/_icon-lauouts.scss b/dasena-web/public/assets/admin/scss/themes/pages/_icon-lauouts.scss
new file mode 100644
index 0000000..c23fe7c
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/themes/pages/_icon-lauouts.scss
@@ -0,0 +1,33 @@
+/** =====================
+ Icon layouts css start
+========================== **/
+
+.i-main {
+ .i-block {
+ display: inline-flex;
+ align-items: center;
+ justify-content: center;
+ width: 70px;
+ height: 70px;
+ margin: 5px;
+ border: 1px solid $border-color;
+ position: relative;
+ cursor: pointer;
+
+ i {
+ font-size: 30px;
+ }
+
+ label {
+ margin-bottom: 0;
+ display: none;
+ }
+
+ span.ic-badge {
+ position: absolute;
+ bottom: 0;
+ right: 0;
+ }
+ }
+}
+/**====== Icon layouts css end ======**/
diff --git a/dasena-web/public/assets/admin/scss/themes/pages/_invoice-create.scss b/dasena-web/public/assets/admin/scss/themes/pages/_invoice-create.scss
new file mode 100644
index 0000000..96cbebe
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/themes/pages/_invoice-create.scss
@@ -0,0 +1,15 @@
+/*
+<--!----------------------------------------------------------------!-->
+<--! Pic Uploader !-->
+<--!----------------------------------------------------------------!-->
+*/
+.upload-button {
+ opacity: 0;
+ transition: all 0.3s ease;
+ &:hover {
+ opacity: 1;
+ visibility: visible;
+ transition: all 0.3s ease;
+ background-color: darken($gray-100, 1);
+ }
+}
diff --git a/dasena-web/public/assets/admin/scss/themes/pages/_maintaince.scss b/dasena-web/public/assets/admin/scss/themes/pages/_maintaince.scss
new file mode 100644
index 0000000..7a6863b
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/themes/pages/_maintaince.scss
@@ -0,0 +1,220 @@
+/** =====================
+ Authentication css start
+========================== **/
+
+.auth-wrapper {
+ &.maintance {
+ background: $body-bg;
+ }
+
+ &.offline {
+ background: radial-gradient(#94acbe, #253653);
+ .offline-wrapper {
+ position: relative;
+ width: 100%;
+ height: 100vh;
+ display: flex;
+ align-items: center;
+
+ > svg {
+ width: 100%;
+ position: absolute;
+ bottom: 0;
+ left: 0;
+ }
+
+ .boat-img {
+ animation: boatanim 12s ease-in-out infinite;
+ }
+ }
+
+ .s-img-1,
+ .s-img-2 {
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 100%;
+ }
+
+ .s-img-1 {
+ animation: sparcle 3.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
+ }
+
+ .s-img-2 {
+ animation: sparcle 3.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
+ animation-delay: 1.19s;
+ }
+ .moon {
+ background: rgba(255, 255, 255, 0.4);
+ position: absolute;
+ top: 12%;
+ left: 40%;
+ width: 150px;
+ height: 150px;
+ border-radius: 50%;
+
+ &:after,
+ &:before {
+ content: "";
+ width: 100%;
+ height: 100%;
+ border-radius: 50%;
+ position: absolute;
+ top: 0;
+ left: 0;
+ box-shadow: inset 0 0 20px 5px rgba(255, 255, 255, 0.4);
+ }
+
+ &:after {
+ animation: sunwawe 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
+ }
+
+ &:before {
+ animation: sunwawe 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
+ animation-delay: 1.15s;
+ }
+ }
+
+ .sark {
+ .img-sark {
+ width: 300px;
+ position: absolute;
+ right: -200px;
+ animation: sark 12s ease-in-out infinite;
+ }
+ .bubble{
+ background: rgba(255, 255, 255, 0.0);
+ position: absolute;
+ top: 12%;
+ left: 60%;
+ width: 30px;
+ height: 30px;
+ border-radius: 50%;
+ animation: bubble 12s ease-in-out infinite;
+ &:after,
+ &:before {
+ content: "";
+ width: 100%;
+ height: 100%;
+ border-radius: 50%;
+ position: absolute;
+ top: 0;
+ left: 0;
+ box-shadow: inset 0 0 20px 5px rgba(255, 255, 255, 0.4);
+ }
+ &:after {
+ animation: sunwawe 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
+ }
+ &:before {
+ animation: sunwawe 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
+ animation-delay: 1.15s;
+ }
+ }
+ }
+
+ .off-main {
+ position: relative;
+ height: 100%;
+ display: flex;
+ align-items: center;
+
+ .off-content {
+ position: absolute;
+ width: 100%;
+ bottom: 5%;
+ left: 0;
+ z-index: 5;
+ }
+ }
+ @media only screen and (max-width: 575px) {
+ .sark{
+ display: none;
+ }
+ .offline-wrapper {
+ > svg {
+ height: 95%;
+ }
+ }
+ .off-main {
+ .off-content {
+ h1{
+ font-size: 45px;
+ }
+ bottom: 0%;
+ }
+ }
+ .moon {
+ top: 12%;
+ width: 50px;
+ height: 50px;
+ }
+ }
+ }
+
+}
+@keyframes bubble {
+ 0%,30% {
+ opacity: 0;
+ }
+
+ 31% {
+ opacity: 1;
+ }
+
+ 59% {
+ opacity: 1;
+ }
+ 60%,100% {
+ opacity: 0;
+ }
+}
+@keyframes sark {
+ 0% {
+ transform: rotate(-10deg) translate(245px, 46px);
+ }
+
+ 30% {
+ transform: rotate(-13deg) translate(-329px, -80px);
+ }
+
+ 60% {
+ transform: rotate(-13deg) translate(-329px, -80px);
+ }
+ 100% {
+ transform: rotate(-26deg) translate(-887px, -80px);
+ }
+}
+@keyframes boatanim {
+ 0% {
+ transform: rotate(-10deg) translate(95px, -14px);
+ }
+
+ 50% {
+ transform: rotate(5deg) translate(-65px, -14px);
+ }
+
+ 100% {
+ transform: rotate(-10deg) translate(95px, -14px);
+ }
+}
+@keyframes sunwawe {
+ 0% {
+ transform: scale(1);
+ opacity: 1;
+ }
+
+ 100% {
+ transform: scale(4);
+ opacity: 0;
+ }
+}
+@keyframes sparcle {
+ 0% {
+ opacity: 0.5;
+ }
+
+ 50% {
+ opacity: 0;
+ }
+}
+/**====== Authentication css end ======**/
diff --git a/dasena-web/public/assets/admin/scss/themes/pages/_projects.scss b/dasena-web/public/assets/admin/scss/themes/pages/_projects.scss
new file mode 100644
index 0000000..34a99b1
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/themes/pages/_projects.scss
@@ -0,0 +1,47 @@
+/*
+<--!----------------------------------------------------------------!-->
+<--! Projects !-->
+<--!----------------------------------------------------------------!-->
+*/
+#projectList {
+ .single-item {
+ &:hover {
+ .project-name-td {
+ .project-list-action {
+ opacity: 1;
+ visibility: visible;
+ transition: all 0.3s ease;
+ }
+ .project-list-desc {
+ opacity: 0;
+ visibility: hidden;
+ transition: all 0.3s ease;
+ }
+ }
+ }
+ .project-name-td {
+ width: 400px;
+ white-space: normal;
+ .project-list-action {
+ opacity: 0;
+ visibility: hidden;
+ position: relative;
+ top: -40px;
+ padding-top: 5px;
+ margin-bottom: -35px;
+ background-color: transparent;
+ transition: all 0.3s ease;
+ }
+ .tickets-list-action {
+ opacity: 0;
+ visibility: hidden;
+ transition: all 0.3s ease;
+ }
+ .project-list-desc {
+ opacity: 1;
+ visibility: visible;
+ transition: all 0.3s ease;
+ }
+ }
+ }
+}
diff --git a/dasena-web/public/assets/admin/scss/themes/pages/_proposal.scss b/dasena-web/public/assets/admin/scss/themes/pages/_proposal.scss
new file mode 100644
index 0000000..8a3b815
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/themes/pages/_proposal.scss
@@ -0,0 +1,142 @@
+/*
+<--!----------------------------------------------------------------!-->
+<--! Proposal !-->
+<--!----------------------------------------------------------------!-->
+*/
+.progress-1,
+.progress-2,
+.progress-3,
+.progress-4 {
+ .circle-progress-value {
+ stroke-width: 6px;
+ stroke-linecap: round;
+ }
+ .circle-progress-circle {
+ stroke-width: 3px;
+ }
+}
+.progress-1 {
+ .circle-progress-value {
+ stroke: $primary;
+ }
+ .circle-progress-circle {
+ stroke: lighten($primary, 42);
+ }
+}
+.progress-2 {
+ .circle-progress-value {
+ stroke: $success;
+ }
+ .circle-progress-circle {
+ stroke: lighten($success, 45);
+ }
+}
+.progress-3 {
+ .circle-progress-value {
+ stroke: $warning;
+ }
+ .circle-progress-circle {
+ stroke: lighten($warning, 35);
+ }
+}
+.progress-4 {
+ .circle-progress-value {
+ stroke: $danger;
+ }
+ .circle-progress-circle {
+ stroke: lighten($danger, 35);
+ }
+}
+.proposal-action-btn {
+ display: flex;
+ .action-btn {
+ height: 60px;
+ padding: 15px 20px;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ border-left: 1px solid $border-color;
+ &.action-btn-right-border {
+ padding-right: 0;
+ }
+ i {
+ font-size: $font-15;
+ }
+ }
+}
+.proposal-faq-accordion {
+ &.accordion {
+ .accordion-item {
+ margin-bottom: 15px;
+ border-top: 1px solid $border-color;
+ .accordion-header {
+ .accordion-button {
+ padding: 25px 25px;
+ }
+ }
+ }
+ }
+}
+.task-info {
+ .task-info-list {
+ .task-list-row {
+ .avatar-text {
+ display: none;
+ }
+ &:hover {
+ .avatar-text {
+ display: flex;
+ }
+ }
+ }
+ }
+}
+
+/* checklist */
+ul#checklist {
+ li {
+ cursor: pointer;
+ position: relative;
+ font-size: $font-13;
+ margin-bottom: 10px;
+ font-weight: $font-500;
+ border-radius: $radius-sm;
+ padding: 12px 15px 12px 15px;
+ border: 1px dashed $border-color;
+ transition: all 0.3s ease;
+ &.checked {
+ color: $gray-400;
+ font-style: italic;
+ padding: 12px 15px 12px 45px;
+ background-color: lighten($gray-100, 1);
+ text-decoration: line-through;
+ transition: all 0.3s ease;
+ &:before {
+ top: 12px;
+ left: 20px;
+ width: 6px;
+ height: 12px;
+ content: "";
+ position: absolute;
+ border-style: solid;
+ border-color: $primary;
+ transform: rotate(45deg);
+ border-width: 0 1px 1px 0;
+ }
+ }
+ .close {
+ top: 0;
+ right: 0;
+ color: $danger;
+ position: absolute;
+ padding: 12px 16px 12px 16px;
+ border-left: 1px dashed $border-color;
+ &:hover {
+ color: $danger;
+ background-color: $bg-soft-danger;
+ transition: all 0.3s ease;
+ }
+ }
+ }
+}
+/* End checklist */
diff --git a/dasena-web/public/assets/admin/scss/themes/pages/_report-leads.scss b/dasena-web/public/assets/admin/scss/themes/pages/_report-leads.scss
new file mode 100644
index 0000000..3600434
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/themes/pages/_report-leads.scss
@@ -0,0 +1,40 @@
+/*
+<--!----------------------------------------------------------------!-->
+<--! Leads Report !-->
+<--!----------------------------------------------------------------!-->
+*/
+.lead-progress-1,
+.lead-progress-2,
+.lead-progress-3 {
+ .circle-progress-value {
+ stroke-width: 6px;
+ stroke-linecap: round;
+ }
+ .circle-progress-circle {
+ stroke-width: 3px;
+ }
+}
+.lead-progress-1 {
+ .circle-progress-value {
+ stroke: $primary;
+ }
+ .circle-progress-circle {
+ stroke: lighten($primary, 42);
+ }
+}
+.lead-progress-2 {
+ .circle-progress-value {
+ stroke: $success;
+ }
+ .circle-progress-circle {
+ stroke: lighten($success, 45);
+ }
+}
+.lead-progress-3 {
+ .circle-progress-value {
+ stroke: $warning;
+ }
+ .circle-progress-circle {
+ stroke: lighten($warning, 35);
+ }
+}
diff --git a/dasena-web/public/assets/admin/scss/themes/pages/_report-projects.scss b/dasena-web/public/assets/admin/scss/themes/pages/_report-projects.scss
new file mode 100644
index 0000000..b19d50e
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/themes/pages/_report-projects.scss
@@ -0,0 +1,283 @@
+/*
+<--!----------------------------------------------------------------!-->
+<--! Project Report !-->
+<--!----------------------------------------------------------------!-->
+*/
+
+.project-progress-1,
+.project-progress-2,
+.project-progress-3,
+.project-progress-4 {
+ .circle-progress {
+ width: 65px;
+ height: 65px;
+ }
+ .circle-progress-value {
+ stroke-width: 8px;
+ stroke-linecap: round;
+ }
+ .circle-progress-circle {
+ stroke-width: 5px;
+ }
+}
+.team-progress-1,
+.team-progress-2,
+.team-progress-3,
+.team-progress-4 {
+ .circle-progress {
+ width: 50px;
+ height: 50px;
+ }
+ .circle-progress-value {
+ stroke-width: 6px;
+ stroke-linecap: round;
+ }
+ .circle-progress-circle {
+ stroke-width: 3px;
+ }
+ .circle-progress-text {
+ font-size: 24px;
+ }
+}
+.team-progress-1,
+.project-progress-1 {
+ .circle-progress-value {
+ stroke: $danger;
+ }
+}
+.team-progress-2,
+.project-progress-2 {
+ .circle-progress-value {
+ stroke: $primary;
+ }
+}
+.team-progress-3,
+.project-progress-3 {
+ .circle-progress-value {
+ stroke: $warning;
+ }
+}
+.team-progress-4,
+.project-progress-4 {
+ .circle-progress-value {
+ stroke: $success;
+ }
+}
+
+.project-mini-card-badge {
+ position: absolute;
+ top: 45px;
+ left: -30px;
+ transform: rotate(270deg);
+}
+
+.calendar {
+ height: 500px;
+ overflow: hidden;
+ position: relative;
+ text-transform: capitalize;
+ text-align: center;
+ font: 15px/1em inherit;
+ color: $brand-dark;
+ a {
+ color: inherit;
+ text-decoration: none;
+ }
+ header {
+ padding: 25px 15px 20px;
+ border-bottom: 1px solid $border-color;
+ .simple-calendar-btn {
+ display: inline-block;
+ position: absolute;
+ width: 30px;
+ height: 30px;
+ text-align: center;
+ line-height: 30px;
+ color: $brand-dark;
+ border-radius: 50%;
+ border: 1px solid $border-color;
+ }
+ .simple-calendar-btn:hover {
+ color: $primary;
+ background: $gray-100;
+ }
+ .simple-calendar-btn:before {
+ content: "";
+ position: absolute;
+ top: 10px;
+ left: 10px;
+ width: 6px;
+ height: 6px;
+ border-style: solid;
+ border-width: 1px 1px 0 0;
+ transform: rotate(45deg);
+ transform-origin: center center;
+ }
+ .btn-prev {
+ top: 28px;
+ left: 20px;
+ transform: rotate(-180deg);
+ }
+ .btn-next {
+ top: 28px;
+ right: 20px;
+ &:before {
+ transform: rotate(45deg);
+ }
+ }
+ .month {
+ padding: 0;
+ margin: 0;
+ font-size: $font-14;
+ text-transform: $font-uppercase;
+ .year {
+ margin-top: 5px;
+ color: $brand-muted;
+ font-size: $font-12;
+ font-weight: $font-400;
+ }
+ }
+ }
+ table {
+ width: 100%;
+ border-spacing: 0px;
+ }
+ thead {
+ font-size: $font-11;
+ font-weight: $font-700;
+ text-transform: $font-uppercase;
+ }
+ td {
+ padding: 15px 5px;
+ }
+ .day {
+ color: $brand-dark;
+ font-size: $font-12;
+ font-weight: $font-500;
+ position: relative;
+ display: inline-block;
+ width: 2.5em;
+ height: 2.5em;
+ line-height: 2.5em;
+ border-radius: 50%;
+ border: 2px solid transparent;
+ cursor: pointer;
+ &:hover {
+ border: 2px solid $blue;
+ }
+ &.today {
+ background: $blue;
+ color: white;
+ &.has-event:after {
+ background: white;
+ }
+ }
+ &.wrong-month {
+ color: $gray-500;
+ }
+ &.wrong-month:hover {
+ border: 2px solid transparent;
+ }
+ &.has-event {
+ color: $primary;
+ background: $gray-100;
+ &:after {
+ content: "";
+ position: absolute;
+ top: calc(50% + 0.6em);
+ left: calc(50% - 2px);
+ width: 4px;
+ height: 4px;
+ border-radius: 50%;
+ background: $blue;
+ }
+ }
+ &.disabled {
+ cursor: default;
+ &:hover {
+ border: 2px solid transparent;
+ }
+ }
+ }
+ .event-container {
+ display: none;
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ padding: 30px 30px;
+ background: $gray-100;
+ box-sizing: border-box;
+ border-radius: $radius-lg;
+ .event-wrapper {
+ overflow-y: auto;
+ max-height: 100%;
+ }
+ .close {
+ position: absolute;
+ width: 10px;
+ height: 10px;
+ top: 15px;
+ right: 15px;
+ cursor: pointer;
+ &:before,
+ &:after {
+ content: "";
+ position: absolute;
+ top: 0;
+ left: 50%;
+ width: 2px;
+ height: 100%;
+ background-color: $danger;
+ }
+ &:before {
+ transform: rotate(45deg);
+ }
+ &:after {
+ transform: rotate(-45deg);
+ }
+ }
+ .event {
+ position: relative;
+ width: 100%;
+ padding: 1em;
+ margin-bottom: 1em;
+ background: $blue;
+ border-radius: 4px;
+ box-sizing: border-box;
+ box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.12);
+ text-align: left;
+ color: white;
+ &-date {
+ margin-bottom: 1em;
+ }
+ &-hour {
+ float: right;
+ }
+ &-summary {
+ font-weight: 600;
+ }
+ }
+ }
+ .filler {
+ position: absolute;
+ width: 0;
+ height: 0;
+ border-radius: 50%;
+ background: $gray-200;
+ transform: translate(-50%, -50%);
+ }
+}
+
+.project-report-table {
+ .table {
+ tr {
+ td {
+ padding: 18.5px 15px;
+ white-space: nowrap;
+ vertical-align: middle;
+ }
+ }
+ }
+}
diff --git a/dasena-web/public/assets/admin/scss/themes/pages/_report-sales.scss b/dasena-web/public/assets/admin/scss/themes/pages/_report-sales.scss
new file mode 100644
index 0000000..8267ed6
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/themes/pages/_report-sales.scss
@@ -0,0 +1,99 @@
+/*
+<--!----------------------------------------------------------------!-->
+<--! Sales Report !-->
+<--!----------------------------------------------------------------!-->
+*/
+.nxl-container {
+ .nxl-content {
+ .main-content {
+ .sales-pipeline-tabs {
+ .nav-item {
+ .nav-link {
+ padding: 15px 30px;
+ color: $brand-dark;
+ background-color: $white;
+ border-radius: $radius-sm;
+ border: 1px dashed $border-color-2;
+ &.active {
+ color: $black;
+ border: 1px dashed $gray-500;
+ }
+ }
+ }
+ }
+ .upcoming-event-report-lead {
+ .list-group-item {
+ padding-top: 25px;
+ padding-bottom: 26px;
+ }
+ }
+ }
+ }
+}
+
+.goal-prigress {
+ .circle-progress {
+ width: 225px;
+ height: 225px;
+ }
+ .circle-progress-value {
+ stroke-width: 5px;
+ stroke: $primary;
+ stroke-linecap: round;
+ }
+ .circle-progress-circle {
+ stroke: $white;
+ stroke-width: 15px;
+ fill: $bg-soft-primary;
+ }
+ .circle-progress-text {
+ fill: $brand-dark;
+ font-size: $font-13;
+ font-weight: $font-700;
+ }
+}
+
+.sales-progress-1,
+.sales-progress-2,
+.sales-progress-3,
+.sales-progress-4 {
+ .circle-progress-value {
+ stroke-width: 6px;
+ stroke-linecap: round;
+ }
+ .circle-progress-circle {
+ stroke-width: 3px;
+ }
+}
+.sales-progress-1 {
+ .circle-progress-value {
+ stroke: $primary;
+ }
+ .circle-progress-circle {
+ stroke: lighten($primary, 42);
+ }
+}
+.sales-progress-2 {
+ .circle-progress-value {
+ stroke: $success;
+ }
+ .circle-progress-circle {
+ stroke: lighten($success, 45);
+ }
+}
+.sales-progress-3 {
+ .circle-progress-value {
+ stroke: $warning;
+ }
+ .circle-progress-circle {
+ stroke: lighten($warning, 35);
+ }
+}
+.sales-progress-4 {
+ .circle-progress-value {
+ stroke: $danger;
+ }
+ .circle-progress-circle {
+ stroke: lighten($danger, 35);
+ }
+}
diff --git a/dasena-web/public/assets/admin/scss/themes/pages/_report-tmesheets.scss b/dasena-web/public/assets/admin/scss/themes/pages/_report-tmesheets.scss
new file mode 100644
index 0000000..90efde1
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/themes/pages/_report-tmesheets.scss
@@ -0,0 +1,35 @@
+/*
+<--!----------------------------------------------------------------!-->
+<--! Timesheets Report !-->
+<--!----------------------------------------------------------------!-->
+*/
+.times-progress-chart,
+.tasks-progress-chart,
+.projects-progress-chart {
+ .circle-progress {
+ width: 200px;
+ height: 200px;
+ }
+ .circle-progress-value {
+ stroke-width: 6px;
+ stroke-linecap: round;
+ }
+ .circle-progress-circle {
+ stroke-width: 4px;
+ }
+}
+.times-progress-chart {
+ .circle-progress-value {
+ stroke: $danger;
+ }
+}
+.tasks-progress-chart {
+ .circle-progress-value {
+ stroke: $primary;
+ }
+}
+.projects-progress-chart {
+ .circle-progress-value {
+ stroke: $warning;
+ }
+}
diff --git a/dasena-web/public/assets/admin/scss/themes/plugins/_bar-rating.scss b/dasena-web/public/assets/admin/scss/themes/plugins/_bar-rating.scss
new file mode 100644
index 0000000..cd1db87
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/themes/plugins/_bar-rating.scss
@@ -0,0 +1,242 @@
+.br-theme-bars-1to10 {
+ .br-widget {
+ a {
+ background-color: lighten($warning,30%);
+
+ &.br-active,
+ &.br-selected {
+ background-color: $warning;
+ }
+ }
+
+ .br-current-rating {
+ color: $warning;
+ }
+ }
+
+ .br-readonly {
+ a {
+ &.br-active,
+ &.br-selected {
+ background-color: $warning;
+ }
+ }
+
+ .br-current-rating {
+ color: lighten($warning,20%);
+ }
+ }
+}
+
+.br-theme-bars-horizontal {
+ .br-widget {
+ a {
+ background-color: lighten($warning,30%);
+
+ &.br-active,
+ &.br-selected {
+ background-color: $warning;
+ }
+ }
+
+ .br-current-rating {
+ color: $warning;
+ }
+ }
+
+ .br-readonly {
+ a {
+ &.br-active,
+ &.br-selected {
+ background-color: lighten($warning,30%);
+ }
+ }
+
+ .br-current-rating {
+ color: lighten($warning,30%);
+ }
+ }
+}
+
+.br-theme-bars-movie {
+ .br-widget {
+ height: auto;
+
+ a {
+ background-color: lighten($primary,30%);
+
+ &.br-active,
+ &.br-selected {
+ background-color: $primary;
+ }
+ }
+
+ .br-current-rating {
+ color: $primary;
+ }
+ }
+
+ .br-readonly {
+ a {
+ &.br-active,
+ &.br-selected {
+ background-color: lighten($primary,20%);
+ }
+ }
+
+ .br-current-rating {
+ color: lighten($primary,20%);
+ }
+ }
+}
+
+.br-theme-bars-pill {
+ .br-widget {
+ a {
+ background-color: lighten($success,45%);
+ color: $success;
+
+ &.br-active,
+ &.br-selected {
+ background-color: $success;
+ }
+ }
+ }
+
+ .br-readonly a {
+ &.br-active,
+ &.br-selected {
+ background-color: lighten($success,10%);
+ }
+ }
+}
+
+.br-theme-bars-reversed {
+ .br-widget {
+ a {
+ background-color: lighten($info,45%);
+ color: $info;
+
+ &.br-active,
+ &.br-selected {
+ background-color: $info;
+ }
+ }
+
+ .br-current-rating {
+ color: $info;
+ width: 100%;
+ padding: 0;
+ margin-top: 15px;
+ }
+ }
+
+ .br-readonly {
+ a {
+ &.br-active,
+ &.br-selected {
+ background-color: lighten($info,10%);
+ }
+ }
+
+ .br-current-rating {
+ color: lighten($info,10%);
+ }
+ }
+}
+
+.br-theme-bars-square {
+ .br-widget {
+ a {
+ border: 2px solid lighten($danger,25%);
+ color: lighten($danger,25%);
+
+ &.br-active,
+ &.br-selected {
+ border: 2px solid $danger;
+ color: $danger;
+ }
+ }
+ }
+
+ .br-readonly a {
+
+ &.br-active,
+ &.br-selected {
+ border: 2px solid lighten($danger,10%);
+ color: lighten($danger,10%);
+ }
+ }
+}
+
+.br-theme-bootstrap-stars {
+ .br-widget {
+ a {
+ &:after {
+ color: darken($body-bg,3%);
+ }
+
+ &.br-active:after,
+ &.br-selected:after {
+ color: $warning;
+ }
+ }
+ }
+}
+
+.br-theme-css-stars {
+ .br-widget {
+ a {
+ &:after {
+ color: darken($body-bg,3%);
+ }
+
+ &.br-active:after,
+ &.br-selected:after {
+ color: $warning;
+ }
+ }
+ }
+}
+
+.br-theme-fontawesome-stars {
+ .br-widget {
+
+ a {
+ font-family: "Font Awesome 5 Free";
+ font-weight: 900;
+ font-size: 18px;
+ &:after {
+ content: "\f005";
+ color: darken($body-bg,3%);
+ }
+
+ &.br-active:after,
+ &.br-selected:after {
+ color: $warning;
+ }
+ }
+ }
+}
+
+.br-theme-fontawesome-stars-o .br-widget {
+ a {
+ font-family: "Font Awesome 5 Free";
+ font-weight: 900;
+ font-size: 18px;
+ &:after {
+ content: "\f005";
+ color: darken($body-bg,3%);
+ }
+
+ &.br-active:after,
+ &.br-selected:after {
+ color: $success;
+ }
+
+ &.br-fractional:after {
+ content: "\f5c0";
+ color: $success;
+ }
+ }
+}
diff --git a/dasena-web/public/assets/admin/scss/themes/plugins/_circle-progress.scss b/dasena-web/public/assets/admin/scss/themes/plugins/_circle-progress.scss
new file mode 100644
index 0000000..2142ce5
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/themes/plugins/_circle-progress.scss
@@ -0,0 +1,19 @@
+/*
+<--!----------------------------------------------------------------!-->
+<--! Circle Progress !-->
+<--!----------------------------------------------------------------!-->
+*/
+.circle-progress-value {
+ stroke: $primary;
+ stroke-width: 3px;
+}
+.circle-progress-circle {
+ stroke: $gray-200;
+ stroke-width: 3px;
+}
+.circle-progress-text {
+ fill: $brand-dark;
+ color: $brand-dark;
+ font-size: $font-13;
+ font-weight: $font-600;
+}
diff --git a/dasena-web/public/assets/admin/scss/themes/plugins/_dataTables.scss b/dasena-web/public/assets/admin/scss/themes/plugins/_dataTables.scss
new file mode 100644
index 0000000..969e9f0
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/themes/plugins/_dataTables.scss
@@ -0,0 +1,26 @@
+/*
+<--!----------------------------------------------------------------!-->
+<--! dataTables !-->
+<--!----------------------------------------------------------------!-->
+*/
+.dataTables_wrapper {
+ .row {
+ &:first-child,
+ &:last-child {
+ padding: 25px 25px;
+ }
+ &:first-child {
+ border-bottom: 1px solid $border-color-2;
+ }
+ &:last-child {
+ border-top: 1px solid $border-color-2;
+ }
+ }
+}
+.dataTables_paginate {
+ .page-link,
+ .active > .page-link,
+ .page-link.active {
+ border-radius: $radius-sm;
+ }
+}
diff --git a/dasena-web/public/assets/admin/scss/themes/plugins/_daterange.scss b/dasena-web/public/assets/admin/scss/themes/plugins/_daterange.scss
new file mode 100644
index 0000000..1706477
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/themes/plugins/_daterange.scss
@@ -0,0 +1,8 @@
+/*
+<--!----------------------------------------------------------------!-->
+<--! Date Range Picker !-->
+<--!----------------------------------------------------------------!-->
+*/
+.daterangepicker {
+ top: 133px;
+}
diff --git a/dasena-web/public/assets/admin/scss/themes/plugins/_jauery-steps.scss b/dasena-web/public/assets/admin/scss/themes/plugins/_jauery-steps.scss
new file mode 100644
index 0000000..11ce3ca
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/themes/plugins/_jauery-steps.scss
@@ -0,0 +1,86 @@
+/*
+<--!----------------------------------------------------------------!-->
+<--! jQuery-Steps !-->
+<--!----------------------------------------------------------------!-->
+*/
+.wizard {
+ > .content {
+ margin: auto;
+ max-width: 600px;
+ padding: 70px 0px;
+ }
+ > .actions {
+ margin-top: 30px;
+ padding: 25px 25px;
+ border-top: 1px solid $border-color;
+ > ul {
+ width: auto;
+ border-bottom: none;
+ text-align: inherit;
+ display: flex;
+ justify-content: space-between;
+ > li {
+ flex-grow: 0 !important;
+ }
+ }
+ }
+ .steps {
+ transform: translateY(0px);
+ transition: all 0.3s ease;
+ &.sticky {
+ left: 0;
+ right: 0;
+ z-index: 9999;
+ position: fixed;
+ background-color: $white;
+ width: -webkit-fill-available;
+ transform: translateY(-98px);
+ transition: all 0.3s ease;
+
+ a,
+ a:hover,
+ a:active {
+ padding: 22px 25px 20px;
+ transition: all 0.3s ease;
+ }
+ }
+ }
+}
+.wizard > .actions > ul > li,
+.wizard > .steps > ul > li {
+ float: left;
+ flex: 0 0;
+ flex-basis: 0;
+ flex-grow: 1;
+ text-align: center;
+ border-top: 1px solid $border-color;
+ border-right: 1px solid $border-color;
+ &:last-child {
+ border-right: none;
+ }
+}
+
+.wizard > .actions > ul > li {
+ border-right: none;
+}
+
+.wizard > .steps a,
+.wizard > .steps a:active,
+.wizard > .steps a:hover {
+ margin: 0 0;
+ padding: 30px 25px 25px;
+ font-size: $font-11;
+ text-transform: $font-uppercase;
+ letter-spacing: $text-spacing-md;
+}
+
+.tabcontrol ul,
+.wizard ul[role="tablist"] {
+ width: 100%;
+ display: flex;
+ flex-wrap: wrap;
+ padding-left: 0;
+ margin-bottom: 0;
+ list-style: none;
+ border-bottom: 1px solid $border-color;
+}
diff --git a/dasena-web/public/assets/admin/scss/themes/plugins/_lightbox.scss b/dasena-web/public/assets/admin/scss/themes/plugins/_lightbox.scss
new file mode 100644
index 0000000..e54ec5f
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/themes/plugins/_lightbox.scss
@@ -0,0 +1,19 @@
+.lb-cancel {
+ background: url("../images/loading.gif") no-repeat;
+}
+
+.lb-nav a.lb-prev {
+ background: url("../images/prev.png") left 48% no-repeat;
+}
+
+.lb-nav a.lb-next {
+ background: url("../images/next.png") right 48% no-repeat;
+}
+
+.lb-data .lb-caption a {
+ color: $primary;
+}
+
+.lb-data .lb-close {
+ background: url("../images/close.png") top right no-repeat;
+}
diff --git a/dasena-web/public/assets/admin/scss/themes/plugins/_maxlength.scss b/dasena-web/public/assets/admin/scss/themes/plugins/_maxlength.scss
new file mode 100644
index 0000000..d3d4144
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/themes/plugins/_maxlength.scss
@@ -0,0 +1,15 @@
+.bootstrap-maxlength {
+ background: $primary;
+ border-radius: $card-border-radius;
+ padding: 5px 10px;
+ color: #fff;
+ &.label-danger{
+ background: theme-color("danger");
+ }
+ &.label-success{
+ background: theme-color("success");
+ }
+ &.label-warning{
+ background: theme-color("warning");
+ }
+}
diff --git a/dasena-web/public/assets/admin/scss/themes/plugins/_notification.scss b/dasena-web/public/assets/admin/scss/themes/plugins/_notification.scss
new file mode 100644
index 0000000..c9a66f1
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/themes/plugins/_notification.scss
@@ -0,0 +1,72 @@
+.alert-dismissable .close,
+.alert-dismissible .close {
+ color: inherit;
+ text-shadow: none;
+}
+@-webkit-keyframes progress-bar-stripes {
+ from {
+ background-position: 40px 0;
+ }
+
+ to {
+ background-position: 0 0;
+ }
+}
+@keyframes progress-bar-stripes {
+ from {
+ background-position: 40px 0;
+ }
+
+ to {
+ background-position: 0 0;
+ }
+}
+
+.alert-inverse {
+ background-color: #333;
+ border-color: transparent;
+ color: #fff;
+
+ .close {
+ position: relative;
+ top: -2px;
+ right: -21px;
+ color: #fff;
+ text-shadow: none;
+ }
+
+ .alert-link {
+ color: #e6e6e6;
+ }
+}
+
+.growl-animated {
+ &.alert-inverse {
+ box-shadow: 0 0 5px rgba(51, 51, 51, 0.5);
+ }
+
+ &.alert-info {
+ box-shadow: 0 0 5px transparentize($primary, 0.5);
+ }
+
+ &.alert-success {
+ box-shadow: 0 0 5px transparentize($success, 0.5);
+ }
+
+ &.alert-warning {
+ box-shadow: 0 0 5px transparentize($warning, 0.5);
+ }
+
+ &.alert-danger {
+ box-shadow: 0 0 5px transparentize($danger, 0.5);
+ }
+}
+
+[data-notify="progressbar"] {
+ margin-bottom: 0;
+ position: absolute;
+ bottom: 0;
+ left: 0;
+ width: 100%;
+ height: 5px;
+}
diff --git a/dasena-web/public/assets/admin/scss/themes/plugins/_pace.scss b/dasena-web/public/assets/admin/scss/themes/plugins/_pace.scss
new file mode 100644
index 0000000..0f3b240
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/themes/plugins/_pace.scss
@@ -0,0 +1,23 @@
+/*
+<--!----------------------------------------------------------------!-->
+<--! Pacejs SCSS Start !-->
+<--!----------------------------------------------------------------!-->
+*/
+.pace {
+ user-select: none;
+ pointer-events: none;
+}
+
+.pace-inactive {
+ display: none;
+}
+
+.pace .pace-progress {
+ top: 0;
+ right: 100%;
+ width: 100%;
+ height: 3px;
+ z-index: 2000;
+ position: fixed;
+ background: #3454d1;
+}
diff --git a/dasena-web/public/assets/admin/scss/themes/plugins/_perfect-scrollbar.scss b/dasena-web/public/assets/admin/scss/themes/plugins/_perfect-scrollbar.scss
new file mode 100644
index 0000000..52d9da3
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/themes/plugins/_perfect-scrollbar.scss
@@ -0,0 +1,118 @@
+/*
+ * Container style
+ */
+.ps {
+ overflow: hidden !important;
+ overflow-anchor: none;
+ -ms-overflow-style: none;
+ touch-action: auto;
+ -ms-touch-action: auto;
+}
+
+/*
+ * Scrollbar rail styles
+ */
+
+.ps__rail-x {
+ display: none;
+ opacity: 0;
+ transition: background-color .2s linear, opacity .2s linear;
+ -webkit-transition: background-color .2s linear, opacity .2s linear;
+ height: 15px;
+ /* there must be 'bottom' or 'top' for ps__rail-x */
+ bottom: 0px;
+ /* please don't change 'position' */
+ position: absolute;
+}
+
+
+.ps__rail-y {
+ display: none;
+ opacity: 0;
+ transition: background-color .2s linear, opacity .2s linear;
+ -webkit-transition: background-color .2s linear, opacity .2s linear;
+ width: 15px;
+ /* there must be 'right' or 'left' for ps__rail-y */
+ right: 0;
+ /* please don't change 'position' */
+ position: absolute;
+}
+
+.ps--active-x > .ps__rail-x,
+.ps--active-y > .ps__rail-y {
+ display: block;
+ background-color: transparent;
+}
+
+.ps:hover > .ps__rail-x,
+.ps:hover > .ps__rail-y,
+.ps--focus > .ps__rail-x,
+.ps--focus > .ps__rail-y,
+.ps--scrolling-x > .ps__rail-x,
+.ps--scrolling-y > .ps__rail-y {
+ opacity: 0.6;
+}
+
+.ps .ps__rail-x:hover,
+.ps .ps__rail-y:hover,
+.ps .ps__rail-x:focus,
+.ps .ps__rail-y:focus,
+.ps .ps__rail-x.ps--clicking,
+.ps .ps__rail-y.ps--clicking {
+ background-color: #eee;
+ opacity: 0.9;
+}
+
+/*
+ * Scrollbar thumb styles
+ */
+.ps__thumb-x {
+ background-color: #aaa;
+ border-radius: 6px;
+ transition: background-color .2s linear, height .2s ease-in-out;
+ -webkit-transition: background-color .2s linear, height .2s ease-in-out;
+ height: 6px;
+ /* there must be 'bottom' for ps__thumb-x */
+ bottom: 2px;
+ /* please don't change 'position' */
+ position: absolute;
+}
+
+.ps__thumb-y {
+ background-color: #aaa;
+ border-radius: 6px;
+ transition: background-color .2s linear, width .2s ease-in-out;
+ -webkit-transition: background-color .2s linear, width .2s ease-in-out;
+ width: 6px;
+ /* there must be 'right' for ps__thumb-y */
+ right: 2px;
+ /* please don't change 'position' */
+ position: absolute;
+}
+
+.ps__rail-x:hover > .ps__thumb-x,
+.ps__rail-x:focus > .ps__thumb-x,
+.ps__rail-x.ps--clicking .ps__thumb-x {
+ background-color: #999;
+ height: 11px;
+}
+
+.ps__rail-y:hover > .ps__thumb-y,
+.ps__rail-y:focus > .ps__thumb-y,
+.ps__rail-y.ps--clicking .ps__thumb-y {
+ background-color: #999;
+ width: 11px;
+}
+
+/* MS supports */
+@supports (-ms-overflow-style: none) {
+ .ps {
+ overflow: auto !important;
+ }
+}
+
+@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
+ .ps {
+ overflow: auto !important;
+ }
+}
diff --git a/dasena-web/public/assets/admin/scss/themes/plugins/_pnotify.scss b/dasena-web/public/assets/admin/scss/themes/plugins/_pnotify.scss
new file mode 100644
index 0000000..ffc0452
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/themes/plugins/_pnotify.scss
@@ -0,0 +1,101 @@
+[ui-pnotify] {
+ &.ui-pnotify .brighttheme {
+ -webkit-border-radius: 0;
+ -moz-border-radius: 0;
+ border-radius: 0;
+
+ &.ui-pnotify-container {
+ padding: 1.3rem;
+ }
+ }
+
+ &.ui-pnotify-with-icon .brighttheme {
+ .ui-pnotify-confirm,
+ .ui-pnotify-text,
+ .ui-pnotify-title {
+ margin-left: 1.8rem;
+ }
+ }
+}
+
+[dir=rtl] [ui-pnotify].ui-pnotify-with-icon .brighttheme {
+ .ui-pnotify-confirm,
+ .ui-pnotify-text,
+ .ui-pnotify-title {
+ margin-right: 1.8rem;
+ margin-left: 0;
+ }
+}
+
+[ui-pnotify].ui-pnotify {
+ .brighttheme-icon-notice {
+ &:after {
+ content: "!";
+ }
+ }
+
+ .brighttheme-icon-info {
+ &:after {
+ content: "i";
+ }
+ }
+
+ .brighttheme-icon-success {
+ &:after {
+ content: "\002713";
+ }
+ }
+
+ .brighttheme-icon-error {
+ &:after {
+ content: "!";
+ }
+ }
+
+ .brighttheme-icon-closer:after {
+ content: "\002715";
+ }
+
+ .brighttheme-icon-sticker {
+ &:after {
+ top: -1px;
+ content: "\002016";
+ }
+
+ &.brighttheme-icon-stuck:after {
+ content: "\00003E";
+ }
+ }
+}
+
+[data-pnotify].custom-elem {
+ font-family: Arial, Helvetica, sans-serif;
+ font-size: 10pt;
+ line-height: 1.1;
+}
+
+[data-pnotify] .custom-container {
+ background-color: #404040;
+ background-image: none;
+ border: none;
+ -moz-border-radius: 10px;
+ -webkit-border-radius: 10px;
+ border-radius: 10px;
+ padding: 15px;
+ font-size: 15px;
+}
+
+[data-pnotify] .custom-title,
+[data-pnotify] .custom-text {
+ margin-left: 50px;
+ color: #FFF;
+}
+
+[data-pnotify] .custom-title {
+ font-weight: bold;
+ font-size: 15px;
+}
+
+[data-pnotify] .custom-icon {
+ color: #FFA;
+}
\ No newline at end of file
diff --git a/dasena-web/public/assets/admin/scss/themes/plugins/_select2.scss b/dasena-web/public/assets/admin/scss/themes/plugins/_select2.scss
new file mode 100644
index 0000000..743db10
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/themes/plugins/_select2.scss
@@ -0,0 +1,120 @@
+/*
+<--!----------------------------------------------------------------!-->
+<--! Select2 !-->
+<--!----------------------------------------------------------------!-->
+*/
+.select2-container {
+ width: -webkit-fill-available !important;
+ .select2-selection {
+ color: $brand-dark;
+ font-size: $font-13;
+ padding-bottom: 0;
+ border-color: $border-color;
+ min-height: calc(2.5em + 0.75rem + 2px);
+ }
+ .select2-selection--single {
+ background-size: 15px 8px;
+ padding: 0.475rem 2.25rem 0.375rem 0.75rem;
+ .select2-selection__rendered {
+ color: $brand-dark;
+ padding: 5px;
+ width: 100%;
+ max-width: 100%;
+ overflow: hidden;
+ font-weight: $font-500;
+ /*
+ text-overflow: ellipsis;
+ white-space: initial;
+ display: -webkit-box !important;
+ -webkit-line-clamp: 1;
+ -webkit-box-orient: vertical;
+ */
+ }
+ }
+ &.select2-container--focus,
+ &.select2-container--open {
+ .select2-selection {
+ box-shadow: none;
+ border-color: $border-color;
+ }
+ }
+ .select2-dropdown {
+ z-index: 999999;
+ color: $brand-dark;
+ border-color: $border-color;
+ border-radius: $radius-md;
+ box-shadow: 0 4px 24px 0 rgba(62, 57, 107, 0.18);
+ .select2-results__options {
+ .select2-results__option {
+ color: $brand-dark;
+ font-size: $font-13;
+ padding: 10px 25px;
+ font-weight: $font-500;
+ &.select2-results__option--selected,
+ &.select2-results__option--highlighted {
+ color: $primary;
+ background-color: rgba(84, 133, 228, 0.075);
+ }
+ }
+ }
+ .select2-search {
+ .select2-search__field {
+ color: $brand-dark;
+ font-size: $font-13;
+ border-color: $border-color;
+ }
+ }
+ }
+ .select2-selection--multiple {
+ .select2-selection__rendered {
+ .select2-selection__choice {
+ position: relative;
+ color: $brand-dark;
+ font-size: $font-13;
+ font-weight: $font-600;
+ padding: 8px 30px 8px 15px;
+ border-color: $border-color;
+ .select2-selection__choice__remove {
+ right: 5px;
+ width: 7px;
+ height: 7px;
+ margin-right: 5px;
+ position: absolute;
+ }
+ }
+ }
+ }
+ .select2-selection--multiple {
+ .select2-search {
+ height: 0;
+ .select2-search__field {
+ height: 0;
+ }
+ }
+ }
+}
+.select-wd-sm {
+ .select2-container {
+ width: 50px !important;
+ }
+}
+.select-wd-md {
+ .select2-container {
+ width: 125px !important;
+ }
+}
+.select-wd-lg {
+ .select2-container {
+ width: 225px !important;
+ }
+}
+.select-wd-xl {
+ .select2-container {
+ width: 350px !important;
+ }
+}
+.select-wd-xxl {
+ .select2-container {
+ width: 500px !important;
+ }
+}
diff --git a/dasena-web/public/assets/admin/scss/themes/plugins/_sweetalert2.scss b/dasena-web/public/assets/admin/scss/themes/plugins/_sweetalert2.scss
new file mode 100644
index 0000000..8aeef42
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/themes/plugins/_sweetalert2.scss
@@ -0,0 +1,43 @@
+/*
+<--!----------------------------------------------------------------!-->
+<--! SweetAlert2 !-->
+<--!----------------------------------------------------------------!-->
+*/
+.swal2-modal {
+ .swal2-title {
+ color: $brand-dark;
+ font-size: $font-24;
+ font-weight: $font-700;
+ }
+ .swal2-content {
+ color: $brand-muted;
+ font-size: 0.8rem;
+ }
+}
+.swal2-container {
+ z-index: 999999 !important;
+ .swal2-title {
+ font-size: 24px !important;
+ font-weight: $font-700 !important;
+ }
+ .swal2-content {
+ color: $brand-muted !important;
+ font-size: $font-13 !important;
+ }
+ .swal2-popup.swal2-toast {
+ padding: 15px 15px;
+ box-shadow: none;
+ background-color: $white;
+ border: 1px solid $border-color;
+ box-shadow: 0 4px 24px 0 rgba(62, 57, 107, 0.18);
+ }
+ .swal2-popup.swal2-toast .swal2-title {
+ color: $dark;
+ margin: auto 15px;
+ font-size: $font-13 !important;
+ font-weight: $font-600 !important;
+ }
+ .swal2-timer-progress-bar {
+ background-color: #a5dc86;
+ }
+}
diff --git a/dasena-web/public/assets/admin/scss/themes/plugins/_tags-input.scss b/dasena-web/public/assets/admin/scss/themes/plugins/_tags-input.scss
new file mode 100644
index 0000000..db815fe
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/themes/plugins/_tags-input.scss
@@ -0,0 +1,15 @@
+.bootstrap-tagsinput {
+ padding: 5px 10px;
+ line-height: 28px;
+ background: $body-bg;
+ border: 1px solid $border-color;
+ border-radius: $card-border-radius;
+ width: 100%;
+
+ .tag {
+ background: $primary;
+ padding: 5px 12px;
+ color: #fff;
+ border-radius: $card-border-radius;
+ }
+}
diff --git a/dasena-web/public/assets/admin/scss/themes/widgets/_widgets-charts.scss b/dasena-web/public/assets/admin/scss/themes/widgets/_widgets-charts.scss
new file mode 100644
index 0000000..a7a8edb
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/themes/widgets/_widgets-charts.scss
@@ -0,0 +1,15 @@
+/*
+<--!----------------------------------------------------------------!-->
+<--! Widgets Charts !-->
+<--!----------------------------------------------------------------!-->
+*/
+#earning-expense-area-chart {
+ .apexcharts-series[seriesName="Expense"] {
+ transform: scaleY(1.025);
+ }
+}
+#session-device-donut {
+ .apexcharts-canvas {
+ margin: auto;
+ }
+}
diff --git a/dasena-web/public/assets/admin/scss/themes/widgets/_widgets-lists.scss b/dasena-web/public/assets/admin/scss/themes/widgets/_widgets-lists.scss
new file mode 100644
index 0000000..0964a9b
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/themes/widgets/_widgets-lists.scss
@@ -0,0 +1,214 @@
+/*
+<--!----------------------------------------------------------------!-->
+<--! Widgets Lists !-->
+<--!----------------------------------------------------------------!-->
+*/
+/*activity-feed*/
+.feed-item-primary::after {
+ background: #5485e4;
+ border: 3px solid #cfe0ff;
+}
+.feed-item-secondary::after {
+ background: #6861ce;
+ border: 3px solid #dbd8ff;
+}
+.feed-item-success::after {
+ background: #31ce36;
+ border: 3px solid #bdffe6;
+}
+.feed-item-info::after {
+ background: #48abf7;
+ border: 3px solid #c4e6ff;
+}
+.feed-item-warning::after {
+ background: #ffad46;
+ border: 3px solid #ffdfb7;
+}
+.feed-item-danger::after {
+ background: #f25961;
+ border: 3px solid #ffd3d5;
+}
+.activity-feed {
+ .feed-item {
+ position: relative;
+ padding-left: 30px;
+ padding-bottom: 30px;
+ border-left: 1px dashed $border-color-2;
+ .lead_date {
+ top: -8px;
+ display: block;
+ color: $brand-muted;
+ position: relative;
+ font-size: $font-12;
+ }
+ .date {
+ font-size: $font-10;
+ }
+ .text {
+ top: -8px;
+ color: $brand-dark;
+ position: relative;
+ font-weight: $font-600;
+ }
+ &::before {
+ top: 2px;
+ left: -4px;
+ width: 6px;
+ height: 6px;
+ content: "";
+ z-index: 99;
+ display: block;
+ position: absolute;
+ border-radius: 50%;
+ }
+ &::after {
+ top: 0;
+ left: -6px;
+ width: 10px;
+ height: 10px;
+ content: "";
+ display: block;
+ position: absolute;
+ border-radius: 50%;
+ }
+ &:last-child {
+ padding-bottom: 0px;
+ }
+ }
+}
+.activity-feed-1 {
+ .feed-item {
+ position: relative;
+ padding-bottom: 35px;
+ padding-left: 30px;
+ border-left: 1px dashed #e4e8eb;
+ &::after {
+ content: "";
+ display: block;
+ position: absolute;
+ top: 5px;
+ left: -6px;
+ width: 12px;
+ height: 12px;
+ border-radius: 50%;
+ }
+ &:last-child {
+ padding-bottom: 0px;
+ }
+ }
+}
+.activity-feed-2 {
+ .feed-item {
+ position: relative;
+ padding-bottom: 30px;
+ padding-left: 30px;
+ border-left: 1px dashed $border-color-2;
+ .lead_date {
+ display: block;
+ position: relative;
+ top: -5px;
+ color: $brand-muted;
+ font-size: 0.855rem;
+ }
+ .date {
+ font-size: 10px;
+ }
+ .text {
+ top: -5px;
+ color: $brand-dark;
+ position: relative;
+ font-weight: $font-600;
+ }
+ &::before {
+ content: "";
+ display: block;
+ position: absolute;
+ top: 2px;
+ left: -4px;
+ width: 6px;
+ height: 6px;
+ border-radius: 50%;
+ z-index: 99;
+ }
+ &::after {
+ content: "";
+ display: block;
+ position: absolute;
+ top: 0;
+ left: -6px;
+ width: 10px;
+ height: 10px;
+ border-radius: 50%;
+ }
+ &:last-child {
+ padding-bottom: 0px;
+ }
+ }
+}
+/*tickets*/
+.widget-tickets-content {
+ .tickets-items-wrapper {
+ .table {
+ tr {
+ td {
+ .tickets-sort-desc {
+ opacity: 1;
+ visibility: visible;
+ transition: all 0.3s ease;
+ }
+ .tickets-list-action {
+ opacity: 0;
+ top: -33px;
+ padding-top: 5px;
+ visibility: hidden;
+ position: relative;
+ margin-bottom: -32px;
+ transition: all 0.3s ease;
+ a {
+ font-size: $font-12;
+ }
+ span {
+ color: $brand-muted;
+ font-size: $font-9;
+ }
+ }
+ }
+ &:hover {
+ td {
+ .tickets-sort-desc {
+ opacity: 0;
+ visibility: hidden;
+ transition: all 0.3s ease;
+ }
+ .tickets-list-action {
+ opacity: 1;
+ visibility: visible;
+ transition: all 0.3s ease;
+ }
+ }
+ }
+ }
+ }
+ }
+}
+/*invoice-tab*/
+.invoice-overview-tab-item {
+ .nav-item {
+ border-right: 1px solid $border-color;
+ border-bottom: 1px solid $border-color;
+ &:last-child {
+ border-right: none;
+ }
+ .nav-link {
+ padding: 15px 15px;
+ color: $brand-dark;
+ font-weight: $font-600;
+ transition: all 0.3s ease;
+ &.active,
+ &:hover {
+ color: $primary;
+ background-color: $bg-soft-primary;
+ }
+ }
+ }
+}
diff --git a/dasena-web/public/assets/admin/scss/themes/widgets/_widgets-miscellaneous.scss b/dasena-web/public/assets/admin/scss/themes/widgets/_widgets-miscellaneous.scss
new file mode 100644
index 0000000..2dbfbe6
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/themes/widgets/_widgets-miscellaneous.scss
@@ -0,0 +1,149 @@
+/*
+<--!----------------------------------------------------------------!-->
+<--! Widgets Miscellaneous !-->
+<--!----------------------------------------------------------------!-->
+*/
+.times-progress-chart,
+.tasks-progress-chart,
+.projects-progress-chart {
+ .circle-progress {
+ width: 200px;
+ height: 200px;
+ }
+ .circle-progress-value {
+ stroke-width: 6px;
+ stroke-linecap: round;
+ }
+ .circle-progress-circle {
+ stroke-width: 4px;
+ }
+}
+.times-progress-chart {
+ .circle-progress-value {
+ stroke: $danger;
+ }
+}
+.tasks-progress-chart {
+ .circle-progress-value {
+ stroke: $primary;
+ }
+}
+.projects-progress-chart {
+ .circle-progress-value {
+ stroke: $warning;
+ }
+}
+
+.goal-progress-1,
+.goal-progress-2,
+.goal-progress-3,
+.goal-progress-4 {
+ .circle-progress {
+ width: 80px;
+ height: 80px;
+ }
+ .circle-progress-value {
+ stroke-width: 6px;
+ stroke-linecap: round;
+ }
+ .circle-progress-circle {
+ stroke-width: 5px;
+ }
+}
+
+.project-progress-1,
+.project-progress-2,
+.project-progress-3,
+.project-progress-4 {
+ .circle-progress {
+ width: 65px;
+ height: 65px;
+ }
+ .circle-progress-value {
+ stroke-width: 8px;
+ stroke-linecap: round;
+ }
+ .circle-progress-circle {
+ stroke-width: 5px;
+ }
+}
+.team-progress-1,
+.team-progress-2,
+.team-progress-3,
+.team-progress-4 {
+ .circle-progress {
+ width: 50px;
+ height: 50px;
+ }
+ .circle-progress-value {
+ stroke-width: 6px;
+ stroke-linecap: round;
+ }
+ .circle-progress-circle {
+ stroke-width: 3px;
+ }
+ .circle-progress-text {
+ font-size: 24px;
+ }
+}
+
+.team-progress-1,
+.goal-progress-1,
+.project-progress-1 {
+ .circle-progress-value {
+ stroke: $danger;
+ }
+}
+
+.team-progress-2,
+.goal-progress-2,
+.project-progress-2 {
+ .circle-progress-value {
+ stroke: $primary;
+ }
+}
+
+.team-progress-3,
+.goal-progress-3,
+.project-progress-3 {
+ .circle-progress-value {
+ stroke: $warning;
+ }
+}
+
+.team-progress-4,
+.goal-progress-4,
+.project-progress-4 {
+ .circle-progress-value {
+ stroke: $success;
+ }
+}
+
+.project-mini-card-badge {
+ position: absolute;
+ top: 45px;
+ left: -30px;
+ transform: rotate(270deg);
+}
+
+.goal-progress {
+ .circle-progress {
+ width: 195px;
+ height: 195px;
+ }
+ .circle-progress-value {
+ stroke-width: 5px;
+ stroke: $primary;
+ stroke-linecap: round;
+ }
+ .circle-progress-circle {
+ stroke: $white;
+ stroke-width: 10px;
+ fill: $bg-soft-primary;
+ }
+ .circle-progress-text {
+ fill: $brand-dark;
+ font-size: $font-13;
+ font-weight: $font-700;
+ }
+}
diff --git a/dasena-web/public/assets/admin/scss/themes/widgets/_widgets-statistics.scss b/dasena-web/public/assets/admin/scss/themes/widgets/_widgets-statistics.scss
new file mode 100644
index 0000000..e1dc148
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/themes/widgets/_widgets-statistics.scss
@@ -0,0 +1,5 @@
+/*
+<--!----------------------------------------------------------------!-->
+<--! Widgets Statistics !-->
+<--!----------------------------------------------------------------!-->
+*/
diff --git a/dasena-web/public/assets/admin/scss/themes/widgets/_widgets-tables.scss b/dasena-web/public/assets/admin/scss/themes/widgets/_widgets-tables.scss
new file mode 100644
index 0000000..82c91da
--- /dev/null
+++ b/dasena-web/public/assets/admin/scss/themes/widgets/_widgets-tables.scss
@@ -0,0 +1,97 @@
+/*
+<--!----------------------------------------------------------------!-->
+<--! Widgets Tables !-->
+<--!----------------------------------------------------------------!-->
+*/
+/*tickets*/
+.widget-tickets-content {
+ .tickets-items-wrapper {
+ .table {
+ tr {
+ td {
+ .tickets-sort-desc {
+ opacity: 1;
+ visibility: visible;
+ transition: all 0.3s ease;
+ }
+ .tickets-list-action {
+ opacity: 0;
+ top: -33px;
+ padding-top: 5px;
+ visibility: hidden;
+ position: relative;
+ margin-bottom: -32px;
+ transition: all 0.3s ease;
+ a {
+ font-size: $font-12;
+ }
+ span {
+ color: $brand-muted;
+ font-size: $font-9;
+ }
+ }
+ }
+ &:hover {
+ td {
+ .tickets-sort-desc {
+ opacity: 0;
+ visibility: hidden;
+ transition: all 0.3s ease;
+ }
+ .tickets-list-action {
+ opacity: 1;
+ visibility: visible;
+ transition: all 0.3s ease;
+ }
+ }
+ }
+ }
+ }
+ }
+}
+/*tasks*/
+.widget-tasks-content {
+ .tasks-items-wrapper {
+ .table {
+ tr {
+ td {
+ .tasks-sort-desc {
+ opacity: 1;
+ visibility: visible;
+ transition: all 0.3s ease;
+ }
+ .tasks-list-action {
+ opacity: 0;
+ top: -40px;
+ padding-top: 5px;
+ visibility: hidden;
+ position: relative;
+ margin-bottom: -38px;
+ transition: all 0.3s ease;
+ a {
+ font-size: $font-12;
+ }
+ span {
+ color: $brand-muted;
+ font-size: $font-9;
+ }
+ }
+ }
+ &:hover {
+ td {
+ .tasks-sort-desc {
+ opacity: 0;
+ visibility: hidden;
+ transition: all 0.3s ease;
+ }
+ .tasks-list-action {
+ opacity: 1;
+ visibility: visible;
+ transition: all 0.3s ease;
+ }
+ }
+ }
+ }
+ }
+ }
+}
diff --git a/dasena-web/public/assets/admin/vendors/css/animate.min.css b/dasena-web/public/assets/admin/vendors/css/animate.min.css
new file mode 100644
index 0000000..4f6f960
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/css/animate.min.css
@@ -0,0 +1,8 @@
+/*!
+ * animate.css -https://daneden.github.io/animate.css/
+ * Version - 3.7.2
+ * Licensed under the MIT license - http://opensource.org/licenses/MIT
+ *
+ * Copyright (c) 2019 Daniel Eden
+ */@keyframes d{0%,20%,53%,80%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1);transform:translateZ(0)}40%,43%{animation-timing-function:cubic-bezier(.755,.05,.855,.06);transform:translate3d(0,-30px,0)}70%{animation-timing-function:cubic-bezier(.755,.05,.855,.06);transform:translate3d(0,-15px,0)}90%{transform:translate3d(0,-4px,0)}}.bounce{animation-name:d;transform-origin:center bottom}@keyframes e{0%,50%,to{opacity:1}25%,75%{opacity:0}}.flash{animation-name:e}@keyframes f{0%{transform:scaleX(1)}50%{transform:scale3d(1.05,1.05,1.05)}to{transform:scaleX(1)}}.pulse{animation-name:f}@keyframes g{0%{transform:scaleX(1)}30%{transform:scale3d(1.25,.75,1)}40%{transform:scale3d(.75,1.25,1)}50%{transform:scale3d(1.15,.85,1)}65%{transform:scale3d(.95,1.05,1)}75%{transform:scale3d(1.05,.95,1)}to{transform:scaleX(1)}}.rubberBand{animation-name:g}@keyframes h{0%,to{transform:translateZ(0)}10%,30%,50%,70%,90%{transform:translate3d(-10px,0,0)}20%,40%,60%,80%{transform:translate3d(10px,0,0)}}.shake{animation-name:h}@keyframes i{0%{transform:translateX(0)}6.5%{transform:translateX(-6px) rotateY(-9deg)}18.5%{transform:translateX(5px) rotateY(7deg)}31.5%{transform:translateX(-3px) rotateY(-5deg)}43.5%{transform:translateX(2px) rotateY(3deg)}50%{transform:translateX(0)}}.headShake{animation-timing-function:ease-in-out;animation-name:i}@keyframes j{20%{transform:rotate(15deg)}40%{transform:rotate(-10deg)}60%{transform:rotate(5deg)}80%{transform:rotate(-5deg)}to{transform:rotate(0)}}.swing{transform-origin:top center;animation-name:j}@keyframes k{0%{transform:scaleX(1)}10%,20%{transform:scale3d(.9,.9,.9) rotate(-3deg)}30%,50%,70%,90%{transform:scale3d(1.1,1.1,1.1) rotate(3deg)}40%,60%,80%{transform:scale3d(1.1,1.1,1.1) rotate(-3deg)}to{transform:scaleX(1)}}.tada{animation-name:k}@keyframes l{0%{transform:translateZ(0)}15%{transform:translate3d(-25%,0,0) rotate(-5deg)}30%{transform:translate3d(20%,0,0) rotate(3deg)}45%{transform:translate3d(-15%,0,0) rotate(-3deg)}60%{transform:translate3d(10%,0,0) rotate(2deg)}75%{transform:translate3d(-5%,0,0) rotate(-1deg)}to{transform:translateZ(0)}}.wobble{animation-name:l}@keyframes m{0%,11.1%,to{transform:translateZ(0)}22.2%{transform:skewX(-12.5deg) skewY(-12.5deg)}33.3%{transform:skewX(6.25deg) skewY(6.25deg)}44.4%{transform:skewX(-3.125deg) skewY(-3.125deg)}55.5%{transform:skewX(1.5625deg) skewY(1.5625deg)}66.6%{transform:skewX(-.78125deg) skewY(-.78125deg)}77.7%{transform:skewX(.390625deg) skewY(.390625deg)}88.8%{transform:skewX(-.1953125deg) skewY(-.1953125deg)}}.jello{animation-name:m;transform-origin:center}@keyframes n{0%{transform:scale(1)}14%{transform:scale(1.3)}28%{transform:scale(1)}42%{transform:scale(1.3)}70%{transform:scale(1)}}.heartBeat{animation-name:n;animation-duration:1.3s;animation-timing-function:ease-in-out}@keyframes o{0%,20%,40%,60%,80%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:scale3d(.3,.3,.3)}20%{transform:scale3d(1.1,1.1,1.1)}40%{transform:scale3d(.9,.9,.9)}60%{opacity:1;transform:scale3d(1.03,1.03,1.03)}80%{transform:scale3d(.97,.97,.97)}to{opacity:1;transform:scaleX(1)}}.bounceIn{animation-duration:.75s;animation-name:o}@keyframes p{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(0,-3000px,0)}60%{opacity:1;transform:translate3d(0,25px,0)}75%{transform:translate3d(0,-10px,0)}90%{transform:translate3d(0,5px,0)}to{transform:translateZ(0)}}.bounceInDown{animation-name:p}@keyframes q{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(-3000px,0,0)}60%{opacity:1;transform:translate3d(25px,0,0)}75%{transform:translate3d(-10px,0,0)}90%{transform:translate3d(5px,0,0)}to{transform:translateZ(0)}}.bounceInLeft{animation-name:q}@keyframes r{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(3000px,0,0)}60%{opacity:1;transform:translate3d(-25px,0,0)}75%{transform:translate3d(10px,0,0)}90%{transform:translate3d(-5px,0,0)}to{transform:translateZ(0)}}.bounceInRight{animation-name:r}@keyframes s{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(0,3000px,0)}60%{opacity:1;transform:translate3d(0,-20px,0)}75%{transform:translate3d(0,10px,0)}90%{transform:translate3d(0,-5px,0)}to{transform:translateZ(0)}}.bounceInUp{animation-name:s}@keyframes t{20%{transform:scale3d(.9,.9,.9)}50%,55%{opacity:1;transform:scale3d(1.1,1.1,1.1)}to{opacity:0;transform:scale3d(.3,.3,.3)}}.bounceOut{animation-duration:.75s;animation-name:t}@keyframes u{20%{transform:translate3d(0,10px,0)}40%,45%{opacity:1;transform:translate3d(0,-20px,0)}to{opacity:0;transform:translate3d(0,2000px,0)}}.bounceOutDown{animation-name:u}@keyframes v{20%{opacity:1;transform:translate3d(20px,0,0)}to{opacity:0;transform:translate3d(-2000px,0,0)}}.bounceOutLeft{animation-name:v}@keyframes w{20%{opacity:1;transform:translate3d(-20px,0,0)}to{opacity:0;transform:translate3d(2000px,0,0)}}.bounceOutRight{animation-name:w}@keyframes x{20%{transform:translate3d(0,-10px,0)}40%,45%{opacity:1;transform:translate3d(0,20px,0)}to{opacity:0;transform:translate3d(0,-2000px,0)}}.bounceOutUp{animation-name:x}@keyframes y{0%{opacity:0}to{opacity:1}}.fadeIn{animation-name:y}@keyframes z{0%{opacity:0;transform:translate3d(0,-100%,0)}to{opacity:1;transform:translateZ(0)}}.fadeInDown{animation-name:z}@keyframes A{0%{opacity:0;transform:translate3d(0,-2000px,0)}to{opacity:1;transform:translateZ(0)}}.fadeInDownBig{animation-name:A}@keyframes B{0%{opacity:0;transform:translate3d(-100%,0,0)}to{opacity:1;transform:translateZ(0)}}.fadeInLeft{animation-name:B}@keyframes C{0%{opacity:0;transform:translate3d(-2000px,0,0)}to{opacity:1;transform:translateZ(0)}}.fadeInLeftBig{animation-name:C}@keyframes D{0%{opacity:0;transform:translate3d(100%,0,0)}to{opacity:1;transform:translateZ(0)}}.fadeInRight{animation-name:D}@keyframes E{0%{opacity:0;transform:translate3d(2000px,0,0)}to{opacity:1;transform:translateZ(0)}}.fadeInRightBig{animation-name:E}@keyframes F{0%{opacity:0;transform:translate3d(0,100%,0)}to{opacity:1;transform:translateZ(0)}}.fadeInUp{animation-name:F}@keyframes G{0%{opacity:0;transform:translate3d(0,2000px,0)}to{opacity:1;transform:translateZ(0)}}.fadeInUpBig{animation-name:G}@keyframes H{0%{opacity:1}to{opacity:0}}.fadeOut{animation-name:H}@keyframes I{0%{opacity:1}to{opacity:0;transform:translate3d(0,100%,0)}}.fadeOutDown{animation-name:I}@keyframes J{0%{opacity:1}to{opacity:0;transform:translate3d(0,2000px,0)}}.fadeOutDownBig{animation-name:J}@keyframes K{0%{opacity:1}to{opacity:0;transform:translate3d(-100%,0,0)}}.fadeOutLeft{animation-name:K}@keyframes L{0%{opacity:1}to{opacity:0;transform:translate3d(-2000px,0,0)}}.fadeOutLeftBig{animation-name:L}@keyframes M{0%{opacity:1}to{opacity:0;transform:translate3d(100%,0,0)}}.fadeOutRight{animation-name:M}@keyframes N{0%{opacity:1}to{opacity:0;transform:translate3d(2000px,0,0)}}.fadeOutRightBig{animation-name:N}@keyframes O{0%{opacity:1}to{opacity:0;transform:translate3d(0,-100%,0)}}.fadeOutUp{animation-name:O}@keyframes P{0%{opacity:1}to{opacity:0;transform:translate3d(0,-2000px,0)}}.fadeOutUpBig{animation-name:P}@keyframes Q{0%{transform:perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);animation-timing-function:ease-out}40%{transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);animation-timing-function:ease-out}50%{transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);animation-timing-function:ease-in}80%{transform:perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0);animation-timing-function:ease-in}to{transform:perspective(400px) scaleX(1) translateZ(0) rotateY(0);animation-timing-function:ease-in}}.animated.flip{-webkit-backface-visibility:visible;backface-visibility:visible;animation-name:Q}@keyframes R{0%{transform:perspective(400px) rotateX(90deg);animation-timing-function:ease-in;opacity:0}40%{transform:perspective(400px) rotateX(-20deg);animation-timing-function:ease-in}60%{transform:perspective(400px) rotateX(10deg);opacity:1}80%{transform:perspective(400px) rotateX(-5deg)}to{transform:perspective(400px)}}.flipInX{-webkit-backface-visibility:visible!important;backface-visibility:visible!important;animation-name:R}@keyframes S{0%{transform:perspective(400px) rotateY(90deg);animation-timing-function:ease-in;opacity:0}40%{transform:perspective(400px) rotateY(-20deg);animation-timing-function:ease-in}60%{transform:perspective(400px) rotateY(10deg);opacity:1}80%{transform:perspective(400px) rotateY(-5deg)}to{transform:perspective(400px)}}.flipInY{-webkit-backface-visibility:visible!important;backface-visibility:visible!important;animation-name:S}@keyframes T{0%{transform:perspective(400px)}30%{transform:perspective(400px) rotateX(-20deg);opacity:1}to{transform:perspective(400px) rotateX(90deg);opacity:0}}.flipOutX{animation-duration:.75s;animation-name:T;-webkit-backface-visibility:visible!important;backface-visibility:visible!important}@keyframes U{0%{transform:perspective(400px)}30%{transform:perspective(400px) rotateY(-15deg);opacity:1}to{transform:perspective(400px) rotateY(90deg);opacity:0}}.flipOutY{animation-duration:.75s;-webkit-backface-visibility:visible!important;backface-visibility:visible!important;animation-name:U}@keyframes V{0%{transform:translate3d(100%,0,0) skewX(-30deg);opacity:0}60%{transform:skewX(20deg);opacity:1}80%{transform:skewX(-5deg)}to{transform:translateZ(0)}}.lightSpeedIn{animation-name:V;animation-timing-function:ease-out}@keyframes W{0%{opacity:1}to{transform:translate3d(100%,0,0) skewX(30deg);opacity:0}}.lightSpeedOut{animation-name:W;animation-timing-function:ease-in}@keyframes X{0%{transform-origin:center;transform:rotate(-200deg);opacity:0}to{transform-origin:center;transform:translateZ(0);opacity:1}}.rotateIn{animation-name:X}@keyframes Y{0%{transform-origin:left bottom;transform:rotate(-45deg);opacity:0}to{transform-origin:left bottom;transform:translateZ(0);opacity:1}}.rotateInDownLeft{animation-name:Y}@keyframes Z{0%{transform-origin:right bottom;transform:rotate(45deg);opacity:0}to{transform-origin:right bottom;transform:translateZ(0);opacity:1}}.rotateInDownRight{animation-name:Z}@keyframes ab{0%{transform-origin:left bottom;transform:rotate(45deg);opacity:0}to{transform-origin:left bottom;transform:translateZ(0);opacity:1}}.rotateInUpLeft{animation-name:ab}@keyframes bb{0%{transform-origin:right bottom;transform:rotate(-90deg);opacity:0}to{transform-origin:right bottom;transform:translateZ(0);opacity:1}}.rotateInUpRight{animation-name:bb}@keyframes cb{0%{transform-origin:center;opacity:1}to{transform-origin:center;transform:rotate(200deg);opacity:0}}.rotateOut{animation-name:cb}@keyframes db{0%{transform-origin:left bottom;opacity:1}to{transform-origin:left bottom;transform:rotate(45deg);opacity:0}}.rotateOutDownLeft{animation-name:db}@keyframes eb{0%{transform-origin:right bottom;opacity:1}to{transform-origin:right bottom;transform:rotate(-45deg);opacity:0}}.rotateOutDownRight{animation-name:eb}@keyframes fb{0%{transform-origin:left bottom;opacity:1}to{transform-origin:left bottom;transform:rotate(-45deg);opacity:0}}.rotateOutUpLeft{animation-name:fb}@keyframes gb{0%{transform-origin:right bottom;opacity:1}to{transform-origin:right bottom;transform:rotate(90deg);opacity:0}}.rotateOutUpRight{animation-name:gb}@keyframes hb{0%{transform-origin:top left;animation-timing-function:ease-in-out}20%,60%{transform:rotate(80deg);transform-origin:top left;animation-timing-function:ease-in-out}40%,80%{transform:rotate(60deg);transform-origin:top left;animation-timing-function:ease-in-out;opacity:1}to{transform:translate3d(0,700px,0);opacity:0}}.hinge{animation-duration:2s;animation-name:hb}@keyframes ib{0%{opacity:0;transform:scale(.1) rotate(30deg);transform-origin:center bottom}50%{transform:rotate(-10deg)}70%{transform:rotate(3deg)}to{opacity:1;transform:scale(1)}}.jackInTheBox{animation-name:ib}@keyframes jb{0%{opacity:0;transform:translate3d(-100%,0,0) rotate(-120deg)}to{opacity:1;transform:translateZ(0)}}.rollIn{animation-name:jb}@keyframes kb{0%{opacity:1}to{opacity:0;transform:translate3d(100%,0,0) rotate(120deg)}}.rollOut{animation-name:kb}@keyframes lb{0%{opacity:0;transform:scale3d(.3,.3,.3)}50%{opacity:1}}.zoomIn{animation-name:lb}@keyframes mb{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,60px,0);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.zoomInDown{animation-name:mb}@keyframes nb{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(10px,0,0);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.zoomInLeft{animation-name:nb}@keyframes ob{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.zoomInRight{animation-name:ob}@keyframes pb{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.zoomInUp{animation-name:pb}@keyframes qb{0%{opacity:1}50%{opacity:0;transform:scale3d(.3,.3,.3)}to{opacity:0}}.zoomOut{animation-name:qb}@keyframes rb{40%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);transform-origin:center bottom;animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.zoomOutDown{animation-name:rb}@keyframes sb{40%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(42px,0,0)}to{opacity:0;transform:scale(.1) translate3d(-2000px,0,0);transform-origin:left center}}.zoomOutLeft{animation-name:sb}@keyframes tb{40%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(-42px,0,0)}to{opacity:0;transform:scale(.1) translate3d(2000px,0,0);transform-origin:right center}}.zoomOutRight{animation-name:tb}@keyframes ub{40%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,60px,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);transform-origin:center bottom;animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.zoomOutUp{animation-name:ub}@keyframes vb{0%{transform:translate3d(0,-100%,0);visibility:visible}to{transform:translateZ(0)}}.slideInDown{animation-name:vb}@keyframes wb{0%{transform:translate3d(-100%,0,0);visibility:visible}to{transform:translateZ(0)}}.slideInLeft{animation-name:wb}@keyframes xb{0%{transform:translate3d(100%,0,0);visibility:visible}to{transform:translateZ(0)}}.slideInRight{animation-name:xb}@keyframes yb{0%{transform:translate3d(0,100%,0);visibility:visible}to{transform:translateZ(0)}}.slideInUp{animation-name:yb}@keyframes zb{0%{transform:translateZ(0)}to{visibility:hidden;transform:translate3d(0,100%,0)}}.slideOutDown{animation-name:zb}@keyframes Ab{0%{transform:translateZ(0)}to{visibility:hidden;transform:translate3d(-100%,0,0)}}.slideOutLeft{animation-name:Ab}@keyframes Bb{0%{transform:translateZ(0)}to{visibility:hidden;transform:translate3d(100%,0,0)}}.slideOutRight{animation-name:Bb}@keyframes Cb{0%{transform:translateZ(0)}to{visibility:hidden;transform:translate3d(0,-100%,0)}}.slideOutUp{animation-name:Cb}.animated{animation-duration:1s;animation-fill-mode:both}.animated.infinite{animation-iteration-count:infinite}.animated.delay-1s{animation-delay:1s}.animated.delay-2s{animation-delay:2s}.animated.delay-3s{animation-delay:3s}.animated.delay-4s{animation-delay:4s}.animated.delay-5s{animation-delay:5s}.animated.fast{animation-duration:.8s}.animated.faster{animation-duration:.5s}.animated.slow{animation-duration:2s}.animated.slower{animation-duration:3s}@media (prefers-reduced-motion:reduce),(print){.animated{animation-duration:1ms!important;transition-duration:1ms!important;animation-iteration-count:1!important}}.ps{overflow:hidden!important;overflow-anchor:none;-ms-overflow-style:none;touch-action:auto;-ms-touch-action:auto}.ps__rail-x{height:15px;bottom:0}.ps__rail-x,.ps__rail-y{display:none;opacity:0;transition:background-color .2s linear,opacity .2s linear;-webkit-transition:background-color .2s linear,opacity .2s linear;position:absolute}.ps__rail-y{width:15px;right:0}.ps--active-x>.ps__rail-x,.ps--active-y>.ps__rail-y{display:block;background-color:transparent}.ps--focus>.ps__rail-x,.ps--focus>.ps__rail-y,.ps--scrolling-x>.ps__rail-x,.ps--scrolling-y>.ps__rail-y,.ps:hover>.ps__rail-x,.ps:hover>.ps__rail-y{opacity:.5}.ps .ps__rail-x.ps--clicking,.ps .ps__rail-x:focus,.ps .ps__rail-x:hover,.ps .ps__rail-y.ps--clicking,.ps .ps__rail-y:focus,.ps .ps__rail-y:hover{background-color:#eee;opacity:.9}.ps__thumb-x{transition:background-color .2s linear,height .2s ease-in-out;-webkit-transition:background-color .2s linear,height .2s ease-in-out;height:6px;bottom:2px}.ps__thumb-x,.ps__thumb-y{background-color:#aaa;border-radius:6px;position:absolute}.ps__thumb-y{transition:background-color .2s linear,width .2s ease-in-out;-webkit-transition:background-color .2s linear,width .2s ease-in-out;width:5px;right:2px}.ps__rail-x.ps--clicking .ps__thumb-x,.ps__rail-x:focus>.ps__thumb-x,.ps__rail-x:hover>.ps__thumb-x{background-color:#999;height:11px}.ps__rail-y.ps--clicking .ps__thumb-y,.ps__rail-y:focus>.ps__thumb-y,.ps__rail-y:hover>.ps__thumb-y{background-color:#999;width:11px}@supports (-ms-overflow-style:none){.ps{overflow:auto!important}}@media (-ms-high-contrast:none),screen and (-ms-high-contrast:active){.ps{overflow:auto!important}}
+/*# sourceMappingURL=animate.min.css.map */
diff --git a/dasena-web/public/assets/admin/vendors/css/animate.min.css.map b/dasena-web/public/assets/admin/vendors/css/animate.min.css.map
new file mode 100644
index 0000000..8d3daa3
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/css/animate.min.css.map
@@ -0,0 +1 @@
+{"version":3,"sources":["animate.min.css"],"names":[],"mappings":"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","file":"animate.min.css","sourcesContent":[]}
\ No newline at end of file
diff --git a/dasena-web/public/assets/admin/vendors/css/bsicon.min.css b/dasena-web/public/assets/admin/vendors/css/bsicon.min.css
new file mode 100644
index 0000000..ddfcfc0
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/css/bsicon.min.css
@@ -0,0 +1,2 @@
+@font-face{font-display:block;font-family:bootstrap-icons;src:url(../fonts/bootstrap-icons.woff2?8d200481aa7f02a2d63a331fc782cfaf) format("woff2"),url(../fonts/bootstrap-icons.woff?8d200481aa7f02a2d63a331fc782cfaf) format("woff")}.bi::before,[class*=" bi-"]::before,[class^=bi-]::before{display:inline-block;font-family:bootstrap-icons!important;font-style:normal;font-weight:400!important;font-variant:normal;text-transform:none;line-height:1;vertical-align:-.125em;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.bi-123::before{content:"\f67f"}.bi-alarm-fill::before{content:"\f101"}.bi-alarm::before{content:"\f102"}.bi-align-bottom::before{content:"\f103"}.bi-align-center::before{content:"\f104"}.bi-align-end::before{content:"\f105"}.bi-align-middle::before{content:"\f106"}.bi-align-start::before{content:"\f107"}.bi-align-top::before{content:"\f108"}.bi-alt::before{content:"\f109"}.bi-app-indicator::before{content:"\f10a"}.bi-app::before{content:"\f10b"}.bi-archive-fill::before{content:"\f10c"}.bi-archive::before{content:"\f10d"}.bi-arrow-90deg-down::before{content:"\f10e"}.bi-arrow-90deg-left::before{content:"\f10f"}.bi-arrow-90deg-right::before{content:"\f110"}.bi-arrow-90deg-up::before{content:"\f111"}.bi-arrow-bar-down::before{content:"\f112"}.bi-arrow-bar-left::before{content:"\f113"}.bi-arrow-bar-right::before{content:"\f114"}.bi-arrow-bar-up::before{content:"\f115"}.bi-arrow-clockwise::before{content:"\f116"}.bi-arrow-counterclockwise::before{content:"\f117"}.bi-arrow-down-circle-fill::before{content:"\f118"}.bi-arrow-down-circle::before{content:"\f119"}.bi-arrow-down-left-circle-fill::before{content:"\f11a"}.bi-arrow-down-left-circle::before{content:"\f11b"}.bi-arrow-down-left-square-fill::before{content:"\f11c"}.bi-arrow-down-left-square::before{content:"\f11d"}.bi-arrow-down-left::before{content:"\f11e"}.bi-arrow-down-right-circle-fill::before{content:"\f11f"}.bi-arrow-down-right-circle::before{content:"\f120"}.bi-arrow-down-right-square-fill::before{content:"\f121"}.bi-arrow-down-right-square::before{content:"\f122"}.bi-arrow-down-right::before{content:"\f123"}.bi-arrow-down-short::before{content:"\f124"}.bi-arrow-down-square-fill::before{content:"\f125"}.bi-arrow-down-square::before{content:"\f126"}.bi-arrow-down-up::before{content:"\f127"}.bi-arrow-down::before{content:"\f128"}.bi-arrow-left-circle-fill::before{content:"\f129"}.bi-arrow-left-circle::before{content:"\f12a"}.bi-arrow-left-right::before{content:"\f12b"}.bi-arrow-left-short::before{content:"\f12c"}.bi-arrow-left-square-fill::before{content:"\f12d"}.bi-arrow-left-square::before{content:"\f12e"}.bi-arrow-left::before{content:"\f12f"}.bi-arrow-repeat::before{content:"\f130"}.bi-arrow-return-left::before{content:"\f131"}.bi-arrow-return-right::before{content:"\f132"}.bi-arrow-right-circle-fill::before{content:"\f133"}.bi-arrow-right-circle::before{content:"\f134"}.bi-arrow-right-short::before{content:"\f135"}.bi-arrow-right-square-fill::before{content:"\f136"}.bi-arrow-right-square::before{content:"\f137"}.bi-arrow-right::before{content:"\f138"}.bi-arrow-up-circle-fill::before{content:"\f139"}.bi-arrow-up-circle::before{content:"\f13a"}.bi-arrow-up-left-circle-fill::before{content:"\f13b"}.bi-arrow-up-left-circle::before{content:"\f13c"}.bi-arrow-up-left-square-fill::before{content:"\f13d"}.bi-arrow-up-left-square::before{content:"\f13e"}.bi-arrow-up-left::before{content:"\f13f"}.bi-arrow-up-right-circle-fill::before{content:"\f140"}.bi-arrow-up-right-circle::before{content:"\f141"}.bi-arrow-up-right-square-fill::before{content:"\f142"}.bi-arrow-up-right-square::before{content:"\f143"}.bi-arrow-up-right::before{content:"\f144"}.bi-arrow-up-short::before{content:"\f145"}.bi-arrow-up-square-fill::before{content:"\f146"}.bi-arrow-up-square::before{content:"\f147"}.bi-arrow-up::before{content:"\f148"}.bi-arrows-angle-contract::before{content:"\f149"}.bi-arrows-angle-expand::before{content:"\f14a"}.bi-arrows-collapse::before{content:"\f14b"}.bi-arrows-expand::before{content:"\f14c"}.bi-arrows-fullscreen::before{content:"\f14d"}.bi-arrows-move::before{content:"\f14e"}.bi-aspect-ratio-fill::before{content:"\f14f"}.bi-aspect-ratio::before{content:"\f150"}.bi-asterisk::before{content:"\f151"}.bi-at::before{content:"\f152"}.bi-award-fill::before{content:"\f153"}.bi-award::before{content:"\f154"}.bi-back::before{content:"\f155"}.bi-backspace-fill::before{content:"\f156"}.bi-backspace-reverse-fill::before{content:"\f157"}.bi-backspace-reverse::before{content:"\f158"}.bi-backspace::before{content:"\f159"}.bi-badge-3d-fill::before{content:"\f15a"}.bi-badge-3d::before{content:"\f15b"}.bi-badge-4k-fill::before{content:"\f15c"}.bi-badge-4k::before{content:"\f15d"}.bi-badge-8k-fill::before{content:"\f15e"}.bi-badge-8k::before{content:"\f15f"}.bi-badge-ad-fill::before{content:"\f160"}.bi-badge-ad::before{content:"\f161"}.bi-badge-ar-fill::before{content:"\f162"}.bi-badge-ar::before{content:"\f163"}.bi-badge-cc-fill::before{content:"\f164"}.bi-badge-cc::before{content:"\f165"}.bi-badge-hd-fill::before{content:"\f166"}.bi-badge-hd::before{content:"\f167"}.bi-badge-tm-fill::before{content:"\f168"}.bi-badge-tm::before{content:"\f169"}.bi-badge-vo-fill::before{content:"\f16a"}.bi-badge-vo::before{content:"\f16b"}.bi-badge-vr-fill::before{content:"\f16c"}.bi-badge-vr::before{content:"\f16d"}.bi-badge-wc-fill::before{content:"\f16e"}.bi-badge-wc::before{content:"\f16f"}.bi-bag-check-fill::before{content:"\f170"}.bi-bag-check::before{content:"\f171"}.bi-bag-dash-fill::before{content:"\f172"}.bi-bag-dash::before{content:"\f173"}.bi-bag-fill::before{content:"\f174"}.bi-bag-plus-fill::before{content:"\f175"}.bi-bag-plus::before{content:"\f176"}.bi-bag-x-fill::before{content:"\f177"}.bi-bag-x::before{content:"\f178"}.bi-bag::before{content:"\f179"}.bi-bar-chart-fill::before{content:"\f17a"}.bi-bar-chart-line-fill::before{content:"\f17b"}.bi-bar-chart-line::before{content:"\f17c"}.bi-bar-chart-steps::before{content:"\f17d"}.bi-bar-chart::before{content:"\f17e"}.bi-basket-fill::before{content:"\f17f"}.bi-basket::before{content:"\f180"}.bi-basket2-fill::before{content:"\f181"}.bi-basket2::before{content:"\f182"}.bi-basket3-fill::before{content:"\f183"}.bi-basket3::before{content:"\f184"}.bi-battery-charging::before{content:"\f185"}.bi-battery-full::before{content:"\f186"}.bi-battery-half::before{content:"\f187"}.bi-battery::before{content:"\f188"}.bi-bell-fill::before{content:"\f189"}.bi-bell::before{content:"\f18a"}.bi-bezier::before{content:"\f18b"}.bi-bezier2::before{content:"\f18c"}.bi-bicycle::before{content:"\f18d"}.bi-binoculars-fill::before{content:"\f18e"}.bi-binoculars::before{content:"\f18f"}.bi-blockquote-left::before{content:"\f190"}.bi-blockquote-right::before{content:"\f191"}.bi-book-fill::before{content:"\f192"}.bi-book-half::before{content:"\f193"}.bi-book::before{content:"\f194"}.bi-bookmark-check-fill::before{content:"\f195"}.bi-bookmark-check::before{content:"\f196"}.bi-bookmark-dash-fill::before{content:"\f197"}.bi-bookmark-dash::before{content:"\f198"}.bi-bookmark-fill::before{content:"\f199"}.bi-bookmark-heart-fill::before{content:"\f19a"}.bi-bookmark-heart::before{content:"\f19b"}.bi-bookmark-plus-fill::before{content:"\f19c"}.bi-bookmark-plus::before{content:"\f19d"}.bi-bookmark-star-fill::before{content:"\f19e"}.bi-bookmark-star::before{content:"\f19f"}.bi-bookmark-x-fill::before{content:"\f1a0"}.bi-bookmark-x::before{content:"\f1a1"}.bi-bookmark::before{content:"\f1a2"}.bi-bookmarks-fill::before{content:"\f1a3"}.bi-bookmarks::before{content:"\f1a4"}.bi-bookshelf::before{content:"\f1a5"}.bi-bootstrap-fill::before{content:"\f1a6"}.bi-bootstrap-reboot::before{content:"\f1a7"}.bi-bootstrap::before{content:"\f1a8"}.bi-border-all::before{content:"\f1a9"}.bi-border-bottom::before{content:"\f1aa"}.bi-border-center::before{content:"\f1ab"}.bi-border-inner::before{content:"\f1ac"}.bi-border-left::before{content:"\f1ad"}.bi-border-middle::before{content:"\f1ae"}.bi-border-outer::before{content:"\f1af"}.bi-border-right::before{content:"\f1b0"}.bi-border-style::before{content:"\f1b1"}.bi-border-top::before{content:"\f1b2"}.bi-border-width::before{content:"\f1b3"}.bi-border::before{content:"\f1b4"}.bi-bounding-box-circles::before{content:"\f1b5"}.bi-bounding-box::before{content:"\f1b6"}.bi-box-arrow-down-left::before{content:"\f1b7"}.bi-box-arrow-down-right::before{content:"\f1b8"}.bi-box-arrow-down::before{content:"\f1b9"}.bi-box-arrow-in-down-left::before{content:"\f1ba"}.bi-box-arrow-in-down-right::before{content:"\f1bb"}.bi-box-arrow-in-down::before{content:"\f1bc"}.bi-box-arrow-in-left::before{content:"\f1bd"}.bi-box-arrow-in-right::before{content:"\f1be"}.bi-box-arrow-in-up-left::before{content:"\f1bf"}.bi-box-arrow-in-up-right::before{content:"\f1c0"}.bi-box-arrow-in-up::before{content:"\f1c1"}.bi-box-arrow-left::before{content:"\f1c2"}.bi-box-arrow-right::before{content:"\f1c3"}.bi-box-arrow-up-left::before{content:"\f1c4"}.bi-box-arrow-up-right::before{content:"\f1c5"}.bi-box-arrow-up::before{content:"\f1c6"}.bi-box-seam::before{content:"\f1c7"}.bi-box::before{content:"\f1c8"}.bi-braces::before{content:"\f1c9"}.bi-bricks::before{content:"\f1ca"}.bi-briefcase-fill::before{content:"\f1cb"}.bi-briefcase::before{content:"\f1cc"}.bi-brightness-alt-high-fill::before{content:"\f1cd"}.bi-brightness-alt-high::before{content:"\f1ce"}.bi-brightness-alt-low-fill::before{content:"\f1cf"}.bi-brightness-alt-low::before{content:"\f1d0"}.bi-brightness-high-fill::before{content:"\f1d1"}.bi-brightness-high::before{content:"\f1d2"}.bi-brightness-low-fill::before{content:"\f1d3"}.bi-brightness-low::before{content:"\f1d4"}.bi-broadcast-pin::before{content:"\f1d5"}.bi-broadcast::before{content:"\f1d6"}.bi-brush-fill::before{content:"\f1d7"}.bi-brush::before{content:"\f1d8"}.bi-bucket-fill::before{content:"\f1d9"}.bi-bucket::before{content:"\f1da"}.bi-bug-fill::before{content:"\f1db"}.bi-bug::before{content:"\f1dc"}.bi-building::before{content:"\f1dd"}.bi-bullseye::before{content:"\f1de"}.bi-calculator-fill::before{content:"\f1df"}.bi-calculator::before{content:"\f1e0"}.bi-calendar-check-fill::before{content:"\f1e1"}.bi-calendar-check::before{content:"\f1e2"}.bi-calendar-date-fill::before{content:"\f1e3"}.bi-calendar-date::before{content:"\f1e4"}.bi-calendar-day-fill::before{content:"\f1e5"}.bi-calendar-day::before{content:"\f1e6"}.bi-calendar-event-fill::before{content:"\f1e7"}.bi-calendar-event::before{content:"\f1e8"}.bi-calendar-fill::before{content:"\f1e9"}.bi-calendar-minus-fill::before{content:"\f1ea"}.bi-calendar-minus::before{content:"\f1eb"}.bi-calendar-month-fill::before{content:"\f1ec"}.bi-calendar-month::before{content:"\f1ed"}.bi-calendar-plus-fill::before{content:"\f1ee"}.bi-calendar-plus::before{content:"\f1ef"}.bi-calendar-range-fill::before{content:"\f1f0"}.bi-calendar-range::before{content:"\f1f1"}.bi-calendar-week-fill::before{content:"\f1f2"}.bi-calendar-week::before{content:"\f1f3"}.bi-calendar-x-fill::before{content:"\f1f4"}.bi-calendar-x::before{content:"\f1f5"}.bi-calendar::before{content:"\f1f6"}.bi-calendar2-check-fill::before{content:"\f1f7"}.bi-calendar2-check::before{content:"\f1f8"}.bi-calendar2-date-fill::before{content:"\f1f9"}.bi-calendar2-date::before{content:"\f1fa"}.bi-calendar2-day-fill::before{content:"\f1fb"}.bi-calendar2-day::before{content:"\f1fc"}.bi-calendar2-event-fill::before{content:"\f1fd"}.bi-calendar2-event::before{content:"\f1fe"}.bi-calendar2-fill::before{content:"\f1ff"}.bi-calendar2-minus-fill::before{content:"\f200"}.bi-calendar2-minus::before{content:"\f201"}.bi-calendar2-month-fill::before{content:"\f202"}.bi-calendar2-month::before{content:"\f203"}.bi-calendar2-plus-fill::before{content:"\f204"}.bi-calendar2-plus::before{content:"\f205"}.bi-calendar2-range-fill::before{content:"\f206"}.bi-calendar2-range::before{content:"\f207"}.bi-calendar2-week-fill::before{content:"\f208"}.bi-calendar2-week::before{content:"\f209"}.bi-calendar2-x-fill::before{content:"\f20a"}.bi-calendar2-x::before{content:"\f20b"}.bi-calendar2::before{content:"\f20c"}.bi-calendar3-event-fill::before{content:"\f20d"}.bi-calendar3-event::before{content:"\f20e"}.bi-calendar3-fill::before{content:"\f20f"}.bi-calendar3-range-fill::before{content:"\f210"}.bi-calendar3-range::before{content:"\f211"}.bi-calendar3-week-fill::before{content:"\f212"}.bi-calendar3-week::before{content:"\f213"}.bi-calendar3::before{content:"\f214"}.bi-calendar4-event::before{content:"\f215"}.bi-calendar4-range::before{content:"\f216"}.bi-calendar4-week::before{content:"\f217"}.bi-calendar4::before{content:"\f218"}.bi-camera-fill::before{content:"\f219"}.bi-camera-reels-fill::before{content:"\f21a"}.bi-camera-reels::before{content:"\f21b"}.bi-camera-video-fill::before{content:"\f21c"}.bi-camera-video-off-fill::before{content:"\f21d"}.bi-camera-video-off::before{content:"\f21e"}.bi-camera-video::before{content:"\f21f"}.bi-camera::before{content:"\f220"}.bi-camera2::before{content:"\f221"}.bi-capslock-fill::before{content:"\f222"}.bi-capslock::before{content:"\f223"}.bi-card-checklist::before{content:"\f224"}.bi-card-heading::before{content:"\f225"}.bi-card-image::before{content:"\f226"}.bi-card-list::before{content:"\f227"}.bi-card-text::before{content:"\f228"}.bi-caret-down-fill::before{content:"\f229"}.bi-caret-down-square-fill::before{content:"\f22a"}.bi-caret-down-square::before{content:"\f22b"}.bi-caret-down::before{content:"\f22c"}.bi-caret-left-fill::before{content:"\f22d"}.bi-caret-left-square-fill::before{content:"\f22e"}.bi-caret-left-square::before{content:"\f22f"}.bi-caret-left::before{content:"\f230"}.bi-caret-right-fill::before{content:"\f231"}.bi-caret-right-square-fill::before{content:"\f232"}.bi-caret-right-square::before{content:"\f233"}.bi-caret-right::before{content:"\f234"}.bi-caret-up-fill::before{content:"\f235"}.bi-caret-up-square-fill::before{content:"\f236"}.bi-caret-up-square::before{content:"\f237"}.bi-caret-up::before{content:"\f238"}.bi-cart-check-fill::before{content:"\f239"}.bi-cart-check::before{content:"\f23a"}.bi-cart-dash-fill::before{content:"\f23b"}.bi-cart-dash::before{content:"\f23c"}.bi-cart-fill::before{content:"\f23d"}.bi-cart-plus-fill::before{content:"\f23e"}.bi-cart-plus::before{content:"\f23f"}.bi-cart-x-fill::before{content:"\f240"}.bi-cart-x::before{content:"\f241"}.bi-cart::before{content:"\f242"}.bi-cart2::before{content:"\f243"}.bi-cart3::before{content:"\f244"}.bi-cart4::before{content:"\f245"}.bi-cash-stack::before{content:"\f246"}.bi-cash::before{content:"\f247"}.bi-cast::before{content:"\f248"}.bi-chat-dots-fill::before{content:"\f249"}.bi-chat-dots::before{content:"\f24a"}.bi-chat-fill::before{content:"\f24b"}.bi-chat-left-dots-fill::before{content:"\f24c"}.bi-chat-left-dots::before{content:"\f24d"}.bi-chat-left-fill::before{content:"\f24e"}.bi-chat-left-quote-fill::before{content:"\f24f"}.bi-chat-left-quote::before{content:"\f250"}.bi-chat-left-text-fill::before{content:"\f251"}.bi-chat-left-text::before{content:"\f252"}.bi-chat-left::before{content:"\f253"}.bi-chat-quote-fill::before{content:"\f254"}.bi-chat-quote::before{content:"\f255"}.bi-chat-right-dots-fill::before{content:"\f256"}.bi-chat-right-dots::before{content:"\f257"}.bi-chat-right-fill::before{content:"\f258"}.bi-chat-right-quote-fill::before{content:"\f259"}.bi-chat-right-quote::before{content:"\f25a"}.bi-chat-right-text-fill::before{content:"\f25b"}.bi-chat-right-text::before{content:"\f25c"}.bi-chat-right::before{content:"\f25d"}.bi-chat-square-dots-fill::before{content:"\f25e"}.bi-chat-square-dots::before{content:"\f25f"}.bi-chat-square-fill::before{content:"\f260"}.bi-chat-square-quote-fill::before{content:"\f261"}.bi-chat-square-quote::before{content:"\f262"}.bi-chat-square-text-fill::before{content:"\f263"}.bi-chat-square-text::before{content:"\f264"}.bi-chat-square::before{content:"\f265"}.bi-chat-text-fill::before{content:"\f266"}.bi-chat-text::before{content:"\f267"}.bi-chat::before{content:"\f268"}.bi-check-all::before{content:"\f269"}.bi-check-circle-fill::before{content:"\f26a"}.bi-check-circle::before{content:"\f26b"}.bi-check-square-fill::before{content:"\f26c"}.bi-check-square::before{content:"\f26d"}.bi-check::before{content:"\f26e"}.bi-check2-all::before{content:"\f26f"}.bi-check2-circle::before{content:"\f270"}.bi-check2-square::before{content:"\f271"}.bi-check2::before{content:"\f272"}.bi-chevron-bar-contract::before{content:"\f273"}.bi-chevron-bar-down::before{content:"\f274"}.bi-chevron-bar-expand::before{content:"\f275"}.bi-chevron-bar-left::before{content:"\f276"}.bi-chevron-bar-right::before{content:"\f277"}.bi-chevron-bar-up::before{content:"\f278"}.bi-chevron-compact-down::before{content:"\f279"}.bi-chevron-compact-left::before{content:"\f27a"}.bi-chevron-compact-right::before{content:"\f27b"}.bi-chevron-compact-up::before{content:"\f27c"}.bi-chevron-contract::before{content:"\f27d"}.bi-chevron-double-down::before{content:"\f27e"}.bi-chevron-double-left::before{content:"\f27f"}.bi-chevron-double-right::before{content:"\f280"}.bi-chevron-double-up::before{content:"\f281"}.bi-chevron-down::before{content:"\f282"}.bi-chevron-expand::before{content:"\f283"}.bi-chevron-left::before{content:"\f284"}.bi-chevron-right::before{content:"\f285"}.bi-chevron-up::before{content:"\f286"}.bi-circle-fill::before{content:"\f287"}.bi-circle-half::before{content:"\f288"}.bi-circle-square::before{content:"\f289"}.bi-circle::before{content:"\f28a"}.bi-clipboard-check::before{content:"\f28b"}.bi-clipboard-data::before{content:"\f28c"}.bi-clipboard-minus::before{content:"\f28d"}.bi-clipboard-plus::before{content:"\f28e"}.bi-clipboard-x::before{content:"\f28f"}.bi-clipboard::before{content:"\f290"}.bi-clock-fill::before{content:"\f291"}.bi-clock-history::before{content:"\f292"}.bi-clock::before{content:"\f293"}.bi-cloud-arrow-down-fill::before{content:"\f294"}.bi-cloud-arrow-down::before{content:"\f295"}.bi-cloud-arrow-up-fill::before{content:"\f296"}.bi-cloud-arrow-up::before{content:"\f297"}.bi-cloud-check-fill::before{content:"\f298"}.bi-cloud-check::before{content:"\f299"}.bi-cloud-download-fill::before{content:"\f29a"}.bi-cloud-download::before{content:"\f29b"}.bi-cloud-drizzle-fill::before{content:"\f29c"}.bi-cloud-drizzle::before{content:"\f29d"}.bi-cloud-fill::before{content:"\f29e"}.bi-cloud-fog-fill::before{content:"\f29f"}.bi-cloud-fog::before{content:"\f2a0"}.bi-cloud-fog2-fill::before{content:"\f2a1"}.bi-cloud-fog2::before{content:"\f2a2"}.bi-cloud-hail-fill::before{content:"\f2a3"}.bi-cloud-hail::before{content:"\f2a4"}.bi-cloud-haze-1::before{content:"\f2a5"}.bi-cloud-haze-fill::before{content:"\f2a6"}.bi-cloud-haze::before{content:"\f2a7"}.bi-cloud-haze2-fill::before{content:"\f2a8"}.bi-cloud-lightning-fill::before{content:"\f2a9"}.bi-cloud-lightning-rain-fill::before{content:"\f2aa"}.bi-cloud-lightning-rain::before{content:"\f2ab"}.bi-cloud-lightning::before{content:"\f2ac"}.bi-cloud-minus-fill::before{content:"\f2ad"}.bi-cloud-minus::before{content:"\f2ae"}.bi-cloud-moon-fill::before{content:"\f2af"}.bi-cloud-moon::before{content:"\f2b0"}.bi-cloud-plus-fill::before{content:"\f2b1"}.bi-cloud-plus::before{content:"\f2b2"}.bi-cloud-rain-fill::before{content:"\f2b3"}.bi-cloud-rain-heavy-fill::before{content:"\f2b4"}.bi-cloud-rain-heavy::before{content:"\f2b5"}.bi-cloud-rain::before{content:"\f2b6"}.bi-cloud-slash-fill::before{content:"\f2b7"}.bi-cloud-slash::before{content:"\f2b8"}.bi-cloud-sleet-fill::before{content:"\f2b9"}.bi-cloud-sleet::before{content:"\f2ba"}.bi-cloud-snow-fill::before{content:"\f2bb"}.bi-cloud-snow::before{content:"\f2bc"}.bi-cloud-sun-fill::before{content:"\f2bd"}.bi-cloud-sun::before{content:"\f2be"}.bi-cloud-upload-fill::before{content:"\f2bf"}.bi-cloud-upload::before{content:"\f2c0"}.bi-cloud::before{content:"\f2c1"}.bi-clouds-fill::before{content:"\f2c2"}.bi-clouds::before{content:"\f2c3"}.bi-cloudy-fill::before{content:"\f2c4"}.bi-cloudy::before{content:"\f2c5"}.bi-code-slash::before{content:"\f2c6"}.bi-code-square::before{content:"\f2c7"}.bi-code::before{content:"\f2c8"}.bi-collection-fill::before{content:"\f2c9"}.bi-collection-play-fill::before{content:"\f2ca"}.bi-collection-play::before{content:"\f2cb"}.bi-collection::before{content:"\f2cc"}.bi-columns-gap::before{content:"\f2cd"}.bi-columns::before{content:"\f2ce"}.bi-command::before{content:"\f2cf"}.bi-compass-fill::before{content:"\f2d0"}.bi-compass::before{content:"\f2d1"}.bi-cone-striped::before{content:"\f2d2"}.bi-cone::before{content:"\f2d3"}.bi-controller::before{content:"\f2d4"}.bi-cpu-fill::before{content:"\f2d5"}.bi-cpu::before{content:"\f2d6"}.bi-credit-card-2-back-fill::before{content:"\f2d7"}.bi-credit-card-2-back::before{content:"\f2d8"}.bi-credit-card-2-front-fill::before{content:"\f2d9"}.bi-credit-card-2-front::before{content:"\f2da"}.bi-credit-card-fill::before{content:"\f2db"}.bi-credit-card::before{content:"\f2dc"}.bi-crop::before{content:"\f2dd"}.bi-cup-fill::before{content:"\f2de"}.bi-cup-straw::before{content:"\f2df"}.bi-cup::before{content:"\f2e0"}.bi-cursor-fill::before{content:"\f2e1"}.bi-cursor-text::before{content:"\f2e2"}.bi-cursor::before{content:"\f2e3"}.bi-dash-circle-dotted::before{content:"\f2e4"}.bi-dash-circle-fill::before{content:"\f2e5"}.bi-dash-circle::before{content:"\f2e6"}.bi-dash-square-dotted::before{content:"\f2e7"}.bi-dash-square-fill::before{content:"\f2e8"}.bi-dash-square::before{content:"\f2e9"}.bi-dash::before{content:"\f2ea"}.bi-diagram-2-fill::before{content:"\f2eb"}.bi-diagram-2::before{content:"\f2ec"}.bi-diagram-3-fill::before{content:"\f2ed"}.bi-diagram-3::before{content:"\f2ee"}.bi-diamond-fill::before{content:"\f2ef"}.bi-diamond-half::before{content:"\f2f0"}.bi-diamond::before{content:"\f2f1"}.bi-dice-1-fill::before{content:"\f2f2"}.bi-dice-1::before{content:"\f2f3"}.bi-dice-2-fill::before{content:"\f2f4"}.bi-dice-2::before{content:"\f2f5"}.bi-dice-3-fill::before{content:"\f2f6"}.bi-dice-3::before{content:"\f2f7"}.bi-dice-4-fill::before{content:"\f2f8"}.bi-dice-4::before{content:"\f2f9"}.bi-dice-5-fill::before{content:"\f2fa"}.bi-dice-5::before{content:"\f2fb"}.bi-dice-6-fill::before{content:"\f2fc"}.bi-dice-6::before{content:"\f2fd"}.bi-disc-fill::before{content:"\f2fe"}.bi-disc::before{content:"\f2ff"}.bi-discord::before{content:"\f300"}.bi-display-fill::before{content:"\f301"}.bi-display::before{content:"\f302"}.bi-distribute-horizontal::before{content:"\f303"}.bi-distribute-vertical::before{content:"\f304"}.bi-door-closed-fill::before{content:"\f305"}.bi-door-closed::before{content:"\f306"}.bi-door-open-fill::before{content:"\f307"}.bi-door-open::before{content:"\f308"}.bi-dot::before{content:"\f309"}.bi-download::before{content:"\f30a"}.bi-droplet-fill::before{content:"\f30b"}.bi-droplet-half::before{content:"\f30c"}.bi-droplet::before{content:"\f30d"}.bi-earbuds::before{content:"\f30e"}.bi-easel-fill::before{content:"\f30f"}.bi-easel::before{content:"\f310"}.bi-egg-fill::before{content:"\f311"}.bi-egg-fried::before{content:"\f312"}.bi-egg::before{content:"\f313"}.bi-eject-fill::before{content:"\f314"}.bi-eject::before{content:"\f315"}.bi-emoji-angry-fill::before{content:"\f316"}.bi-emoji-angry::before{content:"\f317"}.bi-emoji-dizzy-fill::before{content:"\f318"}.bi-emoji-dizzy::before{content:"\f319"}.bi-emoji-expressionless-fill::before{content:"\f31a"}.bi-emoji-expressionless::before{content:"\f31b"}.bi-emoji-frown-fill::before{content:"\f31c"}.bi-emoji-frown::before{content:"\f31d"}.bi-emoji-heart-eyes-fill::before{content:"\f31e"}.bi-emoji-heart-eyes::before{content:"\f31f"}.bi-emoji-laughing-fill::before{content:"\f320"}.bi-emoji-laughing::before{content:"\f321"}.bi-emoji-neutral-fill::before{content:"\f322"}.bi-emoji-neutral::before{content:"\f323"}.bi-emoji-smile-fill::before{content:"\f324"}.bi-emoji-smile-upside-down-fill::before{content:"\f325"}.bi-emoji-smile-upside-down::before{content:"\f326"}.bi-emoji-smile::before{content:"\f327"}.bi-emoji-sunglasses-fill::before{content:"\f328"}.bi-emoji-sunglasses::before{content:"\f329"}.bi-emoji-wink-fill::before{content:"\f32a"}.bi-emoji-wink::before{content:"\f32b"}.bi-envelope-fill::before{content:"\f32c"}.bi-envelope-open-fill::before{content:"\f32d"}.bi-envelope-open::before{content:"\f32e"}.bi-envelope::before{content:"\f32f"}.bi-eraser-fill::before{content:"\f330"}.bi-eraser::before{content:"\f331"}.bi-exclamation-circle-fill::before{content:"\f332"}.bi-exclamation-circle::before{content:"\f333"}.bi-exclamation-diamond-fill::before{content:"\f334"}.bi-exclamation-diamond::before{content:"\f335"}.bi-exclamation-octagon-fill::before{content:"\f336"}.bi-exclamation-octagon::before{content:"\f337"}.bi-exclamation-square-fill::before{content:"\f338"}.bi-exclamation-square::before{content:"\f339"}.bi-exclamation-triangle-fill::before{content:"\f33a"}.bi-exclamation-triangle::before{content:"\f33b"}.bi-exclamation::before{content:"\f33c"}.bi-exclude::before{content:"\f33d"}.bi-eye-fill::before{content:"\f33e"}.bi-eye-slash-fill::before{content:"\f33f"}.bi-eye-slash::before{content:"\f340"}.bi-eye::before{content:"\f341"}.bi-eyedropper::before{content:"\f342"}.bi-eyeglasses::before{content:"\f343"}.bi-facebook::before{content:"\f344"}.bi-file-arrow-down-fill::before{content:"\f345"}.bi-file-arrow-down::before{content:"\f346"}.bi-file-arrow-up-fill::before{content:"\f347"}.bi-file-arrow-up::before{content:"\f348"}.bi-file-bar-graph-fill::before{content:"\f349"}.bi-file-bar-graph::before{content:"\f34a"}.bi-file-binary-fill::before{content:"\f34b"}.bi-file-binary::before{content:"\f34c"}.bi-file-break-fill::before{content:"\f34d"}.bi-file-break::before{content:"\f34e"}.bi-file-check-fill::before{content:"\f34f"}.bi-file-check::before{content:"\f350"}.bi-file-code-fill::before{content:"\f351"}.bi-file-code::before{content:"\f352"}.bi-file-diff-fill::before{content:"\f353"}.bi-file-diff::before{content:"\f354"}.bi-file-earmark-arrow-down-fill::before{content:"\f355"}.bi-file-earmark-arrow-down::before{content:"\f356"}.bi-file-earmark-arrow-up-fill::before{content:"\f357"}.bi-file-earmark-arrow-up::before{content:"\f358"}.bi-file-earmark-bar-graph-fill::before{content:"\f359"}.bi-file-earmark-bar-graph::before{content:"\f35a"}.bi-file-earmark-binary-fill::before{content:"\f35b"}.bi-file-earmark-binary::before{content:"\f35c"}.bi-file-earmark-break-fill::before{content:"\f35d"}.bi-file-earmark-break::before{content:"\f35e"}.bi-file-earmark-check-fill::before{content:"\f35f"}.bi-file-earmark-check::before{content:"\f360"}.bi-file-earmark-code-fill::before{content:"\f361"}.bi-file-earmark-code::before{content:"\f362"}.bi-file-earmark-diff-fill::before{content:"\f363"}.bi-file-earmark-diff::before{content:"\f364"}.bi-file-earmark-easel-fill::before{content:"\f365"}.bi-file-earmark-easel::before{content:"\f366"}.bi-file-earmark-excel-fill::before{content:"\f367"}.bi-file-earmark-excel::before{content:"\f368"}.bi-file-earmark-fill::before{content:"\f369"}.bi-file-earmark-font-fill::before{content:"\f36a"}.bi-file-earmark-font::before{content:"\f36b"}.bi-file-earmark-image-fill::before{content:"\f36c"}.bi-file-earmark-image::before{content:"\f36d"}.bi-file-earmark-lock-fill::before{content:"\f36e"}.bi-file-earmark-lock::before{content:"\f36f"}.bi-file-earmark-lock2-fill::before{content:"\f370"}.bi-file-earmark-lock2::before{content:"\f371"}.bi-file-earmark-medical-fill::before{content:"\f372"}.bi-file-earmark-medical::before{content:"\f373"}.bi-file-earmark-minus-fill::before{content:"\f374"}.bi-file-earmark-minus::before{content:"\f375"}.bi-file-earmark-music-fill::before{content:"\f376"}.bi-file-earmark-music::before{content:"\f377"}.bi-file-earmark-person-fill::before{content:"\f378"}.bi-file-earmark-person::before{content:"\f379"}.bi-file-earmark-play-fill::before{content:"\f37a"}.bi-file-earmark-play::before{content:"\f37b"}.bi-file-earmark-plus-fill::before{content:"\f37c"}.bi-file-earmark-plus::before{content:"\f37d"}.bi-file-earmark-post-fill::before{content:"\f37e"}.bi-file-earmark-post::before{content:"\f37f"}.bi-file-earmark-ppt-fill::before{content:"\f380"}.bi-file-earmark-ppt::before{content:"\f381"}.bi-file-earmark-richtext-fill::before{content:"\f382"}.bi-file-earmark-richtext::before{content:"\f383"}.bi-file-earmark-ruled-fill::before{content:"\f384"}.bi-file-earmark-ruled::before{content:"\f385"}.bi-file-earmark-slides-fill::before{content:"\f386"}.bi-file-earmark-slides::before{content:"\f387"}.bi-file-earmark-spreadsheet-fill::before{content:"\f388"}.bi-file-earmark-spreadsheet::before{content:"\f389"}.bi-file-earmark-text-fill::before{content:"\f38a"}.bi-file-earmark-text::before{content:"\f38b"}.bi-file-earmark-word-fill::before{content:"\f38c"}.bi-file-earmark-word::before{content:"\f38d"}.bi-file-earmark-x-fill::before{content:"\f38e"}.bi-file-earmark-x::before{content:"\f38f"}.bi-file-earmark-zip-fill::before{content:"\f390"}.bi-file-earmark-zip::before{content:"\f391"}.bi-file-earmark::before{content:"\f392"}.bi-file-easel-fill::before{content:"\f393"}.bi-file-easel::before{content:"\f394"}.bi-file-excel-fill::before{content:"\f395"}.bi-file-excel::before{content:"\f396"}.bi-file-fill::before{content:"\f397"}.bi-file-font-fill::before{content:"\f398"}.bi-file-font::before{content:"\f399"}.bi-file-image-fill::before{content:"\f39a"}.bi-file-image::before{content:"\f39b"}.bi-file-lock-fill::before{content:"\f39c"}.bi-file-lock::before{content:"\f39d"}.bi-file-lock2-fill::before{content:"\f39e"}.bi-file-lock2::before{content:"\f39f"}.bi-file-medical-fill::before{content:"\f3a0"}.bi-file-medical::before{content:"\f3a1"}.bi-file-minus-fill::before{content:"\f3a2"}.bi-file-minus::before{content:"\f3a3"}.bi-file-music-fill::before{content:"\f3a4"}.bi-file-music::before{content:"\f3a5"}.bi-file-person-fill::before{content:"\f3a6"}.bi-file-person::before{content:"\f3a7"}.bi-file-play-fill::before{content:"\f3a8"}.bi-file-play::before{content:"\f3a9"}.bi-file-plus-fill::before{content:"\f3aa"}.bi-file-plus::before{content:"\f3ab"}.bi-file-post-fill::before{content:"\f3ac"}.bi-file-post::before{content:"\f3ad"}.bi-file-ppt-fill::before{content:"\f3ae"}.bi-file-ppt::before{content:"\f3af"}.bi-file-richtext-fill::before{content:"\f3b0"}.bi-file-richtext::before{content:"\f3b1"}.bi-file-ruled-fill::before{content:"\f3b2"}.bi-file-ruled::before{content:"\f3b3"}.bi-file-slides-fill::before{content:"\f3b4"}.bi-file-slides::before{content:"\f3b5"}.bi-file-spreadsheet-fill::before{content:"\f3b6"}.bi-file-spreadsheet::before{content:"\f3b7"}.bi-file-text-fill::before{content:"\f3b8"}.bi-file-text::before{content:"\f3b9"}.bi-file-word-fill::before{content:"\f3ba"}.bi-file-word::before{content:"\f3bb"}.bi-file-x-fill::before{content:"\f3bc"}.bi-file-x::before{content:"\f3bd"}.bi-file-zip-fill::before{content:"\f3be"}.bi-file-zip::before{content:"\f3bf"}.bi-file::before{content:"\f3c0"}.bi-files-alt::before{content:"\f3c1"}.bi-files::before{content:"\f3c2"}.bi-film::before{content:"\f3c3"}.bi-filter-circle-fill::before{content:"\f3c4"}.bi-filter-circle::before{content:"\f3c5"}.bi-filter-left::before{content:"\f3c6"}.bi-filter-right::before{content:"\f3c7"}.bi-filter-square-fill::before{content:"\f3c8"}.bi-filter-square::before{content:"\f3c9"}.bi-filter::before{content:"\f3ca"}.bi-flag-fill::before{content:"\f3cb"}.bi-flag::before{content:"\f3cc"}.bi-flower1::before{content:"\f3cd"}.bi-flower2::before{content:"\f3ce"}.bi-flower3::before{content:"\f3cf"}.bi-folder-check::before{content:"\f3d0"}.bi-folder-fill::before{content:"\f3d1"}.bi-folder-minus::before{content:"\f3d2"}.bi-folder-plus::before{content:"\f3d3"}.bi-folder-symlink-fill::before{content:"\f3d4"}.bi-folder-symlink::before{content:"\f3d5"}.bi-folder-x::before{content:"\f3d6"}.bi-folder::before{content:"\f3d7"}.bi-folder2-open::before{content:"\f3d8"}.bi-folder2::before{content:"\f3d9"}.bi-fonts::before{content:"\f3da"}.bi-forward-fill::before{content:"\f3db"}.bi-forward::before{content:"\f3dc"}.bi-front::before{content:"\f3dd"}.bi-fullscreen-exit::before{content:"\f3de"}.bi-fullscreen::before{content:"\f3df"}.bi-funnel-fill::before{content:"\f3e0"}.bi-funnel::before{content:"\f3e1"}.bi-gear-fill::before{content:"\f3e2"}.bi-gear-wide-connected::before{content:"\f3e3"}.bi-gear-wide::before{content:"\f3e4"}.bi-gear::before{content:"\f3e5"}.bi-gem::before{content:"\f3e6"}.bi-geo-alt-fill::before{content:"\f3e7"}.bi-geo-alt::before{content:"\f3e8"}.bi-geo-fill::before{content:"\f3e9"}.bi-geo::before{content:"\f3ea"}.bi-gift-fill::before{content:"\f3eb"}.bi-gift::before{content:"\f3ec"}.bi-github::before{content:"\f3ed"}.bi-globe::before{content:"\f3ee"}.bi-globe2::before{content:"\f3ef"}.bi-google::before{content:"\f3f0"}.bi-graph-down::before{content:"\f3f1"}.bi-graph-up::before{content:"\f3f2"}.bi-grid-1x2-fill::before{content:"\f3f3"}.bi-grid-1x2::before{content:"\f3f4"}.bi-grid-3x2-gap-fill::before{content:"\f3f5"}.bi-grid-3x2-gap::before{content:"\f3f6"}.bi-grid-3x2::before{content:"\f3f7"}.bi-grid-3x3-gap-fill::before{content:"\f3f8"}.bi-grid-3x3-gap::before{content:"\f3f9"}.bi-grid-3x3::before{content:"\f3fa"}.bi-grid-fill::before{content:"\f3fb"}.bi-grid::before{content:"\f3fc"}.bi-grip-horizontal::before{content:"\f3fd"}.bi-grip-vertical::before{content:"\f3fe"}.bi-hammer::before{content:"\f3ff"}.bi-hand-index-fill::before{content:"\f400"}.bi-hand-index-thumb-fill::before{content:"\f401"}.bi-hand-index-thumb::before{content:"\f402"}.bi-hand-index::before{content:"\f403"}.bi-hand-thumbs-down-fill::before{content:"\f404"}.bi-hand-thumbs-down::before{content:"\f405"}.bi-hand-thumbs-up-fill::before{content:"\f406"}.bi-hand-thumbs-up::before{content:"\f407"}.bi-handbag-fill::before{content:"\f408"}.bi-handbag::before{content:"\f409"}.bi-hash::before{content:"\f40a"}.bi-hdd-fill::before{content:"\f40b"}.bi-hdd-network-fill::before{content:"\f40c"}.bi-hdd-network::before{content:"\f40d"}.bi-hdd-rack-fill::before{content:"\f40e"}.bi-hdd-rack::before{content:"\f40f"}.bi-hdd-stack-fill::before{content:"\f410"}.bi-hdd-stack::before{content:"\f411"}.bi-hdd::before{content:"\f412"}.bi-headphones::before{content:"\f413"}.bi-headset::before{content:"\f414"}.bi-heart-fill::before{content:"\f415"}.bi-heart-half::before{content:"\f416"}.bi-heart::before{content:"\f417"}.bi-heptagon-fill::before{content:"\f418"}.bi-heptagon-half::before{content:"\f419"}.bi-heptagon::before{content:"\f41a"}.bi-hexagon-fill::before{content:"\f41b"}.bi-hexagon-half::before{content:"\f41c"}.bi-hexagon::before{content:"\f41d"}.bi-hourglass-bottom::before{content:"\f41e"}.bi-hourglass-split::before{content:"\f41f"}.bi-hourglass-top::before{content:"\f420"}.bi-hourglass::before{content:"\f421"}.bi-house-door-fill::before{content:"\f422"}.bi-house-door::before{content:"\f423"}.bi-house-fill::before{content:"\f424"}.bi-house::before{content:"\f425"}.bi-hr::before{content:"\f426"}.bi-hurricane::before{content:"\f427"}.bi-image-alt::before{content:"\f428"}.bi-image-fill::before{content:"\f429"}.bi-image::before{content:"\f42a"}.bi-images::before{content:"\f42b"}.bi-inbox-fill::before{content:"\f42c"}.bi-inbox::before{content:"\f42d"}.bi-inboxes-fill::before{content:"\f42e"}.bi-inboxes::before{content:"\f42f"}.bi-info-circle-fill::before{content:"\f430"}.bi-info-circle::before{content:"\f431"}.bi-info-square-fill::before{content:"\f432"}.bi-info-square::before{content:"\f433"}.bi-info::before{content:"\f434"}.bi-input-cursor-text::before{content:"\f435"}.bi-input-cursor::before{content:"\f436"}.bi-instagram::before{content:"\f437"}.bi-intersect::before{content:"\f438"}.bi-journal-album::before{content:"\f439"}.bi-journal-arrow-down::before{content:"\f43a"}.bi-journal-arrow-up::before{content:"\f43b"}.bi-journal-bookmark-fill::before{content:"\f43c"}.bi-journal-bookmark::before{content:"\f43d"}.bi-journal-check::before{content:"\f43e"}.bi-journal-code::before{content:"\f43f"}.bi-journal-medical::before{content:"\f440"}.bi-journal-minus::before{content:"\f441"}.bi-journal-plus::before{content:"\f442"}.bi-journal-richtext::before{content:"\f443"}.bi-journal-text::before{content:"\f444"}.bi-journal-x::before{content:"\f445"}.bi-journal::before{content:"\f446"}.bi-journals::before{content:"\f447"}.bi-joystick::before{content:"\f448"}.bi-justify-left::before{content:"\f449"}.bi-justify-right::before{content:"\f44a"}.bi-justify::before{content:"\f44b"}.bi-kanban-fill::before{content:"\f44c"}.bi-kanban::before{content:"\f44d"}.bi-key-fill::before{content:"\f44e"}.bi-key::before{content:"\f44f"}.bi-keyboard-fill::before{content:"\f450"}.bi-keyboard::before{content:"\f451"}.bi-ladder::before{content:"\f452"}.bi-lamp-fill::before{content:"\f453"}.bi-lamp::before{content:"\f454"}.bi-laptop-fill::before{content:"\f455"}.bi-laptop::before{content:"\f456"}.bi-layer-backward::before{content:"\f457"}.bi-layer-forward::before{content:"\f458"}.bi-layers-fill::before{content:"\f459"}.bi-layers-half::before{content:"\f45a"}.bi-layers::before{content:"\f45b"}.bi-layout-sidebar-inset-reverse::before{content:"\f45c"}.bi-layout-sidebar-inset::before{content:"\f45d"}.bi-layout-sidebar-reverse::before{content:"\f45e"}.bi-layout-sidebar::before{content:"\f45f"}.bi-layout-split::before{content:"\f460"}.bi-layout-text-sidebar-reverse::before{content:"\f461"}.bi-layout-text-sidebar::before{content:"\f462"}.bi-layout-text-window-reverse::before{content:"\f463"}.bi-layout-text-window::before{content:"\f464"}.bi-layout-three-columns::before{content:"\f465"}.bi-layout-wtf::before{content:"\f466"}.bi-life-preserver::before{content:"\f467"}.bi-lightbulb-fill::before{content:"\f468"}.bi-lightbulb-off-fill::before{content:"\f469"}.bi-lightbulb-off::before{content:"\f46a"}.bi-lightbulb::before{content:"\f46b"}.bi-lightning-charge-fill::before{content:"\f46c"}.bi-lightning-charge::before{content:"\f46d"}.bi-lightning-fill::before{content:"\f46e"}.bi-lightning::before{content:"\f46f"}.bi-link-45deg::before{content:"\f470"}.bi-link::before{content:"\f471"}.bi-linkedin::before{content:"\f472"}.bi-list-check::before{content:"\f473"}.bi-list-nested::before{content:"\f474"}.bi-list-ol::before{content:"\f475"}.bi-list-stars::before{content:"\f476"}.bi-list-task::before{content:"\f477"}.bi-list-ul::before{content:"\f478"}.bi-list::before{content:"\f479"}.bi-lock-fill::before{content:"\f47a"}.bi-lock::before{content:"\f47b"}.bi-mailbox::before{content:"\f47c"}.bi-mailbox2::before{content:"\f47d"}.bi-map-fill::before{content:"\f47e"}.bi-map::before{content:"\f47f"}.bi-markdown-fill::before{content:"\f480"}.bi-markdown::before{content:"\f481"}.bi-mask::before{content:"\f482"}.bi-megaphone-fill::before{content:"\f483"}.bi-megaphone::before{content:"\f484"}.bi-menu-app-fill::before{content:"\f485"}.bi-menu-app::before{content:"\f486"}.bi-menu-button-fill::before{content:"\f487"}.bi-menu-button-wide-fill::before{content:"\f488"}.bi-menu-button-wide::before{content:"\f489"}.bi-menu-button::before{content:"\f48a"}.bi-menu-down::before{content:"\f48b"}.bi-menu-up::before{content:"\f48c"}.bi-mic-fill::before{content:"\f48d"}.bi-mic-mute-fill::before{content:"\f48e"}.bi-mic-mute::before{content:"\f48f"}.bi-mic::before{content:"\f490"}.bi-minecart-loaded::before{content:"\f491"}.bi-minecart::before{content:"\f492"}.bi-moisture::before{content:"\f493"}.bi-moon-fill::before{content:"\f494"}.bi-moon-stars-fill::before{content:"\f495"}.bi-moon-stars::before{content:"\f496"}.bi-moon::before{content:"\f497"}.bi-mouse-fill::before{content:"\f498"}.bi-mouse::before{content:"\f499"}.bi-mouse2-fill::before{content:"\f49a"}.bi-mouse2::before{content:"\f49b"}.bi-mouse3-fill::before{content:"\f49c"}.bi-mouse3::before{content:"\f49d"}.bi-music-note-beamed::before{content:"\f49e"}.bi-music-note-list::before{content:"\f49f"}.bi-music-note::before{content:"\f4a0"}.bi-music-player-fill::before{content:"\f4a1"}.bi-music-player::before{content:"\f4a2"}.bi-newspaper::before{content:"\f4a3"}.bi-node-minus-fill::before{content:"\f4a4"}.bi-node-minus::before{content:"\f4a5"}.bi-node-plus-fill::before{content:"\f4a6"}.bi-node-plus::before{content:"\f4a7"}.bi-nut-fill::before{content:"\f4a8"}.bi-nut::before{content:"\f4a9"}.bi-octagon-fill::before{content:"\f4aa"}.bi-octagon-half::before{content:"\f4ab"}.bi-octagon::before{content:"\f4ac"}.bi-option::before{content:"\f4ad"}.bi-outlet::before{content:"\f4ae"}.bi-paint-bucket::before{content:"\f4af"}.bi-palette-fill::before{content:"\f4b0"}.bi-palette::before{content:"\f4b1"}.bi-palette2::before{content:"\f4b2"}.bi-paperclip::before{content:"\f4b3"}.bi-paragraph::before{content:"\f4b4"}.bi-patch-check-fill::before{content:"\f4b5"}.bi-patch-check::before{content:"\f4b6"}.bi-patch-exclamation-fill::before{content:"\f4b7"}.bi-patch-exclamation::before{content:"\f4b8"}.bi-patch-minus-fill::before{content:"\f4b9"}.bi-patch-minus::before{content:"\f4ba"}.bi-patch-plus-fill::before{content:"\f4bb"}.bi-patch-plus::before{content:"\f4bc"}.bi-patch-question-fill::before{content:"\f4bd"}.bi-patch-question::before{content:"\f4be"}.bi-pause-btn-fill::before{content:"\f4bf"}.bi-pause-btn::before{content:"\f4c0"}.bi-pause-circle-fill::before{content:"\f4c1"}.bi-pause-circle::before{content:"\f4c2"}.bi-pause-fill::before{content:"\f4c3"}.bi-pause::before{content:"\f4c4"}.bi-peace-fill::before{content:"\f4c5"}.bi-peace::before{content:"\f4c6"}.bi-pen-fill::before{content:"\f4c7"}.bi-pen::before{content:"\f4c8"}.bi-pencil-fill::before{content:"\f4c9"}.bi-pencil-square::before{content:"\f4ca"}.bi-pencil::before{content:"\f4cb"}.bi-pentagon-fill::before{content:"\f4cc"}.bi-pentagon-half::before{content:"\f4cd"}.bi-pentagon::before{content:"\f4ce"}.bi-people-fill::before{content:"\f4cf"}.bi-people::before{content:"\f4d0"}.bi-percent::before{content:"\f4d1"}.bi-person-badge-fill::before{content:"\f4d2"}.bi-person-badge::before{content:"\f4d3"}.bi-person-bounding-box::before{content:"\f4d4"}.bi-person-check-fill::before{content:"\f4d5"}.bi-person-check::before{content:"\f4d6"}.bi-person-circle::before{content:"\f4d7"}.bi-person-dash-fill::before{content:"\f4d8"}.bi-person-dash::before{content:"\f4d9"}.bi-person-fill::before{content:"\f4da"}.bi-person-lines-fill::before{content:"\f4db"}.bi-person-plus-fill::before{content:"\f4dc"}.bi-person-plus::before{content:"\f4dd"}.bi-person-square::before{content:"\f4de"}.bi-person-x-fill::before{content:"\f4df"}.bi-person-x::before{content:"\f4e0"}.bi-person::before{content:"\f4e1"}.bi-phone-fill::before{content:"\f4e2"}.bi-phone-landscape-fill::before{content:"\f4e3"}.bi-phone-landscape::before{content:"\f4e4"}.bi-phone-vibrate-fill::before{content:"\f4e5"}.bi-phone-vibrate::before{content:"\f4e6"}.bi-phone::before{content:"\f4e7"}.bi-pie-chart-fill::before{content:"\f4e8"}.bi-pie-chart::before{content:"\f4e9"}.bi-pin-angle-fill::before{content:"\f4ea"}.bi-pin-angle::before{content:"\f4eb"}.bi-pin-fill::before{content:"\f4ec"}.bi-pin::before{content:"\f4ed"}.bi-pip-fill::before{content:"\f4ee"}.bi-pip::before{content:"\f4ef"}.bi-play-btn-fill::before{content:"\f4f0"}.bi-play-btn::before{content:"\f4f1"}.bi-play-circle-fill::before{content:"\f4f2"}.bi-play-circle::before{content:"\f4f3"}.bi-play-fill::before{content:"\f4f4"}.bi-play::before{content:"\f4f5"}.bi-plug-fill::before{content:"\f4f6"}.bi-plug::before{content:"\f4f7"}.bi-plus-circle-dotted::before{content:"\f4f8"}.bi-plus-circle-fill::before{content:"\f4f9"}.bi-plus-circle::before{content:"\f4fa"}.bi-plus-square-dotted::before{content:"\f4fb"}.bi-plus-square-fill::before{content:"\f4fc"}.bi-plus-square::before{content:"\f4fd"}.bi-plus::before{content:"\f4fe"}.bi-power::before{content:"\f4ff"}.bi-printer-fill::before{content:"\f500"}.bi-printer::before{content:"\f501"}.bi-puzzle-fill::before{content:"\f502"}.bi-puzzle::before{content:"\f503"}.bi-question-circle-fill::before{content:"\f504"}.bi-question-circle::before{content:"\f505"}.bi-question-diamond-fill::before{content:"\f506"}.bi-question-diamond::before{content:"\f507"}.bi-question-octagon-fill::before{content:"\f508"}.bi-question-octagon::before{content:"\f509"}.bi-question-square-fill::before{content:"\f50a"}.bi-question-square::before{content:"\f50b"}.bi-question::before{content:"\f50c"}.bi-rainbow::before{content:"\f50d"}.bi-receipt-cutoff::before{content:"\f50e"}.bi-receipt::before{content:"\f50f"}.bi-reception-0::before{content:"\f510"}.bi-reception-1::before{content:"\f511"}.bi-reception-2::before{content:"\f512"}.bi-reception-3::before{content:"\f513"}.bi-reception-4::before{content:"\f514"}.bi-record-btn-fill::before{content:"\f515"}.bi-record-btn::before{content:"\f516"}.bi-record-circle-fill::before{content:"\f517"}.bi-record-circle::before{content:"\f518"}.bi-record-fill::before{content:"\f519"}.bi-record::before{content:"\f51a"}.bi-record2-fill::before{content:"\f51b"}.bi-record2::before{content:"\f51c"}.bi-reply-all-fill::before{content:"\f51d"}.bi-reply-all::before{content:"\f51e"}.bi-reply-fill::before{content:"\f51f"}.bi-reply::before{content:"\f520"}.bi-rss-fill::before{content:"\f521"}.bi-rss::before{content:"\f522"}.bi-rulers::before{content:"\f523"}.bi-save-fill::before{content:"\f524"}.bi-save::before{content:"\f525"}.bi-save2-fill::before{content:"\f526"}.bi-save2::before{content:"\f527"}.bi-scissors::before{content:"\f528"}.bi-screwdriver::before{content:"\f529"}.bi-search::before{content:"\f52a"}.bi-segmented-nav::before{content:"\f52b"}.bi-server::before{content:"\f52c"}.bi-share-fill::before{content:"\f52d"}.bi-share::before{content:"\f52e"}.bi-shield-check::before{content:"\f52f"}.bi-shield-exclamation::before{content:"\f530"}.bi-shield-fill-check::before{content:"\f531"}.bi-shield-fill-exclamation::before{content:"\f532"}.bi-shield-fill-minus::before{content:"\f533"}.bi-shield-fill-plus::before{content:"\f534"}.bi-shield-fill-x::before{content:"\f535"}.bi-shield-fill::before{content:"\f536"}.bi-shield-lock-fill::before{content:"\f537"}.bi-shield-lock::before{content:"\f538"}.bi-shield-minus::before{content:"\f539"}.bi-shield-plus::before{content:"\f53a"}.bi-shield-shaded::before{content:"\f53b"}.bi-shield-slash-fill::before{content:"\f53c"}.bi-shield-slash::before{content:"\f53d"}.bi-shield-x::before{content:"\f53e"}.bi-shield::before{content:"\f53f"}.bi-shift-fill::before{content:"\f540"}.bi-shift::before{content:"\f541"}.bi-shop-window::before{content:"\f542"}.bi-shop::before{content:"\f543"}.bi-shuffle::before{content:"\f544"}.bi-signpost-2-fill::before{content:"\f545"}.bi-signpost-2::before{content:"\f546"}.bi-signpost-fill::before{content:"\f547"}.bi-signpost-split-fill::before{content:"\f548"}.bi-signpost-split::before{content:"\f549"}.bi-signpost::before{content:"\f54a"}.bi-sim-fill::before{content:"\f54b"}.bi-sim::before{content:"\f54c"}.bi-skip-backward-btn-fill::before{content:"\f54d"}.bi-skip-backward-btn::before{content:"\f54e"}.bi-skip-backward-circle-fill::before{content:"\f54f"}.bi-skip-backward-circle::before{content:"\f550"}.bi-skip-backward-fill::before{content:"\f551"}.bi-skip-backward::before{content:"\f552"}.bi-skip-end-btn-fill::before{content:"\f553"}.bi-skip-end-btn::before{content:"\f554"}.bi-skip-end-circle-fill::before{content:"\f555"}.bi-skip-end-circle::before{content:"\f556"}.bi-skip-end-fill::before{content:"\f557"}.bi-skip-end::before{content:"\f558"}.bi-skip-forward-btn-fill::before{content:"\f559"}.bi-skip-forward-btn::before{content:"\f55a"}.bi-skip-forward-circle-fill::before{content:"\f55b"}.bi-skip-forward-circle::before{content:"\f55c"}.bi-skip-forward-fill::before{content:"\f55d"}.bi-skip-forward::before{content:"\f55e"}.bi-skip-start-btn-fill::before{content:"\f55f"}.bi-skip-start-btn::before{content:"\f560"}.bi-skip-start-circle-fill::before{content:"\f561"}.bi-skip-start-circle::before{content:"\f562"}.bi-skip-start-fill::before{content:"\f563"}.bi-skip-start::before{content:"\f564"}.bi-slack::before{content:"\f565"}.bi-slash-circle-fill::before{content:"\f566"}.bi-slash-circle::before{content:"\f567"}.bi-slash-square-fill::before{content:"\f568"}.bi-slash-square::before{content:"\f569"}.bi-slash::before{content:"\f56a"}.bi-sliders::before{content:"\f56b"}.bi-smartwatch::before{content:"\f56c"}.bi-snow::before{content:"\f56d"}.bi-snow2::before{content:"\f56e"}.bi-snow3::before{content:"\f56f"}.bi-sort-alpha-down-alt::before{content:"\f570"}.bi-sort-alpha-down::before{content:"\f571"}.bi-sort-alpha-up-alt::before{content:"\f572"}.bi-sort-alpha-up::before{content:"\f573"}.bi-sort-down-alt::before{content:"\f574"}.bi-sort-down::before{content:"\f575"}.bi-sort-numeric-down-alt::before{content:"\f576"}.bi-sort-numeric-down::before{content:"\f577"}.bi-sort-numeric-up-alt::before{content:"\f578"}.bi-sort-numeric-up::before{content:"\f579"}.bi-sort-up-alt::before{content:"\f57a"}.bi-sort-up::before{content:"\f57b"}.bi-soundwave::before{content:"\f57c"}.bi-speaker-fill::before{content:"\f57d"}.bi-speaker::before{content:"\f57e"}.bi-speedometer::before{content:"\f57f"}.bi-speedometer2::before{content:"\f580"}.bi-spellcheck::before{content:"\f581"}.bi-square-fill::before{content:"\f582"}.bi-square-half::before{content:"\f583"}.bi-square::before{content:"\f584"}.bi-stack::before{content:"\f585"}.bi-star-fill::before{content:"\f586"}.bi-star-half::before{content:"\f587"}.bi-star::before{content:"\f588"}.bi-stars::before{content:"\f589"}.bi-stickies-fill::before{content:"\f58a"}.bi-stickies::before{content:"\f58b"}.bi-sticky-fill::before{content:"\f58c"}.bi-sticky::before{content:"\f58d"}.bi-stop-btn-fill::before{content:"\f58e"}.bi-stop-btn::before{content:"\f58f"}.bi-stop-circle-fill::before{content:"\f590"}.bi-stop-circle::before{content:"\f591"}.bi-stop-fill::before{content:"\f592"}.bi-stop::before{content:"\f593"}.bi-stoplights-fill::before{content:"\f594"}.bi-stoplights::before{content:"\f595"}.bi-stopwatch-fill::before{content:"\f596"}.bi-stopwatch::before{content:"\f597"}.bi-subtract::before{content:"\f598"}.bi-suit-club-fill::before{content:"\f599"}.bi-suit-club::before{content:"\f59a"}.bi-suit-diamond-fill::before{content:"\f59b"}.bi-suit-diamond::before{content:"\f59c"}.bi-suit-heart-fill::before{content:"\f59d"}.bi-suit-heart::before{content:"\f59e"}.bi-suit-spade-fill::before{content:"\f59f"}.bi-suit-spade::before{content:"\f5a0"}.bi-sun-fill::before{content:"\f5a1"}.bi-sun::before{content:"\f5a2"}.bi-sunglasses::before{content:"\f5a3"}.bi-sunrise-fill::before{content:"\f5a4"}.bi-sunrise::before{content:"\f5a5"}.bi-sunset-fill::before{content:"\f5a6"}.bi-sunset::before{content:"\f5a7"}.bi-symmetry-horizontal::before{content:"\f5a8"}.bi-symmetry-vertical::before{content:"\f5a9"}.bi-table::before{content:"\f5aa"}.bi-tablet-fill::before{content:"\f5ab"}.bi-tablet-landscape-fill::before{content:"\f5ac"}.bi-tablet-landscape::before{content:"\f5ad"}.bi-tablet::before{content:"\f5ae"}.bi-tag-fill::before{content:"\f5af"}.bi-tag::before{content:"\f5b0"}.bi-tags-fill::before{content:"\f5b1"}.bi-tags::before{content:"\f5b2"}.bi-telegram::before{content:"\f5b3"}.bi-telephone-fill::before{content:"\f5b4"}.bi-telephone-forward-fill::before{content:"\f5b5"}.bi-telephone-forward::before{content:"\f5b6"}.bi-telephone-inbound-fill::before{content:"\f5b7"}.bi-telephone-inbound::before{content:"\f5b8"}.bi-telephone-minus-fill::before{content:"\f5b9"}.bi-telephone-minus::before{content:"\f5ba"}.bi-telephone-outbound-fill::before{content:"\f5bb"}.bi-telephone-outbound::before{content:"\f5bc"}.bi-telephone-plus-fill::before{content:"\f5bd"}.bi-telephone-plus::before{content:"\f5be"}.bi-telephone-x-fill::before{content:"\f5bf"}.bi-telephone-x::before{content:"\f5c0"}.bi-telephone::before{content:"\f5c1"}.bi-terminal-fill::before{content:"\f5c2"}.bi-terminal::before{content:"\f5c3"}.bi-text-center::before{content:"\f5c4"}.bi-text-indent-left::before{content:"\f5c5"}.bi-text-indent-right::before{content:"\f5c6"}.bi-text-left::before{content:"\f5c7"}.bi-text-paragraph::before{content:"\f5c8"}.bi-text-right::before{content:"\f5c9"}.bi-textarea-resize::before{content:"\f5ca"}.bi-textarea-t::before{content:"\f5cb"}.bi-textarea::before{content:"\f5cc"}.bi-thermometer-half::before{content:"\f5cd"}.bi-thermometer-high::before{content:"\f5ce"}.bi-thermometer-low::before{content:"\f5cf"}.bi-thermometer-snow::before{content:"\f5d0"}.bi-thermometer-sun::before{content:"\f5d1"}.bi-thermometer::before{content:"\f5d2"}.bi-three-dots-vertical::before{content:"\f5d3"}.bi-three-dots::before{content:"\f5d4"}.bi-toggle-off::before{content:"\f5d5"}.bi-toggle-on::before{content:"\f5d6"}.bi-toggle2-off::before{content:"\f5d7"}.bi-toggle2-on::before{content:"\f5d8"}.bi-toggles::before{content:"\f5d9"}.bi-toggles2::before{content:"\f5da"}.bi-tools::before{content:"\f5db"}.bi-tornado::before{content:"\f5dc"}.bi-trash-fill::before{content:"\f5dd"}.bi-trash::before{content:"\f5de"}.bi-trash2-fill::before{content:"\f5df"}.bi-trash2::before{content:"\f5e0"}.bi-tree-fill::before{content:"\f5e1"}.bi-tree::before{content:"\f5e2"}.bi-triangle-fill::before{content:"\f5e3"}.bi-triangle-half::before{content:"\f5e4"}.bi-triangle::before{content:"\f5e5"}.bi-trophy-fill::before{content:"\f5e6"}.bi-trophy::before{content:"\f5e7"}.bi-tropical-storm::before{content:"\f5e8"}.bi-truck-flatbed::before{content:"\f5e9"}.bi-truck::before{content:"\f5ea"}.bi-tsunami::before{content:"\f5eb"}.bi-tv-fill::before{content:"\f5ec"}.bi-tv::before{content:"\f5ed"}.bi-twitch::before{content:"\f5ee"}.bi-twitter::before{content:"\f5ef"}.bi-type-bold::before{content:"\f5f0"}.bi-type-h1::before{content:"\f5f1"}.bi-type-h2::before{content:"\f5f2"}.bi-type-h3::before{content:"\f5f3"}.bi-type-italic::before{content:"\f5f4"}.bi-type-strikethrough::before{content:"\f5f5"}.bi-type-underline::before{content:"\f5f6"}.bi-type::before{content:"\f5f7"}.bi-ui-checks-grid::before{content:"\f5f8"}.bi-ui-checks::before{content:"\f5f9"}.bi-ui-radios-grid::before{content:"\f5fa"}.bi-ui-radios::before{content:"\f5fb"}.bi-umbrella-fill::before{content:"\f5fc"}.bi-umbrella::before{content:"\f5fd"}.bi-union::before{content:"\f5fe"}.bi-unlock-fill::before{content:"\f5ff"}.bi-unlock::before{content:"\f600"}.bi-upc-scan::before{content:"\f601"}.bi-upc::before{content:"\f602"}.bi-upload::before{content:"\f603"}.bi-vector-pen::before{content:"\f604"}.bi-view-list::before{content:"\f605"}.bi-view-stacked::before{content:"\f606"}.bi-vinyl-fill::before{content:"\f607"}.bi-vinyl::before{content:"\f608"}.bi-voicemail::before{content:"\f609"}.bi-volume-down-fill::before{content:"\f60a"}.bi-volume-down::before{content:"\f60b"}.bi-volume-mute-fill::before{content:"\f60c"}.bi-volume-mute::before{content:"\f60d"}.bi-volume-off-fill::before{content:"\f60e"}.bi-volume-off::before{content:"\f60f"}.bi-volume-up-fill::before{content:"\f610"}.bi-volume-up::before{content:"\f611"}.bi-vr::before{content:"\f612"}.bi-wallet-fill::before{content:"\f613"}.bi-wallet::before{content:"\f614"}.bi-wallet2::before{content:"\f615"}.bi-watch::before{content:"\f616"}.bi-water::before{content:"\f617"}.bi-whatsapp::before{content:"\f618"}.bi-wifi-1::before{content:"\f619"}.bi-wifi-2::before{content:"\f61a"}.bi-wifi-off::before{content:"\f61b"}.bi-wifi::before{content:"\f61c"}.bi-wind::before{content:"\f61d"}.bi-window-dock::before{content:"\f61e"}.bi-window-sidebar::before{content:"\f61f"}.bi-window::before{content:"\f620"}.bi-wrench::before{content:"\f621"}.bi-x-circle-fill::before{content:"\f622"}.bi-x-circle::before{content:"\f623"}.bi-x-diamond-fill::before{content:"\f624"}.bi-x-diamond::before{content:"\f625"}.bi-x-octagon-fill::before{content:"\f626"}.bi-x-octagon::before{content:"\f627"}.bi-x-square-fill::before{content:"\f628"}.bi-x-square::before{content:"\f629"}.bi-x::before{content:"\f62a"}.bi-youtube::before{content:"\f62b"}.bi-zoom-in::before{content:"\f62c"}.bi-zoom-out::before{content:"\f62d"}.bi-bank::before{content:"\f62e"}.bi-bank2::before{content:"\f62f"}.bi-bell-slash-fill::before{content:"\f630"}.bi-bell-slash::before{content:"\f631"}.bi-cash-coin::before{content:"\f632"}.bi-check-lg::before{content:"\f633"}.bi-coin::before{content:"\f634"}.bi-currency-bitcoin::before{content:"\f635"}.bi-currency-dollar::before{content:"\f636"}.bi-currency-euro::before{content:"\f637"}.bi-currency-exchange::before{content:"\f638"}.bi-currency-pound::before{content:"\f639"}.bi-currency-yen::before{content:"\f63a"}.bi-dash-lg::before{content:"\f63b"}.bi-exclamation-lg::before{content:"\f63c"}.bi-file-earmark-pdf-fill::before{content:"\f63d"}.bi-file-earmark-pdf::before{content:"\f63e"}.bi-file-pdf-fill::before{content:"\f63f"}.bi-file-pdf::before{content:"\f640"}.bi-gender-ambiguous::before{content:"\f641"}.bi-gender-female::before{content:"\f642"}.bi-gender-male::before{content:"\f643"}.bi-gender-trans::before{content:"\f644"}.bi-headset-vr::before{content:"\f645"}.bi-info-lg::before{content:"\f646"}.bi-mastodon::before{content:"\f647"}.bi-messenger::before{content:"\f648"}.bi-piggy-bank-fill::before{content:"\f649"}.bi-piggy-bank::before{content:"\f64a"}.bi-pin-map-fill::before{content:"\f64b"}.bi-pin-map::before{content:"\f64c"}.bi-plus-lg::before{content:"\f64d"}.bi-question-lg::before{content:"\f64e"}.bi-recycle::before{content:"\f64f"}.bi-reddit::before{content:"\f650"}.bi-safe-fill::before{content:"\f651"}.bi-safe2-fill::before{content:"\f652"}.bi-safe2::before{content:"\f653"}.bi-sd-card-fill::before{content:"\f654"}.bi-sd-card::before{content:"\f655"}.bi-skype::before{content:"\f656"}.bi-slash-lg::before{content:"\f657"}.bi-translate::before{content:"\f658"}.bi-x-lg::before{content:"\f659"}.bi-safe::before{content:"\f65a"}.bi-apple::before{content:"\f65b"}.bi-microsoft::before{content:"\f65d"}.bi-windows::before{content:"\f65e"}.bi-behance::before{content:"\f65c"}.bi-dribbble::before{content:"\f65f"}.bi-line::before{content:"\f660"}.bi-medium::before{content:"\f661"}.bi-paypal::before{content:"\f662"}.bi-pinterest::before{content:"\f663"}.bi-signal::before{content:"\f664"}.bi-snapchat::before{content:"\f665"}.bi-spotify::before{content:"\f666"}.bi-stack-overflow::before{content:"\f667"}.bi-strava::before{content:"\f668"}.bi-wordpress::before{content:"\f669"}.bi-vimeo::before{content:"\f66a"}.bi-activity::before{content:"\f66b"}.bi-easel2-fill::before{content:"\f66c"}.bi-easel2::before{content:"\f66d"}.bi-easel3-fill::before{content:"\f66e"}.bi-easel3::before{content:"\f66f"}.bi-fan::before{content:"\f670"}.bi-fingerprint::before{content:"\f671"}.bi-graph-down-arrow::before{content:"\f672"}.bi-graph-up-arrow::before{content:"\f673"}.bi-hypnotize::before{content:"\f674"}.bi-magic::before{content:"\f675"}.bi-person-rolodex::before{content:"\f676"}.bi-person-video::before{content:"\f677"}.bi-person-video2::before{content:"\f678"}.bi-person-video3::before{content:"\f679"}.bi-person-workspace::before{content:"\f67a"}.bi-radioactive::before{content:"\f67b"}.bi-webcam-fill::before{content:"\f67c"}.bi-webcam::before{content:"\f67d"}.bi-yin-yang::before{content:"\f67e"}.bi-bandaid-fill::before{content:"\f680"}.bi-bandaid::before{content:"\f681"}.bi-bluetooth::before{content:"\f682"}.bi-body-text::before{content:"\f683"}.bi-boombox::before{content:"\f684"}.bi-boxes::before{content:"\f685"}.bi-dpad-fill::before{content:"\f686"}.bi-dpad::before{content:"\f687"}.bi-ear-fill::before{content:"\f688"}.bi-ear::before{content:"\f689"}.bi-envelope-check-1::before{content:"\f68a"}.bi-envelope-check-fill::before{content:"\f68b"}.bi-envelope-check::before{content:"\f68c"}.bi-envelope-dash-1::before{content:"\f68d"}.bi-envelope-dash-fill::before{content:"\f68e"}.bi-envelope-dash::before{content:"\f68f"}.bi-envelope-exclamation-1::before{content:"\f690"}.bi-envelope-exclamation-fill::before{content:"\f691"}.bi-envelope-exclamation::before{content:"\f692"}.bi-envelope-plus-fill::before{content:"\f693"}.bi-envelope-plus::before{content:"\f694"}.bi-envelope-slash-1::before{content:"\f695"}.bi-envelope-slash-fill::before{content:"\f696"}.bi-envelope-slash::before{content:"\f697"}.bi-envelope-x-1::before{content:"\f698"}.bi-envelope-x-fill::before{content:"\f699"}.bi-envelope-x::before{content:"\f69a"}.bi-explicit-fill::before{content:"\f69b"}.bi-explicit::before{content:"\f69c"}.bi-git::before{content:"\f69d"}.bi-infinity::before{content:"\f69e"}.bi-list-columns-reverse::before{content:"\f69f"}.bi-list-columns::before{content:"\f6a0"}.bi-meta::before{content:"\f6a1"}.bi-mortorboard-fill::before{content:"\f6a2"}.bi-mortorboard::before{content:"\f6a3"}.bi-nintendo-switch::before{content:"\f6a4"}.bi-pc-display-horizontal::before{content:"\f6a5"}.bi-pc-display::before{content:"\f6a6"}.bi-pc-horizontal::before{content:"\f6a7"}.bi-pc::before{content:"\f6a8"}.bi-playstation::before{content:"\f6a9"}.bi-plus-slash-minus::before{content:"\f6aa"}.bi-projector-fill::before{content:"\f6ab"}.bi-projector::before{content:"\f6ac"}.bi-qr-code-scan::before{content:"\f6ad"}.bi-qr-code::before{content:"\f6ae"}.bi-quora::before{content:"\f6af"}.bi-quote::before{content:"\f6b0"}.bi-robot::before{content:"\f6b1"}.bi-send-check-fill::before{content:"\f6b2"}.bi-send-check::before{content:"\f6b3"}.bi-send-dash-fill::before{content:"\f6b4"}.bi-send-dash::before{content:"\f6b5"}.bi-send-exclamation-1::before{content:"\f6b6"}.bi-send-exclamation-fill::before{content:"\f6b7"}.bi-send-exclamation::before{content:"\f6b8"}.bi-send-fill::before{content:"\f6b9"}.bi-send-plus-fill::before{content:"\f6ba"}.bi-send-plus::before{content:"\f6bb"}.bi-send-slash-fill::before{content:"\f6bc"}.bi-send-slash::before{content:"\f6bd"}.bi-send-x-fill::before{content:"\f6be"}.bi-send-x::before{content:"\f6bf"}.bi-send::before{content:"\f6c0"}.bi-steam::before{content:"\f6c1"}.bi-terminal-dash-1::before{content:"\f6c2"}.bi-terminal-dash::before{content:"\f6c3"}.bi-terminal-plus::before{content:"\f6c4"}.bi-terminal-split::before{content:"\f6c5"}.bi-ticket-detailed-fill::before{content:"\f6c6"}.bi-ticket-detailed::before{content:"\f6c7"}.bi-ticket-fill::before{content:"\f6c8"}.bi-ticket-perforated-fill::before{content:"\f6c9"}.bi-ticket-perforated::before{content:"\f6ca"}.bi-ticket::before{content:"\f6cb"}.bi-tiktok::before{content:"\f6cc"}.bi-window-dash::before{content:"\f6cd"}.bi-window-desktop::before{content:"\f6ce"}.bi-window-fullscreen::before{content:"\f6cf"}.bi-window-plus::before{content:"\f6d0"}.bi-window-split::before{content:"\f6d1"}.bi-window-stack::before{content:"\f6d2"}.bi-window-x::before{content:"\f6d3"}.bi-xbox::before{content:"\f6d4"}.bi-ethernet::before{content:"\f6d5"}.bi-hdmi-fill::before{content:"\f6d6"}.bi-hdmi::before{content:"\f6d7"}.bi-usb-c-fill::before{content:"\f6d8"}.bi-usb-c::before{content:"\f6d9"}.bi-usb-fill::before{content:"\f6da"}.bi-usb-plug-fill::before{content:"\f6db"}.bi-usb-plug::before{content:"\f6dc"}.bi-usb-symbol::before{content:"\f6dd"}.bi-usb::before{content:"\f6de"}.bi-boombox-fill::before{content:"\f6df"}.bi-displayport-1::before{content:"\f6e0"}.bi-displayport::before{content:"\f6e1"}.bi-gpu-card::before{content:"\f6e2"}.bi-memory::before{content:"\f6e3"}.bi-modem-fill::before{content:"\f6e4"}.bi-modem::before{content:"\f6e5"}.bi-motherboard-fill::before{content:"\f6e6"}.bi-motherboard::before{content:"\f6e7"}.bi-optical-audio-fill::before{content:"\f6e8"}.bi-optical-audio::before{content:"\f6e9"}.bi-pci-card::before{content:"\f6ea"}.bi-router-fill::before{content:"\f6eb"}.bi-router::before{content:"\f6ec"}.bi-ssd-fill::before{content:"\f6ed"}.bi-ssd::before{content:"\f6ee"}.bi-thunderbolt-fill::before{content:"\f6ef"}.bi-thunderbolt::before{content:"\f6f0"}.bi-usb-drive-fill::before{content:"\f6f1"}.bi-usb-drive::before{content:"\f6f2"}.bi-usb-micro-fill::before{content:"\f6f3"}.bi-usb-micro::before{content:"\f6f4"}.bi-usb-mini-fill::before{content:"\f6f5"}.bi-usb-mini::before{content:"\f6f6"}.bi-cloud-haze2::before{content:"\f6f7"}.bi-device-hdd-fill::before{content:"\f6f8"}.bi-device-hdd::before{content:"\f6f9"}.bi-device-ssd-fill::before{content:"\f6fa"}.bi-device-ssd::before{content:"\f6fb"}.bi-displayport-fill::before{content:"\f6fc"}.bi-mortarboard-fill::before{content:"\f6fd"}.bi-mortarboard::before{content:"\f6fe"}.bi-terminal-x::before{content:"\f6ff"}.bi-arrow-through-heart-fill::before{content:"\f700"}.bi-arrow-through-heart::before{content:"\f701"}.bi-badge-sd-fill::before{content:"\f702"}.bi-badge-sd::before{content:"\f703"}.bi-bag-heart-fill::before{content:"\f704"}.bi-bag-heart::before{content:"\f705"}.bi-balloon-fill::before{content:"\f706"}.bi-balloon-heart-fill::before{content:"\f707"}.bi-balloon-heart::before{content:"\f708"}.bi-balloon::before{content:"\f709"}.bi-box2-fill::before{content:"\f70a"}.bi-box2-heart-fill::before{content:"\f70b"}.bi-box2-heart::before{content:"\f70c"}.bi-box2::before{content:"\f70d"}.bi-braces-asterisk::before{content:"\f70e"}.bi-calendar-heart-fill::before{content:"\f70f"}.bi-calendar-heart::before{content:"\f710"}.bi-calendar2-heart-fill::before{content:"\f711"}.bi-calendar2-heart::before{content:"\f712"}.bi-chat-heart-fill::before{content:"\f713"}.bi-chat-heart::before{content:"\f714"}.bi-chat-left-heart-fill::before{content:"\f715"}.bi-chat-left-heart::before{content:"\f716"}.bi-chat-right-heart-fill::before{content:"\f717"}.bi-chat-right-heart::before{content:"\f718"}.bi-chat-square-heart-fill::before{content:"\f719"}.bi-chat-square-heart::before{content:"\f71a"}.bi-clipboard-check-fill::before{content:"\f71b"}.bi-clipboard-data-fill::before{content:"\f71c"}.bi-clipboard-fill::before{content:"\f71d"}.bi-clipboard-heart-fill::before{content:"\f71e"}.bi-clipboard-heart::before{content:"\f71f"}.bi-clipboard-minus-fill::before{content:"\f720"}.bi-clipboard-plus-fill::before{content:"\f721"}.bi-clipboard-pulse::before{content:"\f722"}.bi-clipboard-x-fill::before{content:"\f723"}.bi-clipboard2-check-fill::before{content:"\f724"}.bi-clipboard2-check::before{content:"\f725"}.bi-clipboard2-data-fill::before{content:"\f726"}.bi-clipboard2-data::before{content:"\f727"}.bi-clipboard2-fill::before{content:"\f728"}.bi-clipboard2-heart-fill::before{content:"\f729"}.bi-clipboard2-heart::before{content:"\f72a"}.bi-clipboard2-minus-fill::before{content:"\f72b"}.bi-clipboard2-minus::before{content:"\f72c"}.bi-clipboard2-plus-fill::before{content:"\f72d"}.bi-clipboard2-plus::before{content:"\f72e"}.bi-clipboard2-pulse-fill::before{content:"\f72f"}.bi-clipboard2-pulse::before{content:"\f730"}.bi-clipboard2-x-fill::before{content:"\f731"}.bi-clipboard2-x::before{content:"\f732"}.bi-clipboard2::before{content:"\f733"}.bi-emoji-kiss-fill::before{content:"\f734"}.bi-emoji-kiss::before{content:"\f735"}.bi-envelope-heart-fill::before{content:"\f736"}.bi-envelope-heart::before{content:"\f737"}.bi-envelope-open-heart-fill::before{content:"\f738"}.bi-envelope-open-heart::before{content:"\f739"}.bi-envelope-paper-fill::before{content:"\f73a"}.bi-envelope-paper-heart-fill::before{content:"\f73b"}.bi-envelope-paper-heart::before{content:"\f73c"}.bi-envelope-paper::before{content:"\f73d"}.bi-filetype-aac::before{content:"\f73e"}.bi-filetype-ai::before{content:"\f73f"}.bi-filetype-bmp::before{content:"\f740"}.bi-filetype-cs::before{content:"\f741"}.bi-filetype-css::before{content:"\f742"}.bi-filetype-csv::before{content:"\f743"}.bi-filetype-doc::before{content:"\f744"}.bi-filetype-docx::before{content:"\f745"}.bi-filetype-exe::before{content:"\f746"}.bi-filetype-gif::before{content:"\f747"}.bi-filetype-heic::before{content:"\f748"}.bi-filetype-html::before{content:"\f749"}.bi-filetype-java::before{content:"\f74a"}.bi-filetype-jpg::before{content:"\f74b"}.bi-filetype-js::before{content:"\f74c"}.bi-filetype-jsx::before{content:"\f74d"}.bi-filetype-key::before{content:"\f74e"}.bi-filetype-m4p::before{content:"\f74f"}.bi-filetype-md::before{content:"\f750"}.bi-filetype-mdx::before{content:"\f751"}.bi-filetype-mov::before{content:"\f752"}.bi-filetype-mp3::before{content:"\f753"}.bi-filetype-mp4::before{content:"\f754"}.bi-filetype-otf::before{content:"\f755"}.bi-filetype-pdf::before{content:"\f756"}.bi-filetype-php::before{content:"\f757"}.bi-filetype-png::before{content:"\f758"}.bi-filetype-ppt-1::before{content:"\f759"}.bi-filetype-ppt::before{content:"\f75a"}.bi-filetype-psd::before{content:"\f75b"}.bi-filetype-py::before{content:"\f75c"}.bi-filetype-raw::before{content:"\f75d"}.bi-filetype-rb::before{content:"\f75e"}.bi-filetype-sass::before{content:"\f75f"}.bi-filetype-scss::before{content:"\f760"}.bi-filetype-sh::before{content:"\f761"}.bi-filetype-svg::before{content:"\f762"}.bi-filetype-tiff::before{content:"\f763"}.bi-filetype-tsx::before{content:"\f764"}.bi-filetype-ttf::before{content:"\f765"}.bi-filetype-txt::before{content:"\f766"}.bi-filetype-wav::before{content:"\f767"}.bi-filetype-woff::before{content:"\f768"}.bi-filetype-xls-1::before{content:"\f769"}.bi-filetype-xls::before{content:"\f76a"}.bi-filetype-xml::before{content:"\f76b"}.bi-filetype-yml::before{content:"\f76c"}.bi-heart-arrow::before{content:"\f76d"}.bi-heart-pulse-fill::before{content:"\f76e"}.bi-heart-pulse::before{content:"\f76f"}.bi-heartbreak-fill::before{content:"\f770"}.bi-heartbreak::before{content:"\f771"}.bi-hearts::before{content:"\f772"}.bi-hospital-fill::before{content:"\f773"}.bi-hospital::before{content:"\f774"}.bi-house-heart-fill::before{content:"\f775"}.bi-house-heart::before{content:"\f776"}.bi-incognito::before{content:"\f777"}.bi-magnet-fill::before{content:"\f778"}.bi-magnet::before{content:"\f779"}.bi-person-heart::before{content:"\f77a"}.bi-person-hearts::before{content:"\f77b"}.bi-phone-flip::before{content:"\f77c"}.bi-plugin::before{content:"\f77d"}.bi-postage-fill::before{content:"\f77e"}.bi-postage-heart-fill::before{content:"\f77f"}.bi-postage-heart::before{content:"\f780"}.bi-postage::before{content:"\f781"}.bi-postcard-fill::before{content:"\f782"}.bi-postcard-heart-fill::before{content:"\f783"}.bi-postcard-heart::before{content:"\f784"}.bi-postcard::before{content:"\f785"}.bi-search-heart-fill::before{content:"\f786"}.bi-search-heart::before{content:"\f787"}.bi-sliders2-vertical::before{content:"\f788"}.bi-sliders2::before{content:"\f789"}.bi-trash3-fill::before{content:"\f78a"}.bi-trash3::before{content:"\f78b"}.bi-valentine::before{content:"\f78c"}.bi-valentine2::before{content:"\f78d"}.bi-wrench-adjustable-circle-fill::before{content:"\f78e"}.bi-wrench-adjustable-circle::before{content:"\f78f"}.bi-wrench-adjustable::before{content:"\f790"}.bi-filetype-json::before{content:"\f791"}.bi-filetype-pptx::before{content:"\f792"}.bi-filetype-xlsx::before{content:"\f793"}.bi-1-circle-1::before{content:"\f794"}.bi-1-circle-fill-1::before{content:"\f795"}.bi-1-circle-fill::before{content:"\f796"}.bi-1-circle::before{content:"\f797"}.bi-1-square-fill::before{content:"\f798"}.bi-1-square::before{content:"\f799"}.bi-2-circle-1::before{content:"\f79a"}.bi-2-circle-fill-1::before{content:"\f79b"}.bi-2-circle-fill::before{content:"\f79c"}.bi-2-circle::before{content:"\f79d"}.bi-2-square-fill::before{content:"\f79e"}.bi-2-square::before{content:"\f79f"}.bi-3-circle-1::before{content:"\f7a0"}.bi-3-circle-fill-1::before{content:"\f7a1"}.bi-3-circle-fill::before{content:"\f7a2"}.bi-3-circle::before{content:"\f7a3"}.bi-3-square-fill::before{content:"\f7a4"}.bi-3-square::before{content:"\f7a5"}.bi-4-circle-1::before{content:"\f7a6"}.bi-4-circle-fill-1::before{content:"\f7a7"}.bi-4-circle-fill::before{content:"\f7a8"}.bi-4-circle::before{content:"\f7a9"}.bi-4-square-fill::before{content:"\f7aa"}.bi-4-square::before{content:"\f7ab"}.bi-5-circle-1::before{content:"\f7ac"}.bi-5-circle-fill-1::before{content:"\f7ad"}.bi-5-circle-fill::before{content:"\f7ae"}.bi-5-circle::before{content:"\f7af"}.bi-5-square-fill::before{content:"\f7b0"}.bi-5-square::before{content:"\f7b1"}.bi-6-circle-1::before{content:"\f7b2"}.bi-6-circle-fill-1::before{content:"\f7b3"}.bi-6-circle-fill::before{content:"\f7b4"}.bi-6-circle::before{content:"\f7b5"}.bi-6-square-fill::before{content:"\f7b6"}.bi-6-square::before{content:"\f7b7"}.bi-7-circle-1::before{content:"\f7b8"}.bi-7-circle-fill-1::before{content:"\f7b9"}.bi-7-circle-fill::before{content:"\f7ba"}.bi-7-circle::before{content:"\f7bb"}.bi-7-square-fill::before{content:"\f7bc"}.bi-7-square::before{content:"\f7bd"}.bi-8-circle-1::before{content:"\f7be"}.bi-8-circle-fill-1::before{content:"\f7bf"}.bi-8-circle-fill::before{content:"\f7c0"}.bi-8-circle::before{content:"\f7c1"}.bi-8-square-fill::before{content:"\f7c2"}.bi-8-square::before{content:"\f7c3"}.bi-9-circle-1::before{content:"\f7c4"}.bi-9-circle-fill-1::before{content:"\f7c5"}.bi-9-circle-fill::before{content:"\f7c6"}.bi-9-circle::before{content:"\f7c7"}.bi-9-square-fill::before{content:"\f7c8"}.bi-9-square::before{content:"\f7c9"}.bi-airplane-engines-fill::before{content:"\f7ca"}.bi-airplane-engines::before{content:"\f7cb"}.bi-airplane-fill::before{content:"\f7cc"}.bi-airplane::before{content:"\f7cd"}.bi-alexa::before{content:"\f7ce"}.bi-alipay::before{content:"\f7cf"}.bi-android::before{content:"\f7d0"}.bi-android2::before{content:"\f7d1"}.bi-box-fill::before{content:"\f7d2"}.bi-box-seam-fill::before{content:"\f7d3"}.bi-browser-chrome::before{content:"\f7d4"}.bi-browser-edge::before{content:"\f7d5"}.bi-browser-firefox::before{content:"\f7d6"}.bi-browser-safari::before{content:"\f7d7"}.bi-c-circle-1::before{content:"\f7d8"}.bi-c-circle-fill-1::before{content:"\f7d9"}.bi-c-circle-fill::before{content:"\f7da"}.bi-c-circle::before{content:"\f7db"}.bi-c-square-fill::before{content:"\f7dc"}.bi-c-square::before{content:"\f7dd"}.bi-capsule-pill::before{content:"\f7de"}.bi-capsule::before{content:"\f7df"}.bi-car-front-fill::before{content:"\f7e0"}.bi-car-front::before{content:"\f7e1"}.bi-cassette-fill::before{content:"\f7e2"}.bi-cassette::before{content:"\f7e3"}.bi-cc-circle-1::before{content:"\f7e4"}.bi-cc-circle-fill-1::before{content:"\f7e5"}.bi-cc-circle-fill::before{content:"\f7e6"}.bi-cc-circle::before{content:"\f7e7"}.bi-cc-square-fill::before{content:"\f7e8"}.bi-cc-square::before{content:"\f7e9"}.bi-cup-hot-fill::before{content:"\f7ea"}.bi-cup-hot::before{content:"\f7eb"}.bi-currency-rupee::before{content:"\f7ec"}.bi-dropbox::before{content:"\f7ed"}.bi-escape::before{content:"\f7ee"}.bi-fast-forward-btn-fill::before{content:"\f7ef"}.bi-fast-forward-btn::before{content:"\f7f0"}.bi-fast-forward-circle-fill::before{content:"\f7f1"}.bi-fast-forward-circle::before{content:"\f7f2"}.bi-fast-forward-fill::before{content:"\f7f3"}.bi-fast-forward::before{content:"\f7f4"}.bi-filetype-sql::before{content:"\f7f5"}.bi-fire::before{content:"\f7f6"}.bi-google-play::before{content:"\f7f7"}.bi-h-circle-1::before{content:"\f7f8"}.bi-h-circle-fill-1::before{content:"\f7f9"}.bi-h-circle-fill::before{content:"\f7fa"}.bi-h-circle::before{content:"\f7fb"}.bi-h-square-fill::before{content:"\f7fc"}.bi-h-square::before{content:"\f7fd"}.bi-indent::before{content:"\f7fe"}.bi-lungs-fill::before{content:"\f7ff"}.bi-lungs::before{content:"\f800"}.bi-microsoft-teams::before{content:"\f801"}.bi-p-circle-1::before{content:"\f802"}.bi-p-circle-fill-1::before{content:"\f803"}.bi-p-circle-fill::before{content:"\f804"}.bi-p-circle::before{content:"\f805"}.bi-p-square-fill::before{content:"\f806"}.bi-p-square::before{content:"\f807"}.bi-pass-fill::before{content:"\f808"}.bi-pass::before{content:"\f809"}.bi-prescription::before{content:"\f80a"}.bi-prescription2::before{content:"\f80b"}.bi-r-circle-1::before{content:"\f80c"}.bi-r-circle-fill-1::before{content:"\f80d"}.bi-r-circle-fill::before{content:"\f80e"}.bi-r-circle::before{content:"\f80f"}.bi-r-square-fill::before{content:"\f810"}.bi-r-square::before{content:"\f811"}.bi-repeat-1::before{content:"\f812"}.bi-repeat::before{content:"\f813"}.bi-rewind-btn-fill::before{content:"\f814"}.bi-rewind-btn::before{content:"\f815"}.bi-rewind-circle-fill::before{content:"\f816"}.bi-rewind-circle::before{content:"\f817"}.bi-rewind-fill::before{content:"\f818"}.bi-rewind::before{content:"\f819"}.bi-train-freight-front-fill::before{content:"\f81a"}.bi-train-freight-front::before{content:"\f81b"}.bi-train-front-fill::before{content:"\f81c"}.bi-train-front::before{content:"\f81d"}.bi-train-lightrail-front-fill::before{content:"\f81e"}.bi-train-lightrail-front::before{content:"\f81f"}.bi-truck-front-fill::before{content:"\f820"}.bi-truck-front::before{content:"\f821"}.bi-ubuntu::before{content:"\f822"}.bi-unindent::before{content:"\f823"}.bi-unity::before{content:"\f824"}.bi-universal-access-circle::before{content:"\f825"}.bi-universal-access::before{content:"\f826"}.bi-virus::before{content:"\f827"}.bi-virus2::before{content:"\f828"}.bi-wechat::before{content:"\f829"}.bi-yelp::before{content:"\f82a"}.bi-sign-stop-fill::before{content:"\f82b"}.bi-sign-stop-lights-fill::before{content:"\f82c"}.bi-sign-stop-lights::before{content:"\f82d"}.bi-sign-stop::before{content:"\f82e"}.bi-sign-turn-left-fill::before{content:"\f82f"}.bi-sign-turn-left::before{content:"\f830"}.bi-sign-turn-right-fill::before{content:"\f831"}.bi-sign-turn-right::before{content:"\f832"}.bi-sign-turn-slight-left-fill::before{content:"\f833"}.bi-sign-turn-slight-left::before{content:"\f834"}.bi-sign-turn-slight-right-fill::before{content:"\f835"}.bi-sign-turn-slight-right::before{content:"\f836"}.bi-sign-yield-fill::before{content:"\f837"}.bi-sign-yield::before{content:"\f838"}.bi-ev-station-fill::before{content:"\f839"}.bi-ev-station::before{content:"\f83a"}.bi-fuel-pump-diesel-fill::before{content:"\f83b"}.bi-fuel-pump-diesel::before{content:"\f83c"}.bi-fuel-pump-fill::before{content:"\f83d"}.bi-fuel-pump::before{content:"\f83e"}
+/*# sourceMappingURL=bsicon.min.css.map */
diff --git a/dasena-web/public/assets/admin/vendors/css/bsicon.min.css.map b/dasena-web/public/assets/admin/vendors/css/bsicon.min.css.map
new file mode 100644
index 0000000..6416dd1
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/css/bsicon.min.css.map
@@ -0,0 +1 @@
+{"version":3,"sources":["bsicon.min.css"],"names":[],"mappings":"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","file":"bsicon.min.css","sourcesContent":[]}
\ No newline at end of file
diff --git a/dasena-web/public/assets/admin/vendors/css/dataTables.bs5.min.css b/dasena-web/public/assets/admin/vendors/css/dataTables.bs5.min.css
new file mode 100644
index 0000000..3b5ef21
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/css/dataTables.bs5.min.css
@@ -0,0 +1,6 @@
+table.dataTable td.dt-control{text-align:center;cursor:pointer}table.dataTable td.dt-control:before{height:1em;width:1em;margin-top:-9px;display:inline-block;color:#fff;border:.15em solid #fff;border-radius:1em;box-shadow:0 0 .2em #444;box-sizing:content-box;text-align:center;text-indent:0!important;font-family:"Courier New",Courier,monospace;line-height:1em;content:"+";background-color:#31b131}table.dataTable tr.dt-hasChild td.dt-control:before{content:"-";background-color:#d33333}table.dataTable thead>tr>td.sorting,table.dataTable thead>tr>td.sorting_asc,table.dataTable thead>tr>td.sorting_asc_disabled,table.dataTable thead>tr>td.sorting_desc,table.dataTable thead>tr>td.sorting_desc_disabled,table.dataTable thead>tr>th.sorting,table.dataTable thead>tr>th.sorting_asc,table.dataTable thead>tr>th.sorting_asc_disabled,table.dataTable thead>tr>th.sorting_desc,table.dataTable thead>tr>th.sorting_desc_disabled{cursor:pointer;position:relative;padding-right:26px}table.dataTable thead>tr>td.sorting:after,table.dataTable thead>tr>td.sorting:before,table.dataTable thead>tr>td.sorting_asc:after,table.dataTable thead>tr>td.sorting_asc:before,table.dataTable thead>tr>td.sorting_asc_disabled:after,table.dataTable thead>tr>td.sorting_asc_disabled:before,table.dataTable thead>tr>td.sorting_desc:after,table.dataTable thead>tr>td.sorting_desc:before,table.dataTable thead>tr>td.sorting_desc_disabled:after,table.dataTable thead>tr>td.sorting_desc_disabled:before,table.dataTable thead>tr>th.sorting:after,table.dataTable thead>tr>th.sorting:before,table.dataTable thead>tr>th.sorting_asc:after,table.dataTable thead>tr>th.sorting_asc:before,table.dataTable thead>tr>th.sorting_asc_disabled:after,table.dataTable thead>tr>th.sorting_asc_disabled:before,table.dataTable thead>tr>th.sorting_desc:after,table.dataTable thead>tr>th.sorting_desc:before,table.dataTable thead>tr>th.sorting_desc_disabled:after,table.dataTable thead>tr>th.sorting_desc_disabled:before{position:absolute;display:block;opacity:.125;right:10px;line-height:9px;font-size:.8em}table.dataTable thead>tr>td.sorting:before,table.dataTable thead>tr>td.sorting_asc:before,table.dataTable thead>tr>td.sorting_asc_disabled:before,table.dataTable thead>tr>td.sorting_desc:before,table.dataTable thead>tr>td.sorting_desc_disabled:before,table.dataTable thead>tr>th.sorting:before,table.dataTable thead>tr>th.sorting_asc:before,table.dataTable thead>tr>th.sorting_asc_disabled:before,table.dataTable thead>tr>th.sorting_desc:before,table.dataTable thead>tr>th.sorting_desc_disabled:before{bottom:50%;content:"▲"}table.dataTable thead>tr>td.sorting:after,table.dataTable thead>tr>td.sorting_asc:after,table.dataTable thead>tr>td.sorting_asc_disabled:after,table.dataTable thead>tr>td.sorting_desc:after,table.dataTable thead>tr>td.sorting_desc_disabled:after,table.dataTable thead>tr>th.sorting:after,table.dataTable thead>tr>th.sorting_asc:after,table.dataTable thead>tr>th.sorting_asc_disabled:after,table.dataTable thead>tr>th.sorting_desc:after,table.dataTable thead>tr>th.sorting_desc_disabled:after{top:50%;content:"▼"}table.dataTable thead>tr>td.sorting_asc:before,table.dataTable thead>tr>td.sorting_desc:after,table.dataTable thead>tr>th.sorting_asc:before,table.dataTable thead>tr>th.sorting_desc:after{opacity:.6}table.dataTable thead>tr>td.sorting_asc_disabled:before,table.dataTable thead>tr>td.sorting_desc_disabled:after,table.dataTable thead>tr>th.sorting_asc_disabled:before,table.dataTable thead>tr>th.sorting_desc_disabled:after{display:none}table.dataTable thead>tr>td:active,table.dataTable thead>tr>th:active{outline:0}div.dataTables_scrollBody table.dataTable thead>tr>td:after,div.dataTables_scrollBody table.dataTable thead>tr>td:before,div.dataTables_scrollBody table.dataTable thead>tr>th:after,div.dataTables_scrollBody table.dataTable thead>tr>th:before{display:none}div.dataTables_processing{position:absolute;top:50%;left:50%;width:200px;margin-left:-100px;margin-top:-26px;text-align:center;padding:2px}div.dataTables_processing>div:last-child{position:relative;width:80px;height:15px;margin:1em auto}div.dataTables_processing>div:last-child>div{position:absolute;top:0;width:13px;height:13px;border-radius:50%;background:rgba(13,110,253,.9);animation-timing-function:cubic-bezier(0,1,1,0)}div.dataTables_processing>div:last-child>div:nth-child(1){left:8px;animation:datatables-loader-1 .6s infinite}div.dataTables_processing>div:last-child>div:nth-child(2){left:8px;animation:datatables-loader-2 .6s infinite}div.dataTables_processing>div:last-child>div:nth-child(3){left:32px;animation:datatables-loader-2 .6s infinite}div.dataTables_processing>div:last-child>div:nth-child(4){left:56px;animation:datatables-loader-3 .6s infinite}@keyframes datatables-loader-1{0%{transform:scale(0)}100%{transform:scale(1)}}@keyframes datatables-loader-3{0%{transform:scale(1)}100%{transform:scale(0)}}@keyframes datatables-loader-2{0%{transform:translate(0,0)}100%{transform:translate(24px,0)}}table.dataTable.nowrap td,table.dataTable.nowrap th{white-space:nowrap}table.dataTable td.dt-left,table.dataTable th.dt-left{text-align:left}table.dataTable td.dataTables_empty,table.dataTable td.dt-center,table.dataTable th.dt-center{text-align:center}table.dataTable td.dt-right,table.dataTable th.dt-right{text-align:right}table.dataTable td.dt-justify,table.dataTable th.dt-justify{text-align:justify}table.dataTable td.dt-nowrap,table.dataTable th.dt-nowrap{white-space:nowrap}table.dataTable tfoot td,table.dataTable tfoot th,table.dataTable thead td,table.dataTable thead th{text-align:left}table.dataTable tfoot td.dt-head-left,table.dataTable tfoot th.dt-head-left,table.dataTable thead td.dt-head-left,table.dataTable thead th.dt-head-left{text-align:left}table.dataTable tfoot td.dt-head-center,table.dataTable tfoot th.dt-head-center,table.dataTable thead td.dt-head-center,table.dataTable thead th.dt-head-center{text-align:center}table.dataTable tfoot td.dt-head-right,table.dataTable tfoot th.dt-head-right,table.dataTable thead td.dt-head-right,table.dataTable thead th.dt-head-right{text-align:right}table.dataTable tfoot td.dt-head-justify,table.dataTable tfoot th.dt-head-justify,table.dataTable thead td.dt-head-justify,table.dataTable thead th.dt-head-justify{text-align:justify}table.dataTable tfoot td.dt-head-nowrap,table.dataTable tfoot th.dt-head-nowrap,table.dataTable thead td.dt-head-nowrap,table.dataTable thead th.dt-head-nowrap{white-space:nowrap}table.dataTable tbody td.dt-body-left,table.dataTable tbody th.dt-body-left{text-align:left}table.dataTable tbody td.dt-body-center,table.dataTable tbody th.dt-body-center{text-align:center}table.dataTable tbody td.dt-body-right,table.dataTable tbody th.dt-body-right{text-align:right}table.dataTable tbody td.dt-body-justify,table.dataTable tbody th.dt-body-justify{text-align:justify}table.dataTable tbody td.dt-body-nowrap,table.dataTable tbody th.dt-body-nowrap{white-space:nowrap}/*! Bootstrap 5 integration for DataTables
+ *
+ * ©2020 SpryMedia Ltd, all rights reserved.
+ * License: MIT datatables.net/license/mit
+ */table.dataTable{clear:both;margin-top:6px!important;margin-bottom:6px!important;max-width:none!important;border-collapse:separate!important;border-spacing:0}table.dataTable td,table.dataTable th{-webkit-box-sizing:content-box;box-sizing:content-box}table.dataTable td.dataTables_empty,table.dataTable th.dataTables_empty{text-align:center}table.dataTable.nowrap td,table.dataTable.nowrap th{white-space:nowrap}table.dataTable.table-striped>tbody>tr:nth-of-type(2n+1)>*{box-shadow:none}table.dataTable>tbody>tr{background-color:transparent}table.dataTable>tbody>tr.selected>*{box-shadow:inset 0 0 0 9999px rgba(13,110,253,.9);color:#fff}table.dataTable>tbody>tr.selected a{color:#090a0b}table.dataTable.table-striped>tbody>tr.odd>*{box-shadow:inset 0 0 0 9999px rgba(0,0,0,.05)}table.dataTable.table-striped>tbody>tr.odd.selected>*{box-shadow:inset 0 0 0 9999px rgba(13,110,253,.95)}table.dataTable.table-hover>tbody>tr:hover>*{box-shadow:inset 0 0 0 9999px rgba(0,0,0,.075)}table.dataTable.table-hover>tbody>tr.selected:hover>*{box-shadow:inset 0 0 0 9999px rgba(13,110,253,.975)}div.dataTables_wrapper div.dataTables_length label{font-weight:400;text-align:left;white-space:nowrap}div.dataTables_wrapper div.dataTables_length select{width:auto;display:inline-block}div.dataTables_wrapper div.dataTables_filter{text-align:right}div.dataTables_wrapper div.dataTables_filter label{font-weight:400;white-space:nowrap;text-align:left}div.dataTables_wrapper div.dataTables_filter input{margin-left:.5em;display:inline-block;width:auto}div.dataTables_wrapper div.dataTables_info{padding-top:.85em}div.dataTables_wrapper div.dataTables_paginate{margin:0;white-space:nowrap;text-align:right}div.dataTables_wrapper div.dataTables_paginate ul.pagination{margin:2px 0;white-space:nowrap;justify-content:flex-end}div.dataTables_wrapper div.dt-row{position:relative}div.dataTables_scrollHead table.dataTable{margin-bottom:0!important}div.dataTables_scrollBody>table{border-top:none;margin-top:0!important;margin-bottom:0!important}div.dataTables_scrollBody>table>thead .sorting:after,div.dataTables_scrollBody>table>thead .sorting:before,div.dataTables_scrollBody>table>thead .sorting_asc:after,div.dataTables_scrollBody>table>thead .sorting_asc:before,div.dataTables_scrollBody>table>thead .sorting_desc:after,div.dataTables_scrollBody>table>thead .sorting_desc:before{display:none}div.dataTables_scrollBody>table>tbody tr:first-child td,div.dataTables_scrollBody>table>tbody tr:first-child th{border-top:none}div.dataTables_scrollFoot>.dataTables_scrollFootInner{box-sizing:content-box}div.dataTables_scrollFoot>.dataTables_scrollFootInner>table{margin-top:0!important;border-top:none}@media screen and (max-width:767px){div.dataTables_wrapper div.dataTables_filter,div.dataTables_wrapper div.dataTables_info,div.dataTables_wrapper div.dataTables_length,div.dataTables_wrapper div.dataTables_paginate{text-align:center}div.dataTables_wrapper div.dataTables_paginate ul.pagination{justify-content:center!important}}table.dataTable.table-sm>thead>tr>th:not(.sorting_disabled){padding-right:20px}table.table-bordered.dataTable{border-right-width:0}table.table-bordered.dataTable thead tr:first-child td,table.table-bordered.dataTable thead tr:first-child th{border-top-width:1px}table.table-bordered.dataTable td,table.table-bordered.dataTable th{border-left-width:0}table.table-bordered.dataTable td:first-child,table.table-bordered.dataTable th:first-child{border-left-width:1px}table.table-bordered.dataTable td:last-child,table.table-bordered.dataTable th:last-child{border-right-width:1px}table.table-bordered.dataTable td,table.table-bordered.dataTable th{border-bottom-width:1px}div.dataTables_scrollHead table.table-bordered{border-bottom-width:0}div.table-responsive>div.dataTables_wrapper>div.row{margin:0}div.table-responsive>div.dataTables_wrapper>div.row>div[class^=col-]:first-child{padding-left:0;padding-right:0;margin-bottom:10px}div.table-responsive>div.dataTables_wrapper>div.row>div[class^=col-]:last-child{padding-right:0;padding-left:0}
+/*# sourceMappingURL=dataTables.bs5.min.css.map */
diff --git a/dasena-web/public/assets/admin/vendors/css/dataTables.bs5.min.css.map b/dasena-web/public/assets/admin/vendors/css/dataTables.bs5.min.css.map
new file mode 100644
index 0000000..7977f01
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/css/dataTables.bs5.min.css.map
@@ -0,0 +1 @@
+{"version":3,"sources":["dataTables.bs5.min.css"],"names":[],"mappings":"AAAA,8BACC,WAAY,OACZ,OAAQ,QAET,qCACC,OAAQ,IACR,MAAO,IACP,WAAY,KACZ,QAAS,aACT,MAAO,KACP,OAAQ,MAAO,MAAM,KACrB,cAAe,IACf,WAAY,EAAE,EAAE,KAAM,KACtB,WAAY,YACZ,WAAY,OACZ,YAAa,YACb,YAAa,aAAa,CAAE,OAAO,CAAE,UACrC,YAAa,IACb,QAAS,IACT,iBAAkB,QAEnB,oDACC,QAAS,IACT,iBAAkB,QAOnB,oCACA,wCAEA,iDADA,yCAEA,kDATA,oCACA,wCAEA,iDADA,yCAEA,kDAMC,OAAQ,QACR,SAAU,SACV,cAAe,KAahB,0CADA,2CAGA,8CADA,+CAKA,uDADA,wDADA,+CADA,gDAKA,wDADA,yDAjBA,0CADA,2CAGA,8CADA,+CAKA,uDADA,wDADA,+CADA,gDAKA,wDADA,yDAYC,SAAU,SACV,QAAS,MACT,QAAS,KACT,MAAO,KACP,YAAa,IACb,UAAW,KAOZ,2CACA,+CAEA,wDADA,gDAEA,yDATA,2CACA,+CAEA,wDADA,gDAEA,yDAMC,OAAQ,IACR,QAAS,IAOV,0CACA,8CAEA,uDADA,+CAEA,wDATA,0CACA,8CAEA,uDADA,+CAEA,wDAMC,IAAK,IACL,QAAS,IAIV,+CACA,+CAHA,+CACA,+CAGC,QAAS,GAKV,wDADA,wDADA,wDADA,wDAIC,QAAS,KAGV,mCADA,mCAEC,QAAS,EAKV,4DADA,6DADA,4DADA,6DAIC,QAAS,KAEV,0BACC,SAAU,SACV,IAAK,IACL,KAAM,IACN,MAAO,MACP,YAAa,OACb,WAAY,MACZ,WAAY,OACZ,QAAS,IAEV,yCACC,SAAU,SACV,MAAO,KACP,OAAQ,KACR,OAAQ,IAAI,KAEb,6CACC,SAAU,SACV,IAAK,EACL,MAAO,KACP,OAAQ,KACR,cAAe,IACf,WAAY,oBACZ,0BAA2B,sBAE5B,0DACC,KAAM,IACN,UAAW,oBAAoB,IAAK,SAErC,0DACC,KAAM,IACN,UAAW,oBAAoB,IAAK,SAErC,0DACC,KAAM,KACN,UAAW,oBAAoB,IAAK,SAErC,0DACC,KAAM,KACN,UAAW,oBAAoB,IAAK,SAErC,+BACC,GACC,UAAW,SAEZ,KACC,UAAW,UAGb,+BACC,GACC,UAAW,SAEZ,KACC,UAAW,UAGb,+BACC,GACC,UAAW,eAEZ,KACC,UAAW,mBAIb,0BADA,0BAEC,YAAa,OAGd,2BADA,2BAEC,WAAY,KAIb,oCADA,6BADA,6BAGC,WAAY,OAGb,4BADA,4BAEC,WAAY,MAGb,8BADA,8BAEC,WAAY,QAGb,6BADA,6BAEC,YAAa,OAKd,yBADA,yBADA,yBADA,yBAIC,WAAY,KAKb,sCADA,sCADA,sCADA,sCAIC,WAAY,KAKb,wCADA,wCADA,wCADA,wCAIC,WAAY,OAKb,uCADA,uCADA,uCADA,uCAIC,WAAY,MAKb,yCADA,yCADA,yCADA,yCAIC,WAAY,QAKb,wCADA,wCADA,wCADA,wCAIC,YAAa,OAGd,sCADA,sCAEC,WAAY,KAGb,wCADA,wCAEC,WAAY,OAGb,uCADA,uCAEC,WAAY,MAGb,yCADA,yCAEC,WAAY,QAGb,wCADA,wCAEC,YAAa,OACZ;;;;AAKF,gBACC,MAAO,KACP,WAAY,cACZ,cAAe,cACf,UAAW,eACX,gBAAiB,mBACjB,eAAgB,EAEjB,mBACA,mBACC,mBAAoB,YACpB,WAAY,YAEb,oCACA,oCACC,WAAY,OAGb,0BADA,0BAEC,YAAa,OAEd,2DACC,WAAY,KAEb,yBACC,iBAAkB,YAEnB,oCACC,WAAY,MAAM,EAAE,EAAE,EAAE,OAAO,oBAC/B,MAAO,KAER,oCACC,MAAO,QAER,6CACC,WAAY,MAAM,EAAE,EAAE,EAAE,OAAO,gBAEhC,sDACC,WAAY,MAAM,EAAE,EAAE,EAAE,OAAO,qBAEhC,6CACC,WAAY,MAAM,EAAE,EAAE,EAAE,OAAO,iBAEhC,sDACC,WAAY,MAAM,EAAE,EAAE,EAAE,OAAO,sBAEhC,mDACC,YAAa,IACb,WAAY,KACZ,YAAa,OAEd,oDACC,MAAO,KACP,QAAS,aAEV,6CACC,WAAY,MAEb,mDACC,YAAa,IACb,YAAa,OACb,WAAY,KAEb,mDACC,YAAa,KACb,QAAS,aACT,MAAO,KAER,2CACC,YAAa,MAEd,+CACC,OAAQ,EACR,YAAa,OACb,WAAY,MAEb,6DACC,OAAQ,IAAI,EACZ,YAAa,OACb,gBAAiB,SAElB,kCACC,SAAU,SAEX,0CACC,cAAe,YAEhB,gCACC,WAAY,KACZ,WAAY,YACZ,cAAe,YAKhB,qDAHA,sDAIA,yDAHA,0DAIA,0DAHA,2DAIC,QAAS,KAGV,wDADA,wDAEC,WAAY,KAEb,sDACC,WAAY,YAEb,4DACC,WAAY,YACZ,WAAY,KAEb,oCAEC,6CACA,2CAFA,6CAGA,+CACC,WAAY,OAEb,6DACC,gBAAiB,kBAGnB,4DACC,cAAe,KAEhB,+BACC,mBAAoB,EAGrB,uDADA,uDAEC,iBAAkB,IAGnB,kCADA,kCAEC,kBAAmB,EAIpB,8CAFA,8CAIC,kBAAmB,IAIpB,6CAFA,6CAIC,mBAAoB,IAGrB,kCADA,kCAEC,oBAAqB,IAEtB,+CACC,oBAAqB,EAEtB,oDACC,OAAQ,EAET,iFACC,aAAc,EACd,cAAe,EACf,cAAe,KAEhB,gFACC,cAAe,EACf,aAAc","file":"dataTables.bs5.min.css","sourcesContent":[]}
\ No newline at end of file
diff --git a/dasena-web/public/assets/admin/vendors/css/datepicker.min.css b/dasena-web/public/assets/admin/vendors/css/datepicker.min.css
new file mode 100644
index 0000000..991288b
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/css/datepicker.min.css
@@ -0,0 +1,2 @@
+.datepicker{display:none}.datepicker.active{display:block}.datepicker-dropdown{left:0;padding-top:4px;position:absolute;top:0;z-index:20}.datepicker-dropdown.datepicker-orient-top{padding-bottom:4px;padding-top:0}.datepicker-picker{background-color:#fff;border-radius:4px;display:inline-block}.datepicker-dropdown .datepicker-picker{box-shadow:0 2px 3px hsla(0,0%,4%,.1),0 0 0 1px hsla(0,0%,4%,.1)}.datepicker-picker span{-webkit-touch-callout:none;border:0;border-radius:4px;cursor:default;display:block;flex:1;text-align:center;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.datepicker-picker .today-btn{display:block!important}.datepicker-main{padding:2px}.datepicker-footer{background-color:#f5f5f5;box-shadow:inset 0 1px 1px hsla(0,0%,4%,.1)}.datepicker-controls,.datepicker-grid,.datepicker-view,.datepicker-view .days-of-week{display:flex}.datepicker-grid{flex-wrap:wrap}.datepicker-view .days .datepicker-cell,.datepicker-view .dow{flex-basis:14.2857142857%}.datepicker-view.datepicker-grid .datepicker-cell{flex-basis:25%}.datepicker-cell,.datepicker-view .week{height:2.25rem;line-height:2.25rem}.datepicker-title{background-color:#f5f5f5;box-shadow:inset 0 -1px 1px hsla(0,0%,4%,.1);font-weight:700;padding:.375rem .75rem;text-align:center}.datepicker-header .datepicker-controls{padding:2px 2px 0}.datepicker-controls .button{align-items:center;background-color:#fff;border:1px solid #eeeef5;border-radius:4px;box-shadow:none;color:#363636;cursor:pointer;display:inline-flex;font-size:1rem;height:2.25em;justify-content:center;line-height:1.5;margin:0;padding:calc(.375em - 1px) .75em;position:relative;text-align:center;vertical-align:top;white-space:nowrap}.datepicker-controls .button:active,.datepicker-controls .button:focus{outline:0}.datepicker-controls .button:hover{border-color:#b5b5b5;color:#363636}.datepicker-controls .button:focus{border-color:#3454d1;color:#363636}.datepicker-controls .button:focus:not(:active){box-shadow:0 0 0 .125em rgba(50,115,220,.25)}.datepicker-controls .button:active{border-color:#4a4a4a;color:#363636}.datepicker-controls .button[disabled]{cursor:not-allowed}.datepicker-header .datepicker-controls .button{color:#475e77;font-size:12px;font-weight:700;text-transform:uppercase;border-color:transparent}.datepicker-header .datepicker-controls .button:hover{background-color:#f9f9f9}.datepicker-header .datepicker-controls .button:focus:not(:active){box-shadow:0 0 0 .125em hsla(0,0%,100%,.25)}.datepicker-header .datepicker-controls .button:active{background-color:#f2f2f2}.datepicker-header .datepicker-controls .button[disabled]{box-shadow:none}.datepicker-footer .datepicker-controls .button{border-radius:2px;font-size:.75rem;margin:calc(.375rem - 1px) .375rem;width:100%}.datepicker-controls .view-switch{flex:auto}.datepicker-controls .next-btn,.datepicker-controls .prev-btn{padding-left:.375rem;padding-right:.375rem;width:2.25rem}.datepicker-controls .next-btn.disabled,.datepicker-controls .prev-btn.disabled{visibility:hidden}.datepicker-view .dow{height:1.5rem;font-size:10px;font-weight:600;line-height:1.5rem;text-transform:uppercase}.datepicker-view .week{color:#b5b5b5;font-size:.75rem;width:2.25rem}@media (max-width:22.5rem){.datepicker-view .week{width:1.96875rem}}.datepicker-grid{width:15.75rem}@media (max-width:22.5rem){.calendar-weeks+.days .datepicker-grid{width:13.78125rem}}.datepicker-cell:not(.disabled):hover{background-color:#f9f9f9;cursor:pointer}.datepicker-cell.focused:not(.selected){background-color:#e8e8e8}.datepicker-cell.selected,.datepicker-cell.selected:hover{background-color:#3454d1;color:#fff;font-weight:600}.datepicker-cell.disabled{color:#eeeef5}.datepicker-cell.next:not(.disabled),.datepicker-cell.prev:not(.disabled){color:#7a7a7a}.datepicker-cell.next.selected,.datepicker-cell.prev.selected{color:#e6e6e6}.datepicker-cell.highlighted:not(.selected):not(.range):not(.today){background-color:#f5f5f5;border-radius:0}.datepicker-cell.highlighted:not(.selected):not(.range):not(.today):not(.disabled):hover{background-color:#eee}.datepicker-cell.highlighted:not(.selected):not(.range):not(.today).focused{background-color:#e8e8e8}.datepicker-cell.today:not(.selected){background-color:#00d1b2}.datepicker-cell.today:not(.selected):not(.disabled){color:#fff}.datepicker-cell.today.focused:not(.selected){background-color:#00c4a7}.datepicker-cell.range-end:not(.selected),.datepicker-cell.range-start:not(.selected){background-color:#b5b5b5;color:#fff}.datepicker-cell.range-end.focused:not(.selected),.datepicker-cell.range-start.focused:not(.selected){background-color:#afafaf}.datepicker-cell.range-start{border-radius:4px 0 0 4px}.datepicker-cell.range-end{border-radius:0 4px 4px 0}.datepicker-cell.range{background-color:#eeeef5;border-radius:0}.datepicker-cell.range:not(.disabled):not(.focused):not(.today):hover{background-color:#d5d5d5}.datepicker-cell.range.disabled{color:#c2c2c2}.datepicker-cell.range.focused{background-color:#cfcfcf}.datepicker-view.datepicker-grid .datepicker-cell{height:4.5rem;line-height:4.5rem}.datepicker-input.in-edit{border-color:#2366d1}.datepicker-input.in-edit:active,.datepicker-input.in-edit:focus{box-shadow:0 0 .25em .25em rgba(35,102,209,.2)}
+/*# sourceMappingURL=datepicker.min.css.map */
diff --git a/dasena-web/public/assets/admin/vendors/css/datepicker.min.css.map b/dasena-web/public/assets/admin/vendors/css/datepicker.min.css.map
new file mode 100644
index 0000000..e953c29
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/css/datepicker.min.css.map
@@ -0,0 +1 @@
+{"version":3,"sources":["datepicker.min.css"],"names":[],"mappings":"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","file":"datepicker.min.css","sourcesContent":[]}
\ No newline at end of file
diff --git a/dasena-web/public/assets/admin/vendors/css/daterangepicker.min.css b/dasena-web/public/assets/admin/vendors/css/daterangepicker.min.css
new file mode 100644
index 0000000..1f6d7ad
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/css/daterangepicker.min.css
@@ -0,0 +1,2 @@
+.daterangepicker{position:absolute;color:inherit;background-color:#fff;border-radius:4px;border:1px solid #e5e7eb;width:278px;max-width:none;padding:0;margin-top:7px;top:100px;left:20px;z-index:3001;display:none;font-weight:500;font-size:15px;line-height:1em;box-shadow:0 4px 24px 0 rgba(62,57,107,.18)}.daterangepicker:after,.daterangepicker:before{position:absolute;display:inline-block;border-bottom-color:rgba(0,0,0,.2);content:""}.daterangepicker:before{top:-7px;border-right:7px solid transparent;border-left:7px solid transparent;border-bottom:7px solid #e5e7eb}.daterangepicker:after{top:-6px;border-right:6px solid transparent;border-bottom:6px solid #fff;border-left:6px solid transparent}.daterangepicker.opensleft:before{right:9px}.daterangepicker.opensleft:after{right:10px}.daterangepicker.openscenter:before{left:0;right:0;width:0;margin-left:auto;margin-right:auto}.daterangepicker.openscenter:after{left:0;right:0;width:0;margin-left:auto;margin-right:auto}.daterangepicker.opensright:before{left:9px}.daterangepicker.opensright:after{left:10px}.daterangepicker.drop-up{margin-top:-7px}.daterangepicker.drop-up:before{top:initial;bottom:-7px;border-bottom:initial;border-top:7px solid #e5e7eb}.daterangepicker.drop-up:after{top:initial;bottom:-6px;border-bottom:initial;border-top:6px solid #fff}.daterangepicker.single .daterangepicker .ranges,.daterangepicker.single .drp-calendar{float:none}.daterangepicker.single .drp-selected{display:none}.daterangepicker.show-calendar .drp-calendar{display:block}.daterangepicker.show-calendar .drp-buttons{display:flex;align-items:center;justify-content:end}.daterangepicker.auto-apply .drp-buttons{display:none}.daterangepicker .drp-calendar{display:none;max-width:270px}.daterangepicker .drp-calendar.left{padding:8px 0 8px 8px}.daterangepicker .drp-calendar.right{padding:8px}.daterangepicker .drp-calendar.single .calendar-table{border:none}.daterangepicker .calendar-table .next span,.daterangepicker .calendar-table .prev span{color:#fff;border:solid #000;border-width:0 2px 2px 0;border-radius:0;display:inline-block;padding:3px}.daterangepicker .calendar-table .next span{transform:rotate(-45deg);-webkit-transform:rotate(-45deg)}.daterangepicker .calendar-table .prev span{transform:rotate(135deg);-webkit-transform:rotate(135deg)}.daterangepicker .calendar-table td,.daterangepicker .calendar-table th{white-space:nowrap;text-align:center;vertical-align:middle;min-width:32px;width:32px;height:24px;line-height:24px;font-size:12px;border-radius:4px;border:1px solid transparent;white-space:nowrap;cursor:pointer}.daterangepicker .calendar-table{border:1px solid #fff;border-radius:4px;background-color:#fff}.daterangepicker .calendar-table table{width:100%;margin:0;border-spacing:0;border-collapse:collapse}.daterangepicker td.available:hover,.daterangepicker th.available:hover{background-color:#e5e7eb;border-color:transparent;color:inherit}.daterangepicker td.week,.daterangepicker th.week{font-size:80%;color:#dee2e6}.daterangepicker td.off,.daterangepicker td.off.end-date,.daterangepicker td.off.in-range,.daterangepicker td.off.start-date{background-color:#fff;border-color:transparent;color:#dee2e6}.daterangepicker td.in-range{background-color:#ebf4f8;border-color:transparent;color:#344056;border-radius:0}.daterangepicker td.start-date{border-radius:4px 0 0 4px}.daterangepicker td.end-date{border-radius:0 4px 4px 0}.daterangepicker td.start-date.end-date{border-radius:4px}.daterangepicker td.active,.daterangepicker td.active:hover{color:#fff;border-color:transparent;background-color:#3454d1!important}.daterangepicker th.month{width:auto}.daterangepicker option.disabled,.daterangepicker td.disabled{color:#dee2e6;cursor:not-allowed;text-decoration:line-through}.daterangepicker select.monthselect,.daterangepicker select.yearselect{font-size:12px;padding:1px;height:auto;margin:0;cursor:default}.daterangepicker select.monthselect{margin-right:2%;width:56%}.daterangepicker select.yearselect{width:40%}.daterangepicker select.ampmselect,.daterangepicker select.hourselect,.daterangepicker select.minuteselect,.daterangepicker select.secondselect{width:50px;margin:0 auto;background:#e5e7eb;border:1px solid #e5e7eb;padding:2px;outline:0;font-size:12px}.daterangepicker .calendar-time{text-align:center;margin:4px auto 0 auto;line-height:30px;position:relative}.daterangepicker .calendar-time select.disabled{color:#e5e7eb;cursor:not-allowed}.daterangepicker .drp-buttons{clear:both;text-align:right;padding:8px;border-top:1px solid #e5e7eb;display:none;line-height:12px;vertical-align:middle}.daterangepicker .drp-selected{display:inline-block;font-size:12px;padding-right:8px}.daterangepicker .drp-buttons .btn{margin-left:5px;display:inline-block}.daterangepicker.show-ranges.single.rtl .drp-calendar.left{border-right:1px solid #e5e7eb}.daterangepicker.show-ranges.single.ltr .drp-calendar.left{border-left:1px solid #e5e7eb}.daterangepicker.show-ranges.rtl .drp-calendar.right{border-right:1px solid #e5e7eb}.daterangepicker.show-ranges.ltr .drp-calendar.left{border-left:1px solid #e5e7eb}.daterangepicker .ranges{float:none;text-align:left;margin:0}.daterangepicker.show-calendar .ranges{margin-top:8px}.daterangepicker .ranges ul{list-style:none;margin:0 auto;padding:0;width:100%}.daterangepicker .ranges li{color:#344056;font-size:10px;cursor:pointer;margin:3px 5px;font-weight:700;padding:8px 12px;border-radius:5px;letter-spacing:.25px;text-transform:uppercase}.daterangepicker .ranges li:first-child{margin-top:5px}.daterangepicker .ranges li:last-child{margin-bottom:5px}.daterangepicker .ranges li:hover{background-color:#e5e7eb}.daterangepicker .ranges li.active{background-color:#3454d1;color:#fff}@media (min-width:564px){.daterangepicker{width:auto}.daterangepicker .ranges ul{width:140px}.daterangepicker.single .ranges ul{width:100%}.daterangepicker.single .drp-calendar.left{clear:none}.daterangepicker.single .drp-calendar,.daterangepicker.single .ranges{float:left}.daterangepicker{direction:ltr;text-align:left}.daterangepicker .drp-calendar.left{clear:left;margin-right:0}.daterangepicker .drp-calendar.left .calendar-table{border-right:none;border-top-right-radius:0;border-bottom-right-radius:0}.daterangepicker .drp-calendar.right{margin-left:0}.daterangepicker .drp-calendar.right .calendar-table{border-left:none;border-top-left-radius:0;border-bottom-left-radius:0}.daterangepicker .drp-calendar.left .calendar-table{padding-right:8px}.daterangepicker .drp-calendar,.daterangepicker .ranges{float:left}}@media (min-width:730px){.daterangepicker .ranges{width:auto}.daterangepicker .ranges{float:left}.daterangepicker.rtl .ranges{float:right}.daterangepicker .drp-calendar.left{clear:none!important}}
+/*# sourceMappingURL=daterangepicker.min.css.map */
diff --git a/dasena-web/public/assets/admin/vendors/css/daterangepicker.min.css.map b/dasena-web/public/assets/admin/vendors/css/daterangepicker.min.css.map
new file mode 100644
index 0000000..48ca4ef
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/css/daterangepicker.min.css.map
@@ -0,0 +1 @@
+{"version":3,"sources":["daterangepicker.min.css"],"names":[],"mappings":"AAAA,iBACC,SAAU,SACV,MAAO,QACP,iBAAkB,KAClB,cAAe,IACf,OAAQ,IAAI,MAAM,QAClB,MAAO,MACP,UAAW,KACX,QAAS,EACT,WAAY,IACZ,IAAK,MACL,KAAM,KACN,QAAS,KACT,QAAS,KACT,YAAa,IACb,UAAW,KACX,YAAa,IACb,WAAY,EAAE,IAAI,KAAK,EAAE,oBAI1B,uBADA,wBAEC,SAAU,SACV,QAAS,aACT,oBAAqB,eACrB,QAAS,GAGV,wBACC,IAAK,KACL,aAAc,IAAI,MAAM,YACxB,YAAa,IAAI,MAAM,YACvB,cAAe,IAAI,MAAM,QAG1B,uBACC,IAAK,KACL,aAAc,IAAI,MAAM,YACxB,cAAe,IAAI,MAAM,KACzB,YAAa,IAAI,MAAM,YAGxB,kCACC,MAAO,IAGR,iCACC,MAAO,KAGR,oCACC,KAAM,EACN,MAAO,EACP,MAAO,EACP,YAAa,KACb,aAAc,KAGf,mCACC,KAAM,EACN,MAAO,EACP,MAAO,EACP,YAAa,KACb,aAAc,KAGf,mCACC,KAAM,IAGP,kCACC,KAAM,KAGP,yBACC,WAAY,KAGb,gCACC,IAAK,QACL,OAAQ,KACR,cAAe,QACf,WAAY,IAAI,MAAM,QAGvB,+BACC,IAAK,QACL,OAAQ,KACR,cAAe,QACf,WAAY,IAAI,MAAM,KAGvB,iDACA,sCACC,MAAO,KAGR,sCACC,QAAS,KAGV,6CACC,QAAS,MAGV,4CACC,QAAS,KACT,YAAa,OACb,gBAAiB,IAGlB,yCACC,QAAS,KAGV,+BACC,QAAS,KACT,UAAW,MAGZ,oCACC,QAAS,IAAI,EAAE,IAAI,IAGpB,qCACC,QAAS,IAGV,sDACC,OAAQ,KAGT,4CACA,4CACC,MAAO,KACP,OAAQ,MAAM,KACd,aAAc,EAAE,IAAI,IAAI,EACxB,cAAe,EACf,QAAS,aACT,QAAS,IAGV,4CACC,UAAW,eACX,kBAAmB,eAGpB,4CACC,UAAW,eACX,kBAAmB,eAIpB,oCADA,oCAEC,YAAa,OACb,WAAY,OACZ,eAAgB,OAChB,UAAW,KACX,MAAO,KACP,OAAQ,KACR,YAAa,KACb,UAAW,KACX,cAAe,IACf,OAAQ,IAAI,MAAM,YAClB,YAAa,OACb,OAAQ,QAGT,iCACC,OAAQ,IAAI,MAAM,KAClB,cAAe,IACf,iBAAkB,KAGnB,uCACC,MAAO,KACP,OAAQ,EACR,eAAgB,EAChB,gBAAiB,SAGlB,oCACA,oCACC,iBAAkB,QAClB,aAAc,YACd,MAAO,QAGR,yBACA,yBACC,UAAW,IACX,MAAO,QAGR,wBAGA,iCAFA,iCACA,mCAEC,iBAAkB,KAClB,aAAc,YACd,MAAO,QAGR,6BACC,iBAAkB,QAClB,aAAc,YACd,MAAO,QACP,cAAe,EAGhB,+BACC,cAAe,IAAI,EAAE,EAAE,IAGxB,6BACC,cAAe,EAAE,IAAI,IAAI,EAG1B,wCACC,cAAe,IAGhB,2BACA,iCACC,MAAO,KACP,aAAc,YACd,iBAAkB,kBAGnB,0BACC,MAAO,KAIR,iCADA,6BAEC,MAAO,QACP,OAAQ,YACR,gBAAiB,aAGlB,oCACA,mCACC,UAAW,KACX,QAAS,IACT,OAAQ,KACR,OAAQ,EACR,OAAQ,QAGT,oCACC,aAAc,GACd,MAAO,IAGR,mCACC,MAAO,IAMR,mCAHA,mCACA,qCACA,qCAEC,MAAO,KACP,OAAQ,EAAE,KACV,WAAY,QACZ,OAAQ,IAAI,MAAM,QAClB,QAAS,IACT,QAAS,EACT,UAAW,KAGZ,gCACC,WAAY,OACZ,OAAQ,IAAI,KAAK,EAAE,KACnB,YAAa,KACb,SAAU,SAGX,gDACC,MAAO,QACP,OAAQ,YAGT,8BACC,MAAO,KACP,WAAY,MACZ,QAAS,IACT,WAAY,IAAI,MAAM,QACtB,QAAS,KACT,YAAa,KACb,eAAgB,OAGjB,+BACC,QAAS,aACT,UAAW,KACX,cAAe,IAGhB,mCACC,YAAa,IACb,QAAS,aAGV,2DACC,aAAc,IAAI,MAAM,QAGzB,2DACC,YAAa,IAAI,MAAM,QAGxB,qDACC,aAAc,IAAI,MAAM,QAGzB,oDACC,YAAa,IAAI,MAAM,QAGxB,yBACC,MAAO,KACP,WAAY,KACZ,OAAQ,EAGT,uCACC,WAAY,IAGb,4BACC,WAAY,KACZ,OAAQ,EAAE,KACV,QAAS,EACT,MAAO,KAGR,4BACC,MAAO,QACP,UAAW,KACX,OAAQ,QACR,OAAQ,IAAI,IACZ,YAAa,IACb,QAAS,IAAI,KACb,cAAe,IACf,eAAgB,MAChB,eAAgB,UAGjB,wCACC,WAAY,IAGb,uCACC,cAAe,IAGhB,kCACC,iBAAkB,QAGnB,mCACC,iBAAkB,QAClB,MAAO,KAIR,yBACC,iBACC,MAAO,KAGR,4BACC,MAAO,MAGR,mCACC,MAAO,KAGR,2CACC,MAAO,KAIR,sCADA,gCAEC,MAAO,KAGR,iBACC,UAAW,IACX,WAAY,KAGb,oCACC,MAAO,KACP,aAAc,EAGf,oDACC,aAAc,KACd,wBAAyB,EACzB,2BAA4B,EAG7B,qCACC,YAAa,EAGd,qDACC,YAAa,KACb,uBAAwB,EACxB,0BAA2B,EAG5B,oDACC,cAAe,IAIhB,+BADA,yBAEC,MAAO,MAIT,yBACC,yBACC,MAAO,KAGR,yBACC,MAAO,KAGR,6BACC,MAAO,MAGR,oCACC,MAAO","file":"daterangepicker.min.css","sourcesContent":[]}
\ No newline at end of file
diff --git a/dasena-web/public/assets/admin/vendors/css/emojionearea.min.css b/dasena-web/public/assets/admin/vendors/css/emojionearea.min.css
new file mode 100644
index 0000000..b4ef8d2
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/css/emojionearea.min.css
@@ -0,0 +1,2 @@
+.dropdown-menu.textcomplete-dropdown[data-strategy=emojionearea]{position:absolute;z-index:6;min-width:160px;padding:5px 0;margin:2px 0 0;font-size:13px;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid #eee;border:1px solid rgba(0,0,0,.15);border-radius:4px;box-shadow:0 6px 12px rgba(0,0,0,.175)}.dropdown-menu.textcomplete-dropdown[data-strategy=emojionearea] li.textcomplete-item{font-size:13px;padding:1px 3px;border:0}.dropdown-menu.textcomplete-dropdown[data-strategy=emojionearea] li.textcomplete-item a{text-decoration:none;display:block;height:100%;line-height:1.8em;padding:0 1.54em 0 .615em;color:#4f4f4f}.dropdown-menu.textcomplete-dropdown[data-strategy=emojionearea] li.textcomplete-item.active,.dropdown-menu.textcomplete-dropdown[data-strategy=emojionearea] li.textcomplete-item:hover{background-color:#e4e4e4}.dropdown-menu.textcomplete-dropdown[data-strategy=emojionearea] li.textcomplete-item.active a,.dropdown-menu.textcomplete-dropdown[data-strategy=emojionearea] li.textcomplete-item:hover a{color:#333}.dropdown-menu.textcomplete-dropdown[data-strategy=emojionearea] li.textcomplete-item .emojioneemoji{font-size:inherit;height:2ex;width:2.1ex;min-height:20px;min-width:20px;display:inline-block;margin:0 5px .2ex 0;line-height:normal;vertical-align:middle;max-width:100%;top:0}.emojionearea-text .emojioneemoji,.emojionearea-text [class*=emojione-]{font-size:inherit;height:2ex;width:2.1ex;min-height:20px;min-width:20px;display:inline-block;margin:-.2ex .15em .2ex;line-height:normal;vertical-align:middle;max-width:100%;top:0}.emojionearea,.emojionearea *{box-sizing:border-box}.emojionearea.emojionearea-disable{position:relative;background-color:#eee;-moz-user-select:-moz-none;-ms-user-select:none;-webkit-user-select:none;user-select:none}.emojionearea.emojionearea-disable:before{top:0;left:0;right:0;bottom:0;z-index:1;content:"";opacity:.3;display:block;position:absolute;background-color:#eee}.emojionearea,.emojionearea.form-control{padding:0;width:100%;height:auto;border:none;display:block;font-size:13px;box-shadow:none;border-radius:3px;position:relative!important;background-color:transparent;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}.emojionearea.focused{border-color:#1c97f5;outline:0}.emojionearea .emojionearea-editor{display:block;height:auto;min-height:8em;max-height:15em;overflow:auto;padding:6px 24px 6px 12px;line-height:1.42857143;font-size:inherit;color:#555;background-color:transparent;border:0;cursor:text;margin-right:1px;border-radius:0;box-shadow:none}.emojionearea .emojionearea-editor:empty:before{content:attr(placeholder);display:block;color:#bbb}.emojionearea .emojionearea-editor:focus{border:0;outline:0;box-shadow:none}.emojionearea .emojionearea-editor .emojioneemoji,.emojionearea .emojionearea-editor [class*=emojione-]{font-size:inherit;height:2ex;width:2.1ex;min-height:20px;min-width:20px;display:inline-block;margin:-.2ex .15em .2ex;line-height:normal;vertical-align:middle;max-width:100%;top:0}.emojionearea.emojionearea-inline{height:42px}.emojionearea.emojionearea-inline>.emojionearea-editor{height:40px;min-height:20px;overflow:hidden;white-space:nowrap;position:absolute;top:0;left:12px;right:24px;padding:12px 0}.emojionearea.emojionearea-inline>.emojionearea-button{top:8px}.emojionearea .emojionearea-button{z-index:2;position:absolute;right:8px;top:8px;width:24px;height:24px;opacity:.6;cursor:pointer;transition:opacity .3s ease-in-out}.emojionearea .emojionearea-button:hover{opacity:1}.emojionearea .emojionearea-button>div{display:block;width:24px;height:24px;position:absolute;transition:all .4s ease-in-out}.emojionearea .emojionearea-button>div.emojionearea-button-open{background-position:0 -24px;opacity:1}.emojionearea .emojionearea-button>div.emojionearea-button-close{background-position:0 0;transform:rotate(-45deg);opacity:0}.emojionearea .emojionearea-button.active>div.emojionearea-button-open{transform:rotate(45deg);opacity:0}.emojionearea .emojionearea-button.active>div.emojionearea-button-close{transform:rotate(0);opacity:1}.emojionearea .emojionearea-picker{background:#fff;position:absolute;box-shadow:0 1px 5px rgba(0,0,0,.32);border-radius:5px;height:276px;width:316px;top:-15px;right:-15px;z-index:3;transition:all .25s ease-in-out;opacity:0;-moz-user-select:-moz-none;-ms-user-select:none;-webkit-user-select:none;user-select:none}.emojionearea .emojionearea-picker.hidden{display:none}.emojionearea .emojionearea-picker .emojionearea-wrapper{position:relative;height:276px;width:316px}.emojionearea .emojionearea-picker .emojionearea-wrapper:after{content:"";display:block;position:absolute;background-repeat:no-repeat;z-index:4}.emojionearea .emojionearea-picker .emojionearea-filters{width:100%;z-index:5;padding:0 0;height:40px;display:flex;position:absolute;align-items:center;background:#f2f7ff;justify-content:center;border-bottom:1px solid #eee}.emojionearea .emojionearea-picker .emojionearea-filters .emojionearea-filter{width:40px;height:40px;display:flex;cursor:pointer;filter:grayscale(1);align-items:center;justify-content:center}.emojionearea .emojionearea-picker .emojionearea-filters .emojionearea-filter.active{background:#fff}.emojionearea .emojionearea-picker .emojionearea-filters .emojionearea-filter.active,.emojionearea .emojionearea-picker .emojionearea-filters .emojionearea-filter:hover{filter:grayscale(0)}.emojionearea .emojionearea-picker .emojionearea-filters .emojionearea-filter>i{width:20px;height:20px;top:0}.emojionearea .emojionearea-picker .emojionearea-filters .emojionearea-filter>img{width:20px;height:20px}.emojionearea .emojionearea-picker .emojionearea-search-panel{height:55px;position:absolute;z-index:5;top:40px;left:0;right:0;padding:12px;background:#fff}.emojionearea .emojionearea-picker .emojionearea-search-panel .emojionearea-tones{float:right;margin-left:10px;margin-top:5px}.emojionearea .emojionearea-picker .emojionearea-tones-panel .emojionearea-tones{position:absolute;top:4px;left:171px}.emojionearea .emojionearea-picker .emojionearea-search{float:left;padding:0;height:30px;width:160px}.emojionearea .emojionearea-picker .emojionearea-search>input{outline:0;width:160px;min-width:160px;height:30px;border:1px solid #eee}.emojionearea .emojionearea-picker .emojionearea-tones{padding:0;width:120px;height:20px}.emojionearea .emojionearea-picker .emojionearea-tones>.btn-tone{display:inline-block;padding:0;border:0;vertical-align:middle;outline:0;background:0 0;cursor:pointer;position:relative}.emojionearea .emojionearea-picker .emojionearea-tones>.btn-tone.btn-tone-0,.emojionearea .emojionearea-picker .emojionearea-tones>.btn-tone.btn-tone-0:after{background-color:#ffcf3e}.emojionearea .emojionearea-picker .emojionearea-tones>.btn-tone.btn-tone-1,.emojionearea .emojionearea-picker .emojionearea-tones>.btn-tone.btn-tone-1:after{background-color:#fae3c5}.emojionearea .emojionearea-picker .emojionearea-tones>.btn-tone.btn-tone-2,.emojionearea .emojionearea-picker .emojionearea-tones>.btn-tone.btn-tone-2:after{background-color:#e2cfa5}.emojionearea .emojionearea-picker .emojionearea-tones>.btn-tone.btn-tone-3,.emojionearea .emojionearea-picker .emojionearea-tones>.btn-tone.btn-tone-3:after{background-color:#daa478}.emojionearea .emojionearea-picker .emojionearea-tones>.btn-tone.btn-tone-4,.emojionearea .emojionearea-picker .emojionearea-tones>.btn-tone.btn-tone-4:after{background-color:#a78058}.emojionearea .emojionearea-picker .emojionearea-tones>.btn-tone.btn-tone-5,.emojionearea .emojionearea-picker .emojionearea-tones>.btn-tone.btn-tone-5:after{background-color:#5e4d43}.emojionearea .emojionearea-picker .emojionearea-tones.emojionearea-tones-bullet>.btn-tone,.emojionearea .emojionearea-picker .emojionearea-tones.emojionearea-tones-square>.btn-tone{width:20px;height:20px;margin:0;background-color:transparent}.emojionearea .emojionearea-picker .emojionearea-tones.emojionearea-tones-bullet>.btn-tone:after,.emojionearea .emojionearea-picker .emojionearea-tones.emojionearea-tones-square>.btn-tone:after{content:"";position:absolute;display:block;top:4px;left:4px;width:12px;height:12px}.emojionearea .emojionearea-picker .emojionearea-tones.emojionearea-tones-bullet>.btn-tone.active:after,.emojionearea .emojionearea-picker .emojionearea-tones.emojionearea-tones-square>.btn-tone.active:after{top:0;left:0;width:20px;height:20px}.emojionearea .emojionearea-picker .emojionearea-tones.emojionearea-tones-checkbox>.btn-tone,.emojionearea .emojionearea-picker .emojionearea-tones.emojionearea-tones-radio>.btn-tone{width:16px;height:16px;margin:0 2px}.emojionearea .emojionearea-picker .emojionearea-tones.emojionearea-tones-checkbox>.btn-tone.active:after,.emojionearea .emojionearea-picker .emojionearea-tones.emojionearea-tones-radio>.btn-tone.active:after{content:"";position:absolute;display:block;background-color:transparent;border:2px solid #fff;width:8px;height:8px;top:2px;left:2px;box-sizing:initial}.emojionearea .emojionearea-picker .emojionearea-scroll-area .emojionearea-category-block:after,.emojionearea .emojionearea-picker .emojionearea-scroll-area .emojionearea-category-block:before,.emojionearea .emojionearea-picker .emojionearea-scroll-area .emojionearea-category-block>.emojionearea-category:after,.emojionearea .emojionearea-picker .emojionearea-scroll-area .emojionearea-category-block>.emojionearea-category:before,.emojionearea .emojionearea-picker .emojionearea-scroll-area .emojionearea-category-title:after,.emojionearea .emojionearea-picker .emojionearea-scroll-area .emojionearea-category-title:before{content:" ";clear:both;display:block}.emojionearea .emojionearea-picker .emojionearea-tones.emojionearea-tones-bullet>.btn-tone,.emojionearea .emojionearea-picker .emojionearea-tones.emojionearea-tones-bullet>.btn-tone:after,.emojionearea .emojionearea-picker .emojionearea-tones.emojionearea-tones-radio>.btn-tone,.emojionearea .emojionearea-picker .emojionearea-tones.emojionearea-tones-radio>.btn-tone:after{border-radius:100%}.emojionearea .emojionearea-picker .emojionearea-tones.emojionearea-tones-checkbox>.btn-tone,.emojionearea .emojionearea-picker .emojionearea-tones.emojionearea-tones-checkbox>.btn-tone:after,.emojionearea .emojionearea-picker .emojionearea-tones.emojionearea-tones-square>.btn-tone,.emojionearea .emojionearea-picker .emojionearea-tones.emojionearea-tones-square>.btn-tone:after{border-radius:1px}.emojionearea .emojionearea-picker .emojionearea-scroll-area{height:236px;overflow:auto;overflow-x:hidden;width:100%;position:absolute;padding:0 0 5px}.emojionearea .emojionearea-picker .emojionearea-search-panel+.emojionearea-scroll-area{height:206px}.emojionearea .emojionearea-picker .emojionearea-scroll-area .emojionearea-emojis-list{z-index:1}.emojionearea .emojionearea-picker .emojionearea-scroll-area .emojionearea-category-title{display:block;font-family:Arial,Helvetica Neue,Helvetica,sans-serif;font-size:13px;font-weight:400;color:#b2b2b2;background:#fff;line-height:20px;margin:0;padding:7px 0 5px 6px}.emojionearea .emojionearea-picker .emojionearea-scroll-area .emojionearea-category-block{padding:0 0 0 7px}.emojionearea .emojionearea-picker .emojionearea-scroll-area .emojionearea-category-block>.emojionearea-category{padding:20px 0 0!important}.emojionearea .emojionearea-picker .emojionearea-scroll-area [class*=emojione-]{box-sizing:content-box;margin:0;width:24px;height:24px;top:0}.emojionearea .emojionearea-picker .emojionearea-scroll-area .emojibtn{box-sizing:content-box;width:24px;height:24px;float:left;display:block;margin:1px;padding:3px}.emojionearea .emojionearea-picker .emojionearea-scroll-area .emojibtn:hover{border-radius:4px;background-color:#e4e4e4;cursor:pointer}.emojionearea .emojionearea-picker .emojionearea-scroll-area .emojibtn i,.emojionearea .emojionearea-picker .emojionearea-scroll-area .emojibtn img{float:left;display:block;width:24px;height:24px}.emojionearea .emojionearea-picker .emojionearea-scroll-area .emojibtn img.lazy-emoji{opacity:0}.emojionearea .emojionearea-picker.emojionearea-filters-position-top .emojionearea-filters{top:0;border-top-left-radius:5px;border-top-right-radius:5px}.emojionearea .emojionearea-picker.emojionearea-filters-position-top.emojionearea-search-position-top .emojionearea-scroll-area{bottom:0}.emojionearea .emojionearea-picker.emojionearea-filters-position-top.emojionearea-search-position-bottom .emojionearea-scroll-area{top:40px}.emojionearea .emojionearea-picker.emojionearea-filters-position-top.emojionearea-search-position-bottom .emojionearea-search-panel{top:auto;bottom:0}.emojionearea .emojionearea-picker.emojionearea-filters-position-bottom .emojionearea-filters{bottom:0;border-bottom-left-radius:5px;border-bottom-right-radius:5px}.emojionearea .emojionearea-picker.emojionearea-filters-position-bottom.emojionearea-search-position-bottom .emojionearea-scroll-area{top:0}.emojionearea .emojionearea-picker.emojionearea-filters-position-bottom.emojionearea-search-position-bottom .emojionearea-search-panel,.emojionearea .emojionearea-picker.emojionearea-filters-position-bottom.emojionearea-search-position-top .emojionearea-scroll-area{top:auto;bottom:40px}.emojionearea .emojionearea-picker.emojionearea-filters-position-bottom.emojionearea-search-position-top .emojionearea-search-panel{top:0}.emojionearea .emojionearea-picker.emojionearea-picker-position-top{margin-top:-286px;right:-13px}.emojionearea .emojionearea-picker.emojionearea-picker-position-top .emojionearea-wrapper:after{width:19px;height:10px;background-position:-2px -49px;bottom:-10px;right:20px}.emojionearea .emojionearea-picker.emojionearea-picker-position-top.emojionearea-filters-position-bottom .emojionearea-wrapper:after{background-position:-2px -80px}.emojionearea .emojionearea-picker.emojionearea-picker-position-left,.emojionearea .emojionearea-picker.emojionearea-picker-position-right{margin-right:-326px;top:-8px}.emojionearea .emojionearea-picker.emojionearea-picker-position-left .emojionearea-wrapper:after,.emojionearea .emojionearea-picker.emojionearea-picker-position-right .emojionearea-wrapper:after{width:10px;height:19px;background-position:0 -60px;top:13px;left:-10px}.emojionearea .emojionearea-picker.emojionearea-picker-position-left.emojionearea-filters-position-bottom .emojionearea-wrapper:after,.emojionearea .emojionearea-picker.emojionearea-picker-position-right.emojionearea-filters-position-bottom .emojionearea-wrapper:after{background-position:right -60px}.emojionearea .emojionearea-picker.emojionearea-picker-position-bottom{margin-top:10px;right:-13px;top:47px}.emojionearea .emojionearea-picker.emojionearea-picker-position-bottom .emojionearea-wrapper:after{width:19px;height:10px;background-position:-2px -100px;top:-10px;right:20px}.emojionearea .emojionearea-picker.emojionearea-picker-position-bottom.emojionearea-filters-position-bottom .emojionearea-wrapper:after{background-position:-2px -90px}.emojionearea .emojionearea-button.active+.emojionearea-picker{opacity:1}.emojionearea .emojionearea-button.active+.emojionearea-picker-position-top{margin-top:-269px}.emojionearea .emojionearea-button.active+.emojionearea-picker-position-left,.emojionearea .emojionearea-button.active+.emojionearea-picker-position-right{margin-right:-309px}.emojionearea .emojionearea-button.active+.emojionearea-picker-position-bottom{margin-top:-7px}.emojionearea.emojionearea-standalone{display:inline-block;width:auto;box-shadow:none}.emojionearea.emojionearea-standalone .emojionearea-editor{min-height:33px;position:relative;padding:6px 42px 6px 6px}.emojionearea.emojionearea-standalone .emojionearea-editor:before{content:"";position:absolute;top:4px;left:50%;bottom:4px;border-left:1px solid #e6e6e6}.emojionearea.emojionearea-standalone .emojionearea-editor.has-placeholder .emojioneemoji{opacity:.4}.emojionearea.emojionearea-standalone .emojionearea-button{top:0;right:0;bottom:0;left:0;width:auto;height:auto}.emojionearea.emojionearea-standalone .emojionearea-button>div{right:6px;top:5px}.emojionearea.emojionearea-standalone .emojionearea-picker.emojionearea-picker-position-bottom .emojionearea-wrapper:after,.emojionearea.emojionearea-standalone .emojionearea-picker.emojionearea-picker-position-top .emojionearea-wrapper:after{right:23px}.emojionearea.emojionearea-standalone .emojionearea-picker.emojionearea-picker-position-left .emojionearea-wrapper:after,.emojionearea.emojionearea-standalone .emojionearea-picker.emojionearea-picker-position-right .emojionearea-wrapper:after{top:15px}.emojionearea .emojionearea-button>div,.emojionearea .emojionearea-picker .emojionearea-wrapper:after{background-image:url(data:image/png;base64,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)!important}.emojionearea.emojionearea-standalone .emojionearea-editor.has-placeholder{background-repeat:no-repeat;background-position:20px 4px;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMAQMAAABsu86kAAAABlBMVEUAAAC/v79T5hyIAAAAAXRSTlMAQObYZgAAABNJREFUCNdjYGNgQEb/P4AQqiAASiUEG6Vit44AAAAASUVORK5CYII=)!important}
+/*# sourceMappingURL=emojionearea.min.css.map */
diff --git a/dasena-web/public/assets/admin/vendors/css/emojionearea.min.css.map b/dasena-web/public/assets/admin/vendors/css/emojionearea.min.css.map
new file mode 100644
index 0000000..179358b
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/css/emojionearea.min.css.map
@@ -0,0 +1 @@
+{"version":3,"sources":["emojionearea.min.css"],"names":[],"mappings":"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","file":"emojionearea.min.css","sourcesContent":[]}
\ No newline at end of file
diff --git a/dasena-web/public/assets/admin/vendors/css/feather.min.css b/dasena-web/public/assets/admin/vendors/css/feather.min.css
new file mode 100644
index 0000000..a12dfe7
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/css/feather.min.css
@@ -0,0 +1,2 @@
+@font-face{font-family:feather;src:url(../fonts/feather.eot?oz8w89);src:url(../fonts/feather.eot?oz8w89#iefix) format("embedded-opentype"),url(../fonts/feather.ttf?oz8w89) format("truetype"),url(../fonts/feather.woff?oz8w89) format("woff"),url(../fonts/feather.svg?oz8w89#feather) format("svg");font-weight:400;font-style:normal;font-display:block}i{font-size:16px;font-family:feather;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.feather-activity:before{content:"\e900"}.feather-airplay:before{content:"\e901"}.feather-alert-circle:before{content:"\e902"}.feather-alert-octagon:before{content:"\e903"}.feather-alert-triangle:before{content:"\e904"}.feather-align-center:before{content:"\e905"}.feather-align-justify:before{content:"\e906"}.feather-align-left:before{content:"\e907"}.feather-align-right:before{content:"\e908"}.feather-anchor:before{content:"\e909"}.feather-aperture:before{content:"\e90a"}.feather-archive:before{content:"\e90b"}.feather-arrow-down:before{content:"\e90c"}.feather-arrow-down-circle:before{content:"\e90d"}.feather-arrow-down-left:before{content:"\e90e"}.feather-arrow-down-right:before{content:"\e90f"}.feather-arrow-left:before{content:"\e910"}.feather-arrow-left-circle:before{content:"\e911"}.feather-arrow-right:before{content:"\e912"}.feather-arrow-right-circle:before{content:"\e913"}.feather-arrow-up:before{content:"\e914"}.feather-arrow-up-circle:before{content:"\e915"}.feather-arrow-up-left:before{content:"\e916"}.feather-arrow-up-right:before{content:"\e917"}.feather-at-sign:before{content:"\e918"}.feather-award:before{content:"\e919"}.feather-bar-chart:before{content:"\e91a"}.feather-bar-chart-2:before{content:"\e91b"}.feather-battery:before{content:"\e91c"}.feather-battery-charging:before{content:"\e91d"}.feather-bell:before{content:"\e91e"}.feather-bell-off:before{content:"\e91f"}.feather-bluetooth:before{content:"\e920"}.feather-bold:before{content:"\e921"}.feather-book:before{content:"\e922"}.feather-book-open:before{content:"\e923"}.feather-bookmark:before{content:"\e924"}.feather-box:before{content:"\e925"}.feather-briefcase:before{content:"\e926"}.feather-calendar:before{content:"\e927"}.feather-camera:before{content:"\e928"}.feather-camera-off:before{content:"\e929"}.feather-cast:before{content:"\e92a"}.feather-check:before{content:"\e92b"}.feather-check-circle:before{content:"\e92c"}.feather-check-square:before{content:"\e92d"}.feather-chevron-down:before{content:"\e92e"}.feather-chevron-left:before{content:"\e92f"}.feather-chevron-right:before{content:"\e930"}.feather-chevron-up:before{content:"\e931"}.feather-chevrons-down:before{content:"\e932"}.feather-chevrons-left:before{content:"\e933"}.feather-chevrons-right:before{content:"\e934"}.feather-chevrons-up:before{content:"\e935"}.feather-chrome:before{content:"\e936"}.feather-circle:before{content:"\e937"}.feather-clipboard:before{content:"\e938"}.feather-clock:before{content:"\e939"}.feather-cloud:before{content:"\e93a"}.feather-cloud-drizzle:before{content:"\e93b"}.feather-cloud-lightning:before{content:"\e93c"}.feather-cloud-off:before{content:"\e93d"}.feather-cloud-rain:before{content:"\e93e"}.feather-cloud-snow:before{content:"\e93f"}.feather-code:before{content:"\e940"}.feather-codepen:before{content:"\e941"}.feather-codesandbox:before{content:"\e942"}.feather-coffee:before{content:"\e943"}.feather-columns:before{content:"\e944"}.feather-command:before{content:"\e945"}.feather-compass:before{content:"\e946"}.feather-copy:before{content:"\e947"}.feather-corner-down-left:before{content:"\e948"}.feather-corner-down-right:before{content:"\e949"}.feather-corner-left-down:before{content:"\e94a"}.feather-corner-left-up:before{content:"\e94b"}.feather-corner-right-down:before{content:"\e94c"}.feather-corner-right-up:before{content:"\e94d"}.feather-corner-up-left:before{content:"\e94e"}.feather-corner-up-right:before{content:"\e94f"}.feather-cpu:before{content:"\e950"}.feather-credit-card:before{content:"\e951"}.feather-crop:before{content:"\e952"}.feather-crosshair:before{content:"\e953"}.feather-database:before{content:"\e954"}.feather-delete:before{content:"\e955"}.feather-disc:before{content:"\e956"}.feather-dollar-sign:before{content:"\e957"}.feather-download:before{content:"\e958"}.feather-download-cloud:before{content:"\e959"}.feather-droplet:before{content:"\e95a"}.feather-edit:before{content:"\e95b"}.feather-edit-2:before{content:"\e95c"}.feather-edit-3:before{content:"\e95d"}.feather-external-link:before{content:"\e95e"}.feather-eye:before{content:"\e95f"}.feather-eye-off:before{content:"\e960"}.feather-facebook:before{content:"\e961"}.feather-fast-forward:before{content:"\e962"}.feather-feather:before{content:"\e963"}.feather-figma:before{content:"\e964"}.feather-file:before{content:"\e965"}.feather-file-minus:before{content:"\e966"}.feather-file-plus:before{content:"\e967"}.feather-file-text:before{content:"\e968"}.feather-film:before{content:"\e969"}.feather-filter:before{content:"\e96a"}.feather-flag:before{content:"\e96b"}.feather-folder:before{content:"\e96c"}.feather-folder-minus:before{content:"\e96d"}.feather-folder-plus:before{content:"\e96e"}.feather-framer:before{content:"\e96f"}.feather-frown:before{content:"\e970"}.feather-gift:before{content:"\e971"}.feather-git-branch:before{content:"\e972"}.feather-git-commit:before{content:"\e973"}.feather-git-merge:before{content:"\e974"}.feather-git-pull-request:before{content:"\e975"}.feather-github:before{content:"\e976"}.feather-gitlab:before{content:"\e977"}.feather-globe:before{content:"\e978"}.feather-grid:before{content:"\e979"}.feather-hard-drive:before{content:"\e97a"}.feather-hash:before{content:"\e97b"}.feather-headphones:before{content:"\e97c"}.feather-heart:before{content:"\e97d"}.feather-help-circle:before{content:"\e97e"}.feather-hexagon:before{content:"\e97f"}.feather-home:before{content:"\e980"}.feather-image:before{content:"\e981"}.feather-inbox:before{content:"\e982"}.feather-info:before{content:"\e983"}.feather-instagram:before{content:"\e984"}.feather-italic:before{content:"\e985"}.feather-key:before{content:"\e986"}.feather-layers:before{content:"\e987"}.feather-layout:before{content:"\e988"}.feather-life-buoy:before{content:"\e989"}.feather-link:before{content:"\e98a"}.feather-link-2:before{content:"\e98b"}.feather-linkedin:before{content:"\e98c"}.feather-list:before{content:"\e98d"}.feather-loader:before{content:"\e98e"}.feather-lock:before{content:"\e98f"}.feather-log-in:before{content:"\e990"}.feather-log-out:before{content:"\e991"}.feather-mail:before{content:"\e992"}.feather-map:before{content:"\e993"}.feather-map-pin:before{content:"\e994"}.feather-maximize:before{content:"\e995"}.feather-maximize-2:before{content:"\e996"}.feather-meh:before{content:"\e997"}.feather-menu:before{content:"\e998"}.feather-message-circle:before{content:"\e999"}.feather-message-square:before{content:"\e99a"}.feather-mic:before{content:"\e99b"}.feather-mic-off:before{content:"\e99c"}.feather-minimize:before{content:"\e99d"}.feather-minimize-2:before{content:"\e99e"}.feather-minus:before{content:"\e99f"}.feather-minus-circle:before{content:"\e9a0"}.feather-minus-square:before{content:"\e9a1"}.feather-monitor:before{content:"\e9a2"}.feather-moon:before{content:"\e9a3"}.feather-more-horizontal:before{content:"\e9a4"}.feather-more-vertical:before{content:"\e9a5"}.feather-mouse-pointer:before{content:"\e9a6"}.feather-move:before{content:"\e9a7"}.feather-music:before{content:"\e9a8"}.feather-navigation:before{content:"\e9a9"}.feather-navigation-2:before{content:"\e9aa"}.feather-octagon:before{content:"\e9ab"}.feather-package:before{content:"\e9ac"}.feather-paperclip:before{content:"\e9ad"}.feather-pause:before{content:"\e9ae"}.feather-pause-circle:before{content:"\e9af"}.feather-pen-tool:before{content:"\e9b0"}.feather-percent:before{content:"\e9b1"}.feather-phone:before{content:"\e9b2"}.feather-phone-call:before{content:"\e9b3"}.feather-phone-forwarded:before{content:"\e9b4"}.feather-phone-incoming:before{content:"\e9b5"}.feather-phone-missed:before{content:"\e9b6"}.feather-phone-off:before{content:"\e9b7"}.feather-phone-outgoing:before{content:"\e9b8"}.feather-pie-chart:before{content:"\e9b9"}.feather-play:before{content:"\e9ba"}.feather-play-circle:before{content:"\e9bb"}.feather-plus:before{content:"\e9bc"}.feather-plus-circle:before{content:"\e9bd"}.feather-plus-square:before{content:"\e9be"}.feather-pocket:before{content:"\e9bf"}.feather-power:before{content:"\e9c0"}.feather-printer:before{content:"\e9c1"}.feather-radio:before{content:"\e9c2"}.feather-refresh-ccw:before{content:"\e9c3"}.feather-refresh-cw:before{content:"\e9c4"}.feather-repeat:before{content:"\e9c5"}.feather-rewind:before{content:"\e9c6"}.feather-rotate-ccw:before{content:"\e9c7"}.feather-rotate-cw:before{content:"\e9c8"}.feather-rss:before{content:"\e9c9"}.feather-save:before{content:"\e9ca"}.feather-scissors:before{content:"\e9cb"}.feather-search:before{content:"\e9cc"}.feather-send:before{content:"\e9cd"}.feather-server:before{content:"\e9ce"}.feather-settings:before{content:"\e9cf"}.feather-share:before{content:"\e9d0"}.feather-share-2:before{content:"\e9d1"}.feather-shield:before{content:"\e9d2"}.feather-shield-off:before{content:"\e9d3"}.feather-shopping-bag:before{content:"\e9d4"}.feather-shopping-cart:before{content:"\e9d5"}.feather-shuffle:before{content:"\e9d6"}.feather-sidebar:before{content:"\e9d7"}.feather-skip-back:before{content:"\e9d8"}.feather-skip-forward:before{content:"\e9d9"}.feather-slack:before{content:"\e9da"}.feather-slash:before{content:"\e9db"}.feather-sliders:before{content:"\e9dc"}.feather-smartphone:before{content:"\e9dd"}.feather-smile:before{content:"\e9de"}.feather-speaker:before{content:"\e9df"}.feather-square:before{content:"\e9e0"}.feather-star:before{content:"\e9e1"}.feather-stop-circle:before{content:"\e9e2"}.feather-sun:before{content:"\e9e3"}.feather-sunrise:before{content:"\e9e4"}.feather-sunset:before{content:"\e9e5"}.feather-tablet:before{content:"\e9e6"}.feather-tag:before{content:"\e9e7"}.feather-target:before{content:"\e9e8"}.feather-terminal:before{content:"\e9e9"}.feather-thermometer:before{content:"\e9ea"}.feather-thumbs-down:before{content:"\e9eb"}.feather-thumbs-up:before{content:"\e9ec"}.feather-toggle-left:before{content:"\e9ed"}.feather-toggle-right:before{content:"\e9ee"}.feather-tool:before{content:"\e9ef"}.feather-trash:before{content:"\e9f0"}.feather-trash-2:before{content:"\e9f1"}.feather-trello:before{content:"\e9f2"}.feather-trending-down:before{content:"\e9f3"}.feather-trending-up:before{content:"\e9f4"}.feather-triangle:before{content:"\e9f5"}.feather-truck:before{content:"\e9f6"}.feather-tv:before{content:"\e9f7"}.feather-twitch:before{content:"\e9f8"}.feather-twitter:before{content:"\e9f9"}.feather-type:before{content:"\e9fa"}.feather-umbrella:before{content:"\e9fb"}.feather-underline:before{content:"\e9fc"}.feather-unlock:before{content:"\e9fd"}.feather-upload:before{content:"\e9fe"}.feather-upload-cloud:before{content:"\e9ff"}.feather-user:before{content:"\ea00"}.feather-user-check:before{content:"\ea01"}.feather-user-minus:before{content:"\ea02"}.feather-user-plus:before{content:"\ea03"}.feather-user-x:before{content:"\ea04"}.feather-users:before{content:"\ea05"}.feather-video:before{content:"\ea06"}.feather-video-off:before{content:"\ea07"}.feather-voicemail:before{content:"\ea08"}.feather-volume:before{content:"\ea09"}.feather-volume-1:before{content:"\ea0a"}.feather-volume-2:before{content:"\ea0b"}.feather-volume-x:before{content:"\ea0c"}.feather-watch:before{content:"\ea0d"}.feather-wifi:before{content:"\ea0e"}.feather-wifi-off:before{content:"\ea0f"}.feather-wind:before{content:"\ea10"}.feather-x:before{content:"\ea11"}.feather-x-circle:before{content:"\ea12"}.feather-x-octagon:before{content:"\ea13"}.feather-x-square:before{content:"\ea14"}.feather-youtube:before{content:"\ea15"}.feather-zap:before{content:"\ea16"}.feather-zap-off:before{content:"\ea17"}.feather-zoom-in:before{content:"\ea18"}.feather-zoom-out:before{content:"\ea19"}
+/*# sourceMappingURL=feather.min.css.map */
diff --git a/dasena-web/public/assets/admin/vendors/css/feather.min.css.map b/dasena-web/public/assets/admin/vendors/css/feather.min.css.map
new file mode 100644
index 0000000..d91c640
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/css/feather.min.css.map
@@ -0,0 +1 @@
+{"version":3,"sources":["feather.min.css"],"names":[],"mappings":"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","file":"feather.min.css","sourcesContent":[]}
\ No newline at end of file
diff --git a/dasena-web/public/assets/admin/vendors/css/flagicon.min.css b/dasena-web/public/assets/admin/vendors/css/flagicon.min.css
new file mode 100644
index 0000000..30a3c93
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/css/flagicon.min.css
@@ -0,0 +1,2 @@
+.fib{background-size:contain;background-position:50%;background-repeat:no-repeat}.fi{background-size:contain;background-position:50%;background-repeat:no-repeat;position:relative;display:inline-block;width:1.33333333em;line-height:1em}.fi:before{content:"\00a0"}.fi.fis{width:1em}.fi-xx{background-image:url(../img/flags/4x3/xx.svg)}.fi-xx.fis{background-image:url(../img/flags/1x1/xx.svg)}.fi-ad{background-image:url(../img/flags/4x3/ad.svg)}.fi-ad.fis{background-image:url(../img/flags/1x1/ad.svg)}.fi-ae{background-image:url(../img/flags/4x3/ae.svg)}.fi-ae.fis{background-image:url(../img/flags/1x1/ae.svg)}.fi-af{background-image:url(../img/flags/4x3/af.svg)}.fi-af.fis{background-image:url(../img/flags/1x1/af.svg)}.fi-ag{background-image:url(../img/flags/4x3/ag.svg)}.fi-ag.fis{background-image:url(../img/flags/1x1/ag.svg)}.fi-ai{background-image:url(../img/flags/4x3/ai.svg)}.fi-ai.fis{background-image:url(../img/flags/1x1/ai.svg)}.fi-al{background-image:url(../img/flags/4x3/al.svg)}.fi-al.fis{background-image:url(../img/flags/1x1/al.svg)}.fi-am{background-image:url(../img/flags/4x3/am.svg)}.fi-am.fis{background-image:url(../img/flags/1x1/am.svg)}.fi-ao{background-image:url(../img/flags/4x3/ao.svg)}.fi-ao.fis{background-image:url(../img/flags/1x1/ao.svg)}.fi-aq{background-image:url(../img/flags/4x3/aq.svg)}.fi-aq.fis{background-image:url(../img/flags/1x1/aq.svg)}.fi-ar{background-image:url(../img/flags/4x3/ar.svg)}.fi-ar.fis{background-image:url(../img/flags/1x1/ar.svg)}.fi-as{background-image:url(../img/flags/4x3/as.svg)}.fi-as.fis{background-image:url(../img/flags/1x1/as.svg)}.fi-at{background-image:url(../img/flags/4x3/at.svg)}.fi-at.fis{background-image:url(../img/flags/1x1/at.svg)}.fi-au{background-image:url(../img/flags/4x3/au.svg)}.fi-au.fis{background-image:url(../img/flags/1x1/au.svg)}.fi-aw{background-image:url(../img/flags/4x3/aw.svg)}.fi-aw.fis{background-image:url(../img/flags/1x1/aw.svg)}.fi-ax{background-image:url(../img/flags/4x3/ax.svg)}.fi-ax.fis{background-image:url(../img/flags/1x1/ax.svg)}.fi-az{background-image:url(../img/flags/4x3/az.svg)}.fi-az.fis{background-image:url(../img/flags/1x1/az.svg)}.fi-ba{background-image:url(../img/flags/4x3/ba.svg)}.fi-ba.fis{background-image:url(../img/flags/1x1/ba.svg)}.fi-bb{background-image:url(../img/flags/4x3/bb.svg)}.fi-bb.fis{background-image:url(../img/flags/1x1/bb.svg)}.fi-bd{background-image:url(../img/flags/4x3/bd.svg)}.fi-bd.fis{background-image:url(../img/flags/1x1/bd.svg)}.fi-be{background-image:url(../img/flags/4x3/be.svg)}.fi-be.fis{background-image:url(../img/flags/1x1/be.svg)}.fi-bf{background-image:url(../img/flags/4x3/bf.svg)}.fi-bf.fis{background-image:url(../img/flags/1x1/bf.svg)}.fi-bg{background-image:url(../img/flags/4x3/bg.svg)}.fi-bg.fis{background-image:url(../img/flags/1x1/bg.svg)}.fi-bh{background-image:url(../img/flags/4x3/bh.svg)}.fi-bh.fis{background-image:url(../img/flags/1x1/bh.svg)}.fi-bi{background-image:url(../img/flags/4x3/bi.svg)}.fi-bi.fis{background-image:url(../img/flags/1x1/bi.svg)}.fi-bj{background-image:url(../img/flags/4x3/bj.svg)}.fi-bj.fis{background-image:url(../img/flags/1x1/bj.svg)}.fi-bl{background-image:url(../img/flags/4x3/bl.svg)}.fi-bl.fis{background-image:url(../img/flags/1x1/bl.svg)}.fi-bm{background-image:url(../img/flags/4x3/bm.svg)}.fi-bm.fis{background-image:url(../img/flags/1x1/bm.svg)}.fi-bn{background-image:url(../img/flags/4x3/bn.svg)}.fi-bn.fis{background-image:url(../img/flags/1x1/bn.svg)}.fi-bo{background-image:url(../img/flags/4x3/bo.svg)}.fi-bo.fis{background-image:url(../img/flags/1x1/bo.svg)}.fi-bq{background-image:url(../img/flags/4x3/bq.svg)}.fi-bq.fis{background-image:url(../img/flags/1x1/bq.svg)}.fi-br{background-image:url(../img/flags/4x3/br.svg)}.fi-br.fis{background-image:url(../img/flags/1x1/br.svg)}.fi-bs{background-image:url(../img/flags/4x3/bs.svg)}.fi-bs.fis{background-image:url(../img/flags/1x1/bs.svg)}.fi-bt{background-image:url(../img/flags/4x3/bt.svg)}.fi-bt.fis{background-image:url(../img/flags/1x1/bt.svg)}.fi-bv{background-image:url(../img/flags/4x3/bv.svg)}.fi-bv.fis{background-image:url(../img/flags/1x1/bv.svg)}.fi-bw{background-image:url(../img/flags/4x3/bw.svg)}.fi-bw.fis{background-image:url(../img/flags/1x1/bw.svg)}.fi-by{background-image:url(../img/flags/4x3/by.svg)}.fi-by.fis{background-image:url(../img/flags/1x1/by.svg)}.fi-bz{background-image:url(../img/flags/4x3/bz.svg)}.fi-bz.fis{background-image:url(../img/flags/1x1/bz.svg)}.fi-ca{background-image:url(../img/flags/4x3/ca.svg)}.fi-ca.fis{background-image:url(../img/flags/1x1/ca.svg)}.fi-cc{background-image:url(../img/flags/4x3/cc.svg)}.fi-cc.fis{background-image:url(../img/flags/1x1/cc.svg)}.fi-cd{background-image:url(../img/flags/4x3/cd.svg)}.fi-cd.fis{background-image:url(../img/flags/1x1/cd.svg)}.fi-cf{background-image:url(../img/flags/4x3/cf.svg)}.fi-cf.fis{background-image:url(../img/flags/1x1/cf.svg)}.fi-cg{background-image:url(../img/flags/4x3/cg.svg)}.fi-cg.fis{background-image:url(../img/flags/1x1/cg.svg)}.fi-ch{background-image:url(../img/flags/4x3/ch.svg)}.fi-ch.fis{background-image:url(../img/flags/1x1/ch.svg)}.fi-ci{background-image:url(../img/flags/4x3/ci.svg)}.fi-ci.fis{background-image:url(../img/flags/1x1/ci.svg)}.fi-ck{background-image:url(../img/flags/4x3/ck.svg)}.fi-ck.fis{background-image:url(../img/flags/1x1/ck.svg)}.fi-cl{background-image:url(../img/flags/4x3/cl.svg)}.fi-cl.fis{background-image:url(../img/flags/1x1/cl.svg)}.fi-cm{background-image:url(../img/flags/4x3/cm.svg)}.fi-cm.fis{background-image:url(../img/flags/1x1/cm.svg)}.fi-cn{background-image:url(../img/flags/4x3/cn.svg)}.fi-cn.fis{background-image:url(../img/flags/1x1/cn.svg)}.fi-co{background-image:url(../img/flags/4x3/co.svg)}.fi-co.fis{background-image:url(../img/flags/1x1/co.svg)}.fi-cr{background-image:url(../img/flags/4x3/cr.svg)}.fi-cr.fis{background-image:url(../img/flags/1x1/cr.svg)}.fi-cu{background-image:url(../img/flags/4x3/cu.svg)}.fi-cu.fis{background-image:url(../img/flags/1x1/cu.svg)}.fi-cv{background-image:url(../img/flags/4x3/cv.svg)}.fi-cv.fis{background-image:url(../img/flags/1x1/cv.svg)}.fi-cw{background-image:url(../img/flags/4x3/cw.svg)}.fi-cw.fis{background-image:url(../img/flags/1x1/cw.svg)}.fi-cx{background-image:url(../img/flags/4x3/cx.svg)}.fi-cx.fis{background-image:url(../img/flags/1x1/cx.svg)}.fi-cy{background-image:url(../img/flags/4x3/cy.svg)}.fi-cy.fis{background-image:url(../img/flags/1x1/cy.svg)}.fi-cz{background-image:url(../img/flags/4x3/cz.svg)}.fi-cz.fis{background-image:url(../img/flags/1x1/cz.svg)}.fi-de{background-image:url(../img/flags/4x3/de.svg)}.fi-de.fis{background-image:url(../img/flags/1x1/de.svg)}.fi-dj{background-image:url(../img/flags/4x3/dj.svg)}.fi-dj.fis{background-image:url(../img/flags/1x1/dj.svg)}.fi-dk{background-image:url(../img/flags/4x3/dk.svg)}.fi-dk.fis{background-image:url(../img/flags/1x1/dk.svg)}.fi-dm{background-image:url(../img/flags/4x3/dm.svg)}.fi-dm.fis{background-image:url(../img/flags/1x1/dm.svg)}.fi-do{background-image:url(../img/flags/4x3/do.svg)}.fi-do.fis{background-image:url(../img/flags/1x1/do.svg)}.fi-dz{background-image:url(../img/flags/4x3/dz.svg)}.fi-dz.fis{background-image:url(../img/flags/1x1/dz.svg)}.fi-ec{background-image:url(../img/flags/4x3/ec.svg)}.fi-ec.fis{background-image:url(../img/flags/1x1/ec.svg)}.fi-ee{background-image:url(../img/flags/4x3/ee.svg)}.fi-ee.fis{background-image:url(../img/flags/1x1/ee.svg)}.fi-eg{background-image:url(../img/flags/4x3/eg.svg)}.fi-eg.fis{background-image:url(../img/flags/1x1/eg.svg)}.fi-eh{background-image:url(../img/flags/4x3/eh.svg)}.fi-eh.fis{background-image:url(../img/flags/1x1/eh.svg)}.fi-er{background-image:url(../img/flags/4x3/er.svg)}.fi-er.fis{background-image:url(../img/flags/1x1/er.svg)}.fi-es{background-image:url(../img/flags/4x3/es.svg)}.fi-es.fis{background-image:url(../img/flags/1x1/es.svg)}.fi-et{background-image:url(../img/flags/4x3/et.svg)}.fi-et.fis{background-image:url(../img/flags/1x1/et.svg)}.fi-fi{background-image:url(../img/flags/4x3/fi.svg)}.fi-fi.fis{background-image:url(../img/flags/1x1/fi.svg)}.fi-fj{background-image:url(../img/flags/4x3/fj.svg)}.fi-fj.fis{background-image:url(../img/flags/1x1/fj.svg)}.fi-fk{background-image:url(../img/flags/4x3/fk.svg)}.fi-fk.fis{background-image:url(../img/flags/1x1/fk.svg)}.fi-fm{background-image:url(../img/flags/4x3/fm.svg)}.fi-fm.fis{background-image:url(../img/flags/1x1/fm.svg)}.fi-fo{background-image:url(../img/flags/4x3/fo.svg)}.fi-fo.fis{background-image:url(../img/flags/1x1/fo.svg)}.fi-fr{background-image:url(../img/flags/4x3/fr.svg)}.fi-fr.fis{background-image:url(../img/flags/1x1/fr.svg)}.fi-ga{background-image:url(../img/flags/4x3/ga.svg)}.fi-ga.fis{background-image:url(../img/flags/1x1/ga.svg)}.fi-gb{background-image:url(../img/flags/4x3/gb.svg)}.fi-gb.fis{background-image:url(../img/flags/1x1/gb.svg)}.fi-gd{background-image:url(../img/flags/4x3/gd.svg)}.fi-gd.fis{background-image:url(../img/flags/1x1/gd.svg)}.fi-ge{background-image:url(../img/flags/4x3/ge.svg)}.fi-ge.fis{background-image:url(../img/flags/1x1/ge.svg)}.fi-gf{background-image:url(../img/flags/4x3/gf.svg)}.fi-gf.fis{background-image:url(../img/flags/1x1/gf.svg)}.fi-gg{background-image:url(../img/flags/4x3/gg.svg)}.fi-gg.fis{background-image:url(../img/flags/1x1/gg.svg)}.fi-gh{background-image:url(../img/flags/4x3/gh.svg)}.fi-gh.fis{background-image:url(../img/flags/1x1/gh.svg)}.fi-gi{background-image:url(../img/flags/4x3/gi.svg)}.fi-gi.fis{background-image:url(../img/flags/1x1/gi.svg)}.fi-gl{background-image:url(../img/flags/4x3/gl.svg)}.fi-gl.fis{background-image:url(../img/flags/1x1/gl.svg)}.fi-gm{background-image:url(../img/flags/4x3/gm.svg)}.fi-gm.fis{background-image:url(../img/flags/1x1/gm.svg)}.fi-gn{background-image:url(../img/flags/4x3/gn.svg)}.fi-gn.fis{background-image:url(../img/flags/1x1/gn.svg)}.fi-gp{background-image:url(../img/flags/4x3/gp.svg)}.fi-gp.fis{background-image:url(../img/flags/1x1/gp.svg)}.fi-gq{background-image:url(../img/flags/4x3/gq.svg)}.fi-gq.fis{background-image:url(../img/flags/1x1/gq.svg)}.fi-gr{background-image:url(../img/flags/4x3/gr.svg)}.fi-gr.fis{background-image:url(../img/flags/1x1/gr.svg)}.fi-gs{background-image:url(../img/flags/4x3/gs.svg)}.fi-gs.fis{background-image:url(../img/flags/1x1/gs.svg)}.fi-gt{background-image:url(../img/flags/4x3/gt.svg)}.fi-gt.fis{background-image:url(../img/flags/1x1/gt.svg)}.fi-gu{background-image:url(../img/flags/4x3/gu.svg)}.fi-gu.fis{background-image:url(../img/flags/1x1/gu.svg)}.fi-gw{background-image:url(../img/flags/4x3/gw.svg)}.fi-gw.fis{background-image:url(../img/flags/1x1/gw.svg)}.fi-gy{background-image:url(../img/flags/4x3/gy.svg)}.fi-gy.fis{background-image:url(../img/flags/1x1/gy.svg)}.fi-hk{background-image:url(../img/flags/4x3/hk.svg)}.fi-hk.fis{background-image:url(../img/flags/1x1/hk.svg)}.fi-hm{background-image:url(../img/flags/4x3/hm.svg)}.fi-hm.fis{background-image:url(../img/flags/1x1/hm.svg)}.fi-hn{background-image:url(../img/flags/4x3/hn.svg)}.fi-hn.fis{background-image:url(../img/flags/1x1/hn.svg)}.fi-hr{background-image:url(../img/flags/4x3/hr.svg)}.fi-hr.fis{background-image:url(../img/flags/1x1/hr.svg)}.fi-ht{background-image:url(../img/flags/4x3/ht.svg)}.fi-ht.fis{background-image:url(../img/flags/1x1/ht.svg)}.fi-hu{background-image:url(../img/flags/4x3/hu.svg)}.fi-hu.fis{background-image:url(../img/flags/1x1/hu.svg)}.fi-id{background-image:url(../img/flags/4x3/id.svg)}.fi-id.fis{background-image:url(../img/flags/1x1/id.svg)}.fi-ie{background-image:url(../img/flags/4x3/ie.svg)}.fi-ie.fis{background-image:url(../img/flags/1x1/ie.svg)}.fi-il{background-image:url(../img/flags/4x3/il.svg)}.fi-il.fis{background-image:url(../img/flags/1x1/il.svg)}.fi-im{background-image:url(../img/flags/4x3/im.svg)}.fi-im.fis{background-image:url(../img/flags/1x1/im.svg)}.fi-in{background-image:url(../img/flags/4x3/in.svg)}.fi-in.fis{background-image:url(../img/flags/1x1/in.svg)}.fi-io{background-image:url(../img/flags/4x3/io.svg)}.fi-io.fis{background-image:url(../img/flags/1x1/io.svg)}.fi-iq{background-image:url(../img/flags/4x3/iq.svg)}.fi-iq.fis{background-image:url(../img/flags/1x1/iq.svg)}.fi-ir{background-image:url(../img/flags/4x3/ir.svg)}.fi-ir.fis{background-image:url(../img/flags/1x1/ir.svg)}.fi-is{background-image:url(../img/flags/4x3/is.svg)}.fi-is.fis{background-image:url(../img/flags/1x1/is.svg)}.fi-it{background-image:url(../img/flags/4x3/it.svg)}.fi-it.fis{background-image:url(../img/flags/1x1/it.svg)}.fi-je{background-image:url(../img/flags/4x3/je.svg)}.fi-je.fis{background-image:url(../img/flags/1x1/je.svg)}.fi-jm{background-image:url(../img/flags/4x3/jm.svg)}.fi-jm.fis{background-image:url(../img/flags/1x1/jm.svg)}.fi-jo{background-image:url(../img/flags/4x3/jo.svg)}.fi-jo.fis{background-image:url(../img/flags/1x1/jo.svg)}.fi-jp{background-image:url(../img/flags/4x3/jp.svg)}.fi-jp.fis{background-image:url(../img/flags/1x1/jp.svg)}.fi-ke{background-image:url(../img/flags/4x3/ke.svg)}.fi-ke.fis{background-image:url(../img/flags/1x1/ke.svg)}.fi-kg{background-image:url(../img/flags/4x3/kg.svg)}.fi-kg.fis{background-image:url(../img/flags/1x1/kg.svg)}.fi-kh{background-image:url(../img/flags/4x3/kh.svg)}.fi-kh.fis{background-image:url(../img/flags/1x1/kh.svg)}.fi-ki{background-image:url(../img/flags/4x3/ki.svg)}.fi-ki.fis{background-image:url(../img/flags/1x1/ki.svg)}.fi-km{background-image:url(../img/flags/4x3/km.svg)}.fi-km.fis{background-image:url(../img/flags/1x1/km.svg)}.fi-kn{background-image:url(../img/flags/4x3/kn.svg)}.fi-kn.fis{background-image:url(../img/flags/1x1/kn.svg)}.fi-kp{background-image:url(../img/flags/4x3/kp.svg)}.fi-kp.fis{background-image:url(../img/flags/1x1/kp.svg)}.fi-kr{background-image:url(../img/flags/4x3/kr.svg)}.fi-kr.fis{background-image:url(../img/flags/1x1/kr.svg)}.fi-kw{background-image:url(../img/flags/4x3/kw.svg)}.fi-kw.fis{background-image:url(../img/flags/1x1/kw.svg)}.fi-ky{background-image:url(../img/flags/4x3/ky.svg)}.fi-ky.fis{background-image:url(../img/flags/1x1/ky.svg)}.fi-kz{background-image:url(../img/flags/4x3/kz.svg)}.fi-kz.fis{background-image:url(../img/flags/1x1/kz.svg)}.fi-la{background-image:url(../img/flags/4x3/la.svg)}.fi-la.fis{background-image:url(../img/flags/1x1/la.svg)}.fi-lb{background-image:url(../img/flags/4x3/lb.svg)}.fi-lb.fis{background-image:url(../img/flags/1x1/lb.svg)}.fi-lc{background-image:url(../img/flags/4x3/lc.svg)}.fi-lc.fis{background-image:url(../img/flags/1x1/lc.svg)}.fi-li{background-image:url(../img/flags/4x3/li.svg)}.fi-li.fis{background-image:url(../img/flags/1x1/li.svg)}.fi-lk{background-image:url(../img/flags/4x3/lk.svg)}.fi-lk.fis{background-image:url(../img/flags/1x1/lk.svg)}.fi-lr{background-image:url(../img/flags/4x3/lr.svg)}.fi-lr.fis{background-image:url(../img/flags/1x1/lr.svg)}.fi-ls{background-image:url(../img/flags/4x3/ls.svg)}.fi-ls.fis{background-image:url(../img/flags/1x1/ls.svg)}.fi-lt{background-image:url(../img/flags/4x3/lt.svg)}.fi-lt.fis{background-image:url(../img/flags/1x1/lt.svg)}.fi-lu{background-image:url(../img/flags/4x3/lu.svg)}.fi-lu.fis{background-image:url(../img/flags/1x1/lu.svg)}.fi-lv{background-image:url(../img/flags/4x3/lv.svg)}.fi-lv.fis{background-image:url(../img/flags/1x1/lv.svg)}.fi-ly{background-image:url(../img/flags/4x3/ly.svg)}.fi-ly.fis{background-image:url(../img/flags/1x1/ly.svg)}.fi-ma{background-image:url(../img/flags/4x3/ma.svg)}.fi-ma.fis{background-image:url(../img/flags/1x1/ma.svg)}.fi-mc{background-image:url(../img/flags/4x3/mc.svg)}.fi-mc.fis{background-image:url(../img/flags/1x1/mc.svg)}.fi-md{background-image:url(../img/flags/4x3/md.svg)}.fi-md.fis{background-image:url(../img/flags/1x1/md.svg)}.fi-me{background-image:url(../img/flags/4x3/me.svg)}.fi-me.fis{background-image:url(../img/flags/1x1/me.svg)}.fi-mf{background-image:url(../img/flags/4x3/mf.svg)}.fi-mf.fis{background-image:url(../img/flags/1x1/mf.svg)}.fi-mg{background-image:url(../img/flags/4x3/mg.svg)}.fi-mg.fis{background-image:url(../img/flags/1x1/mg.svg)}.fi-mh{background-image:url(../img/flags/4x3/mh.svg)}.fi-mh.fis{background-image:url(../img/flags/1x1/mh.svg)}.fi-mk{background-image:url(../img/flags/4x3/mk.svg)}.fi-mk.fis{background-image:url(../img/flags/1x1/mk.svg)}.fi-ml{background-image:url(../img/flags/4x3/ml.svg)}.fi-ml.fis{background-image:url(../img/flags/1x1/ml.svg)}.fi-mm{background-image:url(../img/flags/4x3/mm.svg)}.fi-mm.fis{background-image:url(../img/flags/1x1/mm.svg)}.fi-mn{background-image:url(../img/flags/4x3/mn.svg)}.fi-mn.fis{background-image:url(../img/flags/1x1/mn.svg)}.fi-mo{background-image:url(../img/flags/4x3/mo.svg)}.fi-mo.fis{background-image:url(../img/flags/1x1/mo.svg)}.fi-mp{background-image:url(../img/flags/4x3/mp.svg)}.fi-mp.fis{background-image:url(../img/flags/1x1/mp.svg)}.fi-mq{background-image:url(../img/flags/4x3/mq.svg)}.fi-mq.fis{background-image:url(../img/flags/1x1/mq.svg)}.fi-mr{background-image:url(../img/flags/4x3/mr.svg)}.fi-mr.fis{background-image:url(../img/flags/1x1/mr.svg)}.fi-ms{background-image:url(../img/flags/4x3/ms.svg)}.fi-ms.fis{background-image:url(../img/flags/1x1/ms.svg)}.fi-mt{background-image:url(../img/flags/4x3/mt.svg)}.fi-mt.fis{background-image:url(../img/flags/1x1/mt.svg)}.fi-mu{background-image:url(../img/flags/4x3/mu.svg)}.fi-mu.fis{background-image:url(../img/flags/1x1/mu.svg)}.fi-mv{background-image:url(../img/flags/4x3/mv.svg)}.fi-mv.fis{background-image:url(../img/flags/1x1/mv.svg)}.fi-mw{background-image:url(../img/flags/4x3/mw.svg)}.fi-mw.fis{background-image:url(../img/flags/1x1/mw.svg)}.fi-mx{background-image:url(../img/flags/4x3/mx.svg)}.fi-mx.fis{background-image:url(../img/flags/1x1/mx.svg)}.fi-my{background-image:url(../img/flags/4x3/my.svg)}.fi-my.fis{background-image:url(../img/flags/1x1/my.svg)}.fi-mz{background-image:url(../img/flags/4x3/mz.svg)}.fi-mz.fis{background-image:url(../img/flags/1x1/mz.svg)}.fi-na{background-image:url(../img/flags/4x3/na.svg)}.fi-na.fis{background-image:url(../img/flags/1x1/na.svg)}.fi-nc{background-image:url(../img/flags/4x3/nc.svg)}.fi-nc.fis{background-image:url(../img/flags/1x1/nc.svg)}.fi-ne{background-image:url(../img/flags/4x3/ne.svg)}.fi-ne.fis{background-image:url(../img/flags/1x1/ne.svg)}.fi-nf{background-image:url(../img/flags/4x3/nf.svg)}.fi-nf.fis{background-image:url(../img/flags/1x1/nf.svg)}.fi-ng{background-image:url(../img/flags/4x3/ng.svg)}.fi-ng.fis{background-image:url(../img/flags/1x1/ng.svg)}.fi-ni{background-image:url(../img/flags/4x3/ni.svg)}.fi-ni.fis{background-image:url(../img/flags/1x1/ni.svg)}.fi-nl{background-image:url(../img/flags/4x3/nl.svg)}.fi-nl.fis{background-image:url(../img/flags/1x1/nl.svg)}.fi-no{background-image:url(../img/flags/4x3/no.svg)}.fi-no.fis{background-image:url(../img/flags/1x1/no.svg)}.fi-np{background-image:url(../img/flags/4x3/np.svg)}.fi-np.fis{background-image:url(../img/flags/1x1/np.svg)}.fi-nr{background-image:url(../img/flags/4x3/nr.svg)}.fi-nr.fis{background-image:url(../img/flags/1x1/nr.svg)}.fi-nu{background-image:url(../img/flags/4x3/nu.svg)}.fi-nu.fis{background-image:url(../img/flags/1x1/nu.svg)}.fi-nz{background-image:url(../img/flags/4x3/nz.svg)}.fi-nz.fis{background-image:url(../img/flags/1x1/nz.svg)}.fi-om{background-image:url(../img/flags/4x3/om.svg)}.fi-om.fis{background-image:url(../img/flags/1x1/om.svg)}.fi-pa{background-image:url(../img/flags/4x3/pa.svg)}.fi-pa.fis{background-image:url(../img/flags/1x1/pa.svg)}.fi-pe{background-image:url(../img/flags/4x3/pe.svg)}.fi-pe.fis{background-image:url(../img/flags/1x1/pe.svg)}.fi-pf{background-image:url(../img/flags/4x3/pf.svg)}.fi-pf.fis{background-image:url(../img/flags/1x1/pf.svg)}.fi-pg{background-image:url(../img/flags/4x3/pg.svg)}.fi-pg.fis{background-image:url(../img/flags/1x1/pg.svg)}.fi-ph{background-image:url(../img/flags/4x3/ph.svg)}.fi-ph.fis{background-image:url(../img/flags/1x1/ph.svg)}.fi-pk{background-image:url(../img/flags/4x3/pk.svg)}.fi-pk.fis{background-image:url(../img/flags/1x1/pk.svg)}.fi-pl{background-image:url(../img/flags/4x3/pl.svg)}.fi-pl.fis{background-image:url(../img/flags/1x1/pl.svg)}.fi-pm{background-image:url(../img/flags/4x3/pm.svg)}.fi-pm.fis{background-image:url(../img/flags/1x1/pm.svg)}.fi-pn{background-image:url(../img/flags/4x3/pn.svg)}.fi-pn.fis{background-image:url(../img/flags/1x1/pn.svg)}.fi-pr{background-image:url(../img/flags/4x3/pr.svg)}.fi-pr.fis{background-image:url(../img/flags/1x1/pr.svg)}.fi-ps{background-image:url(../img/flags/4x3/ps.svg)}.fi-ps.fis{background-image:url(../img/flags/1x1/ps.svg)}.fi-pt{background-image:url(../img/flags/4x3/pt.svg)}.fi-pt.fis{background-image:url(../img/flags/1x1/pt.svg)}.fi-pw{background-image:url(../img/flags/4x3/pw.svg)}.fi-pw.fis{background-image:url(../img/flags/1x1/pw.svg)}.fi-py{background-image:url(../img/flags/4x3/py.svg)}.fi-py.fis{background-image:url(../img/flags/1x1/py.svg)}.fi-qa{background-image:url(../img/flags/4x3/qa.svg)}.fi-qa.fis{background-image:url(../img/flags/1x1/qa.svg)}.fi-re{background-image:url(../img/flags/4x3/re.svg)}.fi-re.fis{background-image:url(../img/flags/1x1/re.svg)}.fi-ro{background-image:url(../img/flags/4x3/ro.svg)}.fi-ro.fis{background-image:url(../img/flags/1x1/ro.svg)}.fi-rs{background-image:url(../img/flags/4x3/rs.svg)}.fi-rs.fis{background-image:url(../img/flags/1x1/rs.svg)}.fi-ru{background-image:url(../img/flags/4x3/ru.svg)}.fi-ru.fis{background-image:url(../img/flags/1x1/ru.svg)}.fi-rw{background-image:url(../img/flags/4x3/rw.svg)}.fi-rw.fis{background-image:url(../img/flags/1x1/rw.svg)}.fi-sa{background-image:url(../img/flags/4x3/sa.svg)}.fi-sa.fis{background-image:url(../img/flags/1x1/sa.svg)}.fi-sb{background-image:url(../img/flags/4x3/sb.svg)}.fi-sb.fis{background-image:url(../img/flags/1x1/sb.svg)}.fi-sc{background-image:url(../img/flags/4x3/sc.svg)}.fi-sc.fis{background-image:url(../img/flags/1x1/sc.svg)}.fi-sd{background-image:url(../img/flags/4x3/sd.svg)}.fi-sd.fis{background-image:url(../img/flags/1x1/sd.svg)}.fi-se{background-image:url(../img/flags/4x3/se.svg)}.fi-se.fis{background-image:url(../img/flags/1x1/se.svg)}.fi-sg{background-image:url(../img/flags/4x3/sg.svg)}.fi-sg.fis{background-image:url(../img/flags/1x1/sg.svg)}.fi-sh{background-image:url(../img/flags/4x3/sh.svg)}.fi-sh.fis{background-image:url(../img/flags/1x1/sh.svg)}.fi-si{background-image:url(../img/flags/4x3/si.svg)}.fi-si.fis{background-image:url(../img/flags/1x1/si.svg)}.fi-sj{background-image:url(../img/flags/4x3/sj.svg)}.fi-sj.fis{background-image:url(../img/flags/1x1/sj.svg)}.fi-sk{background-image:url(../img/flags/4x3/sk.svg)}.fi-sk.fis{background-image:url(../img/flags/1x1/sk.svg)}.fi-sl{background-image:url(../img/flags/4x3/sl.svg)}.fi-sl.fis{background-image:url(../img/flags/1x1/sl.svg)}.fi-sm{background-image:url(../img/flags/4x3/sm.svg)}.fi-sm.fis{background-image:url(../img/flags/1x1/sm.svg)}.fi-sn{background-image:url(../img/flags/4x3/sn.svg)}.fi-sn.fis{background-image:url(../img/flags/1x1/sn.svg)}.fi-so{background-image:url(../img/flags/4x3/so.svg)}.fi-so.fis{background-image:url(../img/flags/1x1/so.svg)}.fi-sr{background-image:url(../img/flags/4x3/sr.svg)}.fi-sr.fis{background-image:url(../img/flags/1x1/sr.svg)}.fi-ss{background-image:url(../img/flags/4x3/ss.svg)}.fi-ss.fis{background-image:url(../img/flags/1x1/ss.svg)}.fi-st{background-image:url(../img/flags/4x3/st.svg)}.fi-st.fis{background-image:url(../img/flags/1x1/st.svg)}.fi-sv{background-image:url(../img/flags/4x3/sv.svg)}.fi-sv.fis{background-image:url(../img/flags/1x1/sv.svg)}.fi-sx{background-image:url(../img/flags/4x3/sx.svg)}.fi-sx.fis{background-image:url(../img/flags/1x1/sx.svg)}.fi-sy{background-image:url(../img/flags/4x3/sy.svg)}.fi-sy.fis{background-image:url(../img/flags/1x1/sy.svg)}.fi-sz{background-image:url(../img/flags/4x3/sz.svg)}.fi-sz.fis{background-image:url(../img/flags/1x1/sz.svg)}.fi-tc{background-image:url(../img/flags/4x3/tc.svg)}.fi-tc.fis{background-image:url(../img/flags/1x1/tc.svg)}.fi-td{background-image:url(../img/flags/4x3/td.svg)}.fi-td.fis{background-image:url(../img/flags/1x1/td.svg)}.fi-tf{background-image:url(../img/flags/4x3/tf.svg)}.fi-tf.fis{background-image:url(../img/flags/1x1/tf.svg)}.fi-tg{background-image:url(../img/flags/4x3/tg.svg)}.fi-tg.fis{background-image:url(../img/flags/1x1/tg.svg)}.fi-th{background-image:url(../img/flags/4x3/th.svg)}.fi-th.fis{background-image:url(../img/flags/1x1/th.svg)}.fi-tj{background-image:url(../img/flags/4x3/tj.svg)}.fi-tj.fis{background-image:url(../img/flags/1x1/tj.svg)}.fi-tk{background-image:url(../img/flags/4x3/tk.svg)}.fi-tk.fis{background-image:url(../img/flags/1x1/tk.svg)}.fi-tl{background-image:url(../img/flags/4x3/tl.svg)}.fi-tl.fis{background-image:url(../img/flags/1x1/tl.svg)}.fi-tm{background-image:url(../img/flags/4x3/tm.svg)}.fi-tm.fis{background-image:url(../img/flags/1x1/tm.svg)}.fi-tn{background-image:url(../img/flags/4x3/tn.svg)}.fi-tn.fis{background-image:url(../img/flags/1x1/tn.svg)}.fi-to{background-image:url(../img/flags/4x3/to.svg)}.fi-to.fis{background-image:url(../img/flags/1x1/to.svg)}.fi-tr{background-image:url(../img/flags/4x3/tr.svg)}.fi-tr.fis{background-image:url(../img/flags/1x1/tr.svg)}.fi-tt{background-image:url(../img/flags/4x3/tt.svg)}.fi-tt.fis{background-image:url(../img/flags/1x1/tt.svg)}.fi-tv{background-image:url(../img/flags/4x3/tv.svg)}.fi-tv.fis{background-image:url(../img/flags/1x1/tv.svg)}.fi-tw{background-image:url(../img/flags/4x3/tw.svg)}.fi-tw.fis{background-image:url(../img/flags/1x1/tw.svg)}.fi-tz{background-image:url(../img/flags/4x3/tz.svg)}.fi-tz.fis{background-image:url(../img/flags/1x1/tz.svg)}.fi-ua{background-image:url(../img/flags/4x3/ua.svg)}.fi-ua.fis{background-image:url(../img/flags/1x1/ua.svg)}.fi-ug{background-image:url(../img/flags/4x3/ug.svg)}.fi-ug.fis{background-image:url(../img/flags/1x1/ug.svg)}.fi-um{background-image:url(../img/flags/4x3/um.svg)}.fi-um.fis{background-image:url(../img/flags/1x1/um.svg)}.fi-us{background-image:url(../img/flags/4x3/us.svg)}.fi-us.fis{background-image:url(../img/flags/1x1/us.svg)}.fi-uy{background-image:url(../img/flags/4x3/uy.svg)}.fi-uy.fis{background-image:url(../img/flags/1x1/uy.svg)}.fi-uz{background-image:url(../img/flags/4x3/uz.svg)}.fi-uz.fis{background-image:url(../img/flags/1x1/uz.svg)}.fi-va{background-image:url(../img/flags/4x3/va.svg)}.fi-va.fis{background-image:url(../img/flags/1x1/va.svg)}.fi-vc{background-image:url(../img/flags/4x3/vc.svg)}.fi-vc.fis{background-image:url(../img/flags/1x1/vc.svg)}.fi-ve{background-image:url(../img/flags/4x3/ve.svg)}.fi-ve.fis{background-image:url(../img/flags/1x1/ve.svg)}.fi-vg{background-image:url(../img/flags/4x3/vg.svg)}.fi-vg.fis{background-image:url(../img/flags/1x1/vg.svg)}.fi-vi{background-image:url(../img/flags/4x3/vi.svg)}.fi-vi.fis{background-image:url(../img/flags/1x1/vi.svg)}.fi-vn{background-image:url(../img/flags/4x3/vn.svg)}.fi-vn.fis{background-image:url(../img/flags/1x1/vn.svg)}.fi-vu{background-image:url(../img/flags/4x3/vu.svg)}.fi-vu.fis{background-image:url(../img/flags/1x1/vu.svg)}.fi-wf{background-image:url(../img/flags/4x3/wf.svg)}.fi-wf.fis{background-image:url(../img/flags/1x1/wf.svg)}.fi-ws{background-image:url(../img/flags/4x3/ws.svg)}.fi-ws.fis{background-image:url(../img/flags/1x1/ws.svg)}.fi-ye{background-image:url(../img/flags/4x3/ye.svg)}.fi-ye.fis{background-image:url(../img/flags/1x1/ye.svg)}.fi-yt{background-image:url(../img/flags/4x3/yt.svg)}.fi-yt.fis{background-image:url(../img/flags/1x1/yt.svg)}.fi-za{background-image:url(../img/flags/4x3/za.svg)}.fi-za.fis{background-image:url(../img/flags/1x1/za.svg)}.fi-zm{background-image:url(../img/flags/4x3/zm.svg)}.fi-zm.fis{background-image:url(../img/flags/1x1/zm.svg)}.fi-zw{background-image:url(../img/flags/4x3/zw.svg)}.fi-zw.fis{background-image:url(../img/flags/1x1/zw.svg)}.fi-ac{background-image:url(../img/flags/4x3/ac.svg)}.fi-ac.fis{background-image:url(../img/flags/1x1/ac.svg)}.fi-cp{background-image:url(../img/flags/4x3/cp.svg)}.fi-cp.fis{background-image:url(../img/flags/1x1/cp.svg)}.fi-dg{background-image:url(../img/flags/4x3/dg.svg)}.fi-dg.fis{background-image:url(../img/flags/1x1/dg.svg)}.fi-ea{background-image:url(../img/flags/4x3/ea.svg)}.fi-ea.fis{background-image:url(../img/flags/1x1/ea.svg)}.fi-es-ct{background-image:url(../img/flags/4x3/es-ct.svg)}.fi-es-ct.fis{background-image:url(../img/flags/1x1/es-ct.svg)}.fi-es-ga{background-image:url(../img/flags/4x3/es-ga.svg)}.fi-es-ga.fis{background-image:url(../img/flags/1x1/es-ga.svg)}.fi-eu{background-image:url(../img/flags/4x3/eu.svg)}.fi-eu.fis{background-image:url(../img/flags/1x1/eu.svg)}.fi-gb-eng{background-image:url(../img/flags/4x3/gb-eng.svg)}.fi-gb-eng.fis{background-image:url(../img/flags/1x1/gb-eng.svg)}.fi-gb-nir{background-image:url(../img/flags/4x3/gb-nir.svg)}.fi-gb-nir.fis{background-image:url(../img/flags/1x1/gb-nir.svg)}.fi-gb-sct{background-image:url(../img/flags/4x3/gb-sct.svg)}.fi-gb-sct.fis{background-image:url(../img/flags/1x1/gb-sct.svg)}.fi-gb-wls{background-image:url(../img/flags/4x3/gb-wls.svg)}.fi-gb-wls.fis{background-image:url(../img/flags/1x1/gb-wls.svg)}.fi-ic{background-image:url(../img/flags/4x3/ic.svg)}.fi-ic.fis{background-image:url(../img/flags/1x1/ic.svg)}.fi-ta{background-image:url(../img/flags/4x3/ta.svg)}.fi-ta.fis{background-image:url(../img/flags/1x1/ta.svg)}.fi-un{background-image:url(../img/flags/4x3/un.svg)}.fi-un.fis{background-image:url(../img/flags/1x1/un.svg)}.fi-xk{background-image:url(../img/flags/4x3/xk.svg)}.fi-xk.fis{background-image:url(../img/flags/1x1/xk.svg)}
+/*# sourceMappingURL=flagicon.min.css.map */
diff --git a/dasena-web/public/assets/admin/vendors/css/flagicon.min.css.map b/dasena-web/public/assets/admin/vendors/css/flagicon.min.css.map
new file mode 100644
index 0000000..982a19b
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/css/flagicon.min.css.map
@@ -0,0 +1 @@
+{"version":3,"sources":["flagicon.min.css"],"names":[],"mappings":"AAAA,KACC,gBAAiB,QACjB,oBAAqB,IACrB,kBAAmB,UAEpB,IACC,gBAAiB,QACjB,oBAAqB,IACrB,kBAAmB,UACnB,SAAU,SACV,QAAS,aACT,MAAO,aACP,YAAa,IAEd,WACC,QAAS,QAEV,QACC,MAAO,IAER,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,UACC,iBAAkB,gCAEnB,cACC,iBAAkB,gCAEnB,UACC,iBAAkB,gCAEnB,cACC,iBAAkB,gCAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,WACC,iBAAkB,iCAEnB,eACC,iBAAkB,iCAEnB,WACC,iBAAkB,iCAEnB,eACC,iBAAkB,iCAEnB,WACC,iBAAkB,iCAEnB,eACC,iBAAkB,iCAEnB,WACC,iBAAkB,iCAEnB,eACC,iBAAkB,iCAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB","file":"flagicon.min.css","sourcesContent":[]}
\ No newline at end of file
diff --git a/dasena-web/public/assets/admin/vendors/css/fontawesome.min.css b/dasena-web/public/assets/admin/vendors/css/fontawesome.min.css
new file mode 100644
index 0000000..2b3c456
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/css/fontawesome.min.css
@@ -0,0 +1,6 @@
+/*!
+ * Font Awesome Free 6.1.2 by @fontawesome - https://fontawesome.com
+ * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
+ * Copyright 2022 Fonticons, Inc.
+ */.fa{font-family:var(--fa-style-family, "Font Awesome 6 Free");font-weight:var(--fa-style,900)}.fa,.fa-brands,.fa-duotone,.fa-light,.fa-regular,.fa-solid,.fa-thin,.fab,.fad,.fal,.far,.fas,.fat{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:var(--fa-display,inline-block);font-style:normal;font-variant:normal;line-height:1;text-rendering:auto}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-2xs{font-size:.625em;line-height:.1em;vertical-align:.225em}.fa-xs{font-size:.75em;line-height:.08333em;vertical-align:.125em}.fa-sm{font-size:.875em;line-height:.07143em;vertical-align:.05357em}.fa-lg{font-size:1.25em;line-height:.05em;vertical-align:-.075em}.fa-xl{font-size:1.5em;line-height:.04167em;vertical-align:-.125em}.fa-2xl{font-size:2em;line-height:.03125em;vertical-align:-.1875em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:var(--fa-li-margin,2.5em);padding-left:0}.fa-ul>li{position:relative}.fa-li{left:calc(var(--fa-li-width,2em) * -1);position:absolute;text-align:center;width:var(--fa-li-width,2em);line-height:inherit}.fa-border{border-color:var(--fa-border-color,#eee);border-radius:var(--fa-border-radius,.1em);border-style:var(--fa-border-style,solid);border-width:var(--fa-border-width,.08em);padding:var(--fa-border-padding,.2em .25em .15em)}.fa-pull-left{float:left;margin-right:var(--fa-pull-margin,.3em)}.fa-pull-right{float:right;margin-left:var(--fa-pull-margin,.3em)}.fa-beat{-webkit-animation-name:fa-beat;animation-name:fa-beat;-webkit-animation-delay:var(--fa-animation-delay,0);animation-delay:var(--fa-animation-delay,0);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,ease-in-out);animation-timing-function:var(--fa-animation-timing,ease-in-out)}.fa-bounce{-webkit-animation-name:fa-bounce;animation-name:fa-bounce;-webkit-animation-delay:var(--fa-animation-delay,0);animation-delay:var(--fa-animation-delay,0);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.28,.84,.42,1));animation-timing-function:var(--fa-animation-timing,cubic-bezier(.28,.84,.42,1))}.fa-fade{-webkit-animation-name:fa-fade;animation-name:fa-fade;-webkit-animation-delay:var(--fa-animation-delay,0);animation-delay:var(--fa-animation-delay,0);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1));animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))}.fa-beat-fade{-webkit-animation-name:fa-beat-fade;animation-name:fa-beat-fade;-webkit-animation-delay:var(--fa-animation-delay,0);animation-delay:var(--fa-animation-delay,0);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1));animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))}.fa-flip{-webkit-animation-name:fa-flip;animation-name:fa-flip;-webkit-animation-delay:var(--fa-animation-delay,0);animation-delay:var(--fa-animation-delay,0);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,ease-in-out);animation-timing-function:var(--fa-animation-timing,ease-in-out)}.fa-shake{-webkit-animation-name:fa-shake;animation-name:fa-shake;-webkit-animation-delay:var(--fa-animation-delay,0);animation-delay:var(--fa-animation-delay,0);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,linear);animation-timing-function:var(--fa-animation-timing,linear)}.fa-spin{-webkit-animation-name:fa-spin;animation-name:fa-spin;-webkit-animation-delay:var(--fa-animation-delay,0);animation-delay:var(--fa-animation-delay,0);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,2s);animation-duration:var(--fa-animation-duration,2s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,linear);animation-timing-function:var(--fa-animation-timing,linear)}.fa-spin-reverse{--fa-animation-direction:reverse}.fa-pulse,.fa-spin-pulse{-webkit-animation-name:fa-spin;animation-name:fa-spin;-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,steps(8));animation-timing-function:var(--fa-animation-timing,steps(8))}@media (prefers-reduced-motion:reduce){.fa-beat,.fa-beat-fade,.fa-bounce,.fa-fade,.fa-flip,.fa-pulse,.fa-shake,.fa-spin,.fa-spin-pulse{-webkit-animation-delay:-1ms;animation-delay:-1ms;-webkit-animation-duration:1ms;animation-duration:1ms;-webkit-animation-iteration-count:1;animation-iteration-count:1;transition-delay:0s;transition-duration:0s}}@-webkit-keyframes fa-beat{0%,90%{-webkit-transform:scale(1);transform:scale(1)}45%{-webkit-transform:scale(var(--fa-beat-scale,1.25));transform:scale(var(--fa-beat-scale,1.25))}}@keyframes fa-beat{0%,90%{-webkit-transform:scale(1);transform:scale(1)}45%{-webkit-transform:scale(var(--fa-beat-scale,1.25));transform:scale(var(--fa-beat-scale,1.25))}}@-webkit-keyframes fa-bounce{0%{-webkit-transform:scale(1,1) translateY(0);transform:scale(1,1) translateY(0)}10%{-webkit-transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0);transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0)}30%{-webkit-transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em));transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em))}50%{-webkit-transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0);transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0)}57%{-webkit-transform:scale(1,1) translateY(var(--fa-bounce-rebound,-.125em));transform:scale(1,1) translateY(var(--fa-bounce-rebound,-.125em))}64%{-webkit-transform:scale(1,1) translateY(0);transform:scale(1,1) translateY(0)}100%{-webkit-transform:scale(1,1) translateY(0);transform:scale(1,1) translateY(0)}}@keyframes fa-bounce{0%{-webkit-transform:scale(1,1) translateY(0);transform:scale(1,1) translateY(0)}10%{-webkit-transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0);transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0)}30%{-webkit-transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em));transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em))}50%{-webkit-transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0);transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0)}57%{-webkit-transform:scale(1,1) translateY(var(--fa-bounce-rebound,-.125em));transform:scale(1,1) translateY(var(--fa-bounce-rebound,-.125em))}64%{-webkit-transform:scale(1,1) translateY(0);transform:scale(1,1) translateY(0)}100%{-webkit-transform:scale(1,1) translateY(0);transform:scale(1,1) translateY(0)}}@-webkit-keyframes fa-fade{50%{opacity:var(--fa-fade-opacity,.4)}}@keyframes fa-fade{50%{opacity:var(--fa-fade-opacity,.4)}}@-webkit-keyframes fa-beat-fade{0%,100%{opacity:var(--fa-beat-fade-opacity,.4);-webkit-transform:scale(1);transform:scale(1)}50%{opacity:1;-webkit-transform:scale(var(--fa-beat-fade-scale,1.125));transform:scale(var(--fa-beat-fade-scale,1.125))}}@keyframes fa-beat-fade{0%,100%{opacity:var(--fa-beat-fade-opacity,.4);-webkit-transform:scale(1);transform:scale(1)}50%{opacity:1;-webkit-transform:scale(var(--fa-beat-fade-scale,1.125));transform:scale(var(--fa-beat-fade-scale,1.125))}}@-webkit-keyframes fa-flip{50%{-webkit-transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg));transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg))}}@keyframes fa-flip{50%{-webkit-transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg));transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg))}}@-webkit-keyframes fa-shake{0%{-webkit-transform:rotate(-15deg);transform:rotate(-15deg)}4%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}24%,8%{-webkit-transform:rotate(-18deg);transform:rotate(-18deg)}12%,28%{-webkit-transform:rotate(18deg);transform:rotate(18deg)}16%{-webkit-transform:rotate(-22deg);transform:rotate(-22deg)}20%{-webkit-transform:rotate(22deg);transform:rotate(22deg)}32%{-webkit-transform:rotate(-12deg);transform:rotate(-12deg)}36%{-webkit-transform:rotate(12deg);transform:rotate(12deg)}100%,40%{-webkit-transform:rotate(0);transform:rotate(0)}}@keyframes fa-shake{0%{-webkit-transform:rotate(-15deg);transform:rotate(-15deg)}4%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}24%,8%{-webkit-transform:rotate(-18deg);transform:rotate(-18deg)}12%,28%{-webkit-transform:rotate(18deg);transform:rotate(18deg)}16%{-webkit-transform:rotate(-22deg);transform:rotate(-22deg)}20%{-webkit-transform:rotate(22deg);transform:rotate(22deg)}32%{-webkit-transform:rotate(-12deg);transform:rotate(-12deg)}36%{-webkit-transform:rotate(12deg);transform:rotate(12deg)}100%,40%{-webkit-transform:rotate(0);transform:rotate(0)}}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.fa-rotate-90{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-webkit-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-webkit-transform:scale(-1,1);transform:scale(-1,1)}.fa-flip-vertical{-webkit-transform:scale(1,-1);transform:scale(1,-1)}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical{-webkit-transform:scale(-1,-1);transform:scale(-1,-1)}.fa-rotate-by{-webkit-transform:rotate(var(--fa-rotate-angle,none));transform:rotate(var(--fa-rotate-angle,none))}.fa-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2.5em}.fa-stack-1x,.fa-stack-2x{left:0;position:absolute;text-align:center;width:100%;z-index:var(--fa-stack-z-index,auto)}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:var(--fa-inverse,#fff)}.fa-0::before{content:"\30"}.fa-1::before{content:"\31"}.fa-2::before{content:"\32"}.fa-3::before{content:"\33"}.fa-4::before{content:"\34"}.fa-5::before{content:"\35"}.fa-6::before{content:"\36"}.fa-7::before{content:"\37"}.fa-8::before{content:"\38"}.fa-9::before{content:"\39"}.fa-a::before{content:"\41"}.fa-address-book::before{content:"\f2b9"}.fa-contact-book::before{content:"\f2b9"}.fa-address-card::before{content:"\f2bb"}.fa-contact-card::before{content:"\f2bb"}.fa-vcard::before{content:"\f2bb"}.fa-align-center::before{content:"\f037"}.fa-align-justify::before{content:"\f039"}.fa-align-left::before{content:"\f036"}.fa-align-right::before{content:"\f038"}.fa-anchor::before{content:"\f13d"}.fa-anchor-circle-check::before{content:"\e4aa"}.fa-anchor-circle-exclamation::before{content:"\e4ab"}.fa-anchor-circle-xmark::before{content:"\e4ac"}.fa-anchor-lock::before{content:"\e4ad"}.fa-angle-down::before{content:"\f107"}.fa-angle-left::before{content:"\f104"}.fa-angle-right::before{content:"\f105"}.fa-angle-up::before{content:"\f106"}.fa-angles-down::before{content:"\f103"}.fa-angle-double-down::before{content:"\f103"}.fa-angles-left::before{content:"\f100"}.fa-angle-double-left::before{content:"\f100"}.fa-angles-right::before{content:"\f101"}.fa-angle-double-right::before{content:"\f101"}.fa-angles-up::before{content:"\f102"}.fa-angle-double-up::before{content:"\f102"}.fa-ankh::before{content:"\f644"}.fa-apple-whole::before{content:"\f5d1"}.fa-apple-alt::before{content:"\f5d1"}.fa-archway::before{content:"\f557"}.fa-arrow-down::before{content:"\f063"}.fa-arrow-down-1-9::before{content:"\f162"}.fa-sort-numeric-asc::before{content:"\f162"}.fa-sort-numeric-down::before{content:"\f162"}.fa-arrow-down-9-1::before{content:"\f886"}.fa-sort-numeric-desc::before{content:"\f886"}.fa-sort-numeric-down-alt::before{content:"\f886"}.fa-arrow-down-a-z::before{content:"\f15d"}.fa-sort-alpha-asc::before{content:"\f15d"}.fa-sort-alpha-down::before{content:"\f15d"}.fa-arrow-down-long::before{content:"\f175"}.fa-long-arrow-down::before{content:"\f175"}.fa-arrow-down-short-wide::before{content:"\f884"}.fa-sort-amount-desc::before{content:"\f884"}.fa-sort-amount-down-alt::before{content:"\f884"}.fa-arrow-down-up-across-line::before{content:"\e4af"}.fa-arrow-down-up-lock::before{content:"\e4b0"}.fa-arrow-down-wide-short::before{content:"\f160"}.fa-sort-amount-asc::before{content:"\f160"}.fa-sort-amount-down::before{content:"\f160"}.fa-arrow-down-z-a::before{content:"\f881"}.fa-sort-alpha-desc::before{content:"\f881"}.fa-sort-alpha-down-alt::before{content:"\f881"}.fa-arrow-left::before{content:"\f060"}.fa-arrow-left-long::before{content:"\f177"}.fa-long-arrow-left::before{content:"\f177"}.fa-arrow-pointer::before{content:"\f245"}.fa-mouse-pointer::before{content:"\f245"}.fa-arrow-right::before{content:"\f061"}.fa-arrow-right-arrow-left::before{content:"\f0ec"}.fa-exchange::before{content:"\f0ec"}.fa-arrow-right-from-bracket::before{content:"\f08b"}.fa-sign-out::before{content:"\f08b"}.fa-arrow-right-long::before{content:"\f178"}.fa-long-arrow-right::before{content:"\f178"}.fa-arrow-right-to-bracket::before{content:"\f090"}.fa-sign-in::before{content:"\f090"}.fa-arrow-right-to-city::before{content:"\e4b3"}.fa-arrow-rotate-left::before{content:"\f0e2"}.fa-arrow-left-rotate::before{content:"\f0e2"}.fa-arrow-rotate-back::before{content:"\f0e2"}.fa-arrow-rotate-backward::before{content:"\f0e2"}.fa-undo::before{content:"\f0e2"}.fa-arrow-rotate-right::before{content:"\f01e"}.fa-arrow-right-rotate::before{content:"\f01e"}.fa-arrow-rotate-forward::before{content:"\f01e"}.fa-redo::before{content:"\f01e"}.fa-arrow-trend-down::before{content:"\e097"}.fa-arrow-trend-up::before{content:"\e098"}.fa-arrow-turn-down::before{content:"\f149"}.fa-level-down::before{content:"\f149"}.fa-arrow-turn-up::before{content:"\f148"}.fa-level-up::before{content:"\f148"}.fa-arrow-up::before{content:"\f062"}.fa-arrow-up-1-9::before{content:"\f163"}.fa-sort-numeric-up::before{content:"\f163"}.fa-arrow-up-9-1::before{content:"\f887"}.fa-sort-numeric-up-alt::before{content:"\f887"}.fa-arrow-up-a-z::before{content:"\f15e"}.fa-sort-alpha-up::before{content:"\f15e"}.fa-arrow-up-from-bracket::before{content:"\e09a"}.fa-arrow-up-from-ground-water::before{content:"\e4b5"}.fa-arrow-up-from-water-pump::before{content:"\e4b6"}.fa-arrow-up-long::before{content:"\f176"}.fa-long-arrow-up::before{content:"\f176"}.fa-arrow-up-right-dots::before{content:"\e4b7"}.fa-arrow-up-right-from-square::before{content:"\f08e"}.fa-external-link::before{content:"\f08e"}.fa-arrow-up-short-wide::before{content:"\f885"}.fa-sort-amount-up-alt::before{content:"\f885"}.fa-arrow-up-wide-short::before{content:"\f161"}.fa-sort-amount-up::before{content:"\f161"}.fa-arrow-up-z-a::before{content:"\f882"}.fa-sort-alpha-up-alt::before{content:"\f882"}.fa-arrows-down-to-line::before{content:"\e4b8"}.fa-arrows-down-to-people::before{content:"\e4b9"}.fa-arrows-left-right::before{content:"\f07e"}.fa-arrows-h::before{content:"\f07e"}.fa-arrows-left-right-to-line::before{content:"\e4ba"}.fa-arrows-rotate::before{content:"\f021"}.fa-refresh::before{content:"\f021"}.fa-sync::before{content:"\f021"}.fa-arrows-spin::before{content:"\e4bb"}.fa-arrows-split-up-and-left::before{content:"\e4bc"}.fa-arrows-to-circle::before{content:"\e4bd"}.fa-arrows-to-dot::before{content:"\e4be"}.fa-arrows-to-eye::before{content:"\e4bf"}.fa-arrows-turn-right::before{content:"\e4c0"}.fa-arrows-turn-to-dots::before{content:"\e4c1"}.fa-arrows-up-down::before{content:"\f07d"}.fa-arrows-v::before{content:"\f07d"}.fa-arrows-up-down-left-right::before{content:"\f047"}.fa-arrows::before{content:"\f047"}.fa-arrows-up-to-line::before{content:"\e4c2"}.fa-asterisk::before{content:"\2a"}.fa-at::before{content:"\40"}.fa-atom::before{content:"\f5d2"}.fa-audio-description::before{content:"\f29e"}.fa-austral-sign::before{content:"\e0a9"}.fa-award::before{content:"\f559"}.fa-b::before{content:"\42"}.fa-baby::before{content:"\f77c"}.fa-baby-carriage::before{content:"\f77d"}.fa-carriage-baby::before{content:"\f77d"}.fa-backward::before{content:"\f04a"}.fa-backward-fast::before{content:"\f049"}.fa-fast-backward::before{content:"\f049"}.fa-backward-step::before{content:"\f048"}.fa-step-backward::before{content:"\f048"}.fa-bacon::before{content:"\f7e5"}.fa-bacteria::before{content:"\e059"}.fa-bacterium::before{content:"\e05a"}.fa-bag-shopping::before{content:"\f290"}.fa-shopping-bag::before{content:"\f290"}.fa-bahai::before{content:"\f666"}.fa-haykal::before{content:"\f666"}.fa-baht-sign::before{content:"\e0ac"}.fa-ban::before{content:"\f05e"}.fa-cancel::before{content:"\f05e"}.fa-ban-smoking::before{content:"\f54d"}.fa-smoking-ban::before{content:"\f54d"}.fa-bandage::before{content:"\f462"}.fa-band-aid::before{content:"\f462"}.fa-barcode::before{content:"\f02a"}.fa-bars::before{content:"\f0c9"}.fa-navicon::before{content:"\f0c9"}.fa-bars-progress::before{content:"\f828"}.fa-tasks-alt::before{content:"\f828"}.fa-bars-staggered::before{content:"\f550"}.fa-reorder::before{content:"\f550"}.fa-stream::before{content:"\f550"}.fa-baseball::before{content:"\f433"}.fa-baseball-ball::before{content:"\f433"}.fa-baseball-bat-ball::before{content:"\f432"}.fa-basket-shopping::before{content:"\f291"}.fa-shopping-basket::before{content:"\f291"}.fa-basketball::before{content:"\f434"}.fa-basketball-ball::before{content:"\f434"}.fa-bath::before{content:"\f2cd"}.fa-bathtub::before{content:"\f2cd"}.fa-battery-empty::before{content:"\f244"}.fa-battery-0::before{content:"\f244"}.fa-battery-full::before{content:"\f240"}.fa-battery::before{content:"\f240"}.fa-battery-5::before{content:"\f240"}.fa-battery-half::before{content:"\f242"}.fa-battery-3::before{content:"\f242"}.fa-battery-quarter::before{content:"\f243"}.fa-battery-2::before{content:"\f243"}.fa-battery-three-quarters::before{content:"\f241"}.fa-battery-4::before{content:"\f241"}.fa-bed::before{content:"\f236"}.fa-bed-pulse::before{content:"\f487"}.fa-procedures::before{content:"\f487"}.fa-beer-mug-empty::before{content:"\f0fc"}.fa-beer::before{content:"\f0fc"}.fa-bell::before{content:"\f0f3"}.fa-bell-concierge::before{content:"\f562"}.fa-concierge-bell::before{content:"\f562"}.fa-bell-slash::before{content:"\f1f6"}.fa-bezier-curve::before{content:"\f55b"}.fa-bicycle::before{content:"\f206"}.fa-binoculars::before{content:"\f1e5"}.fa-biohazard::before{content:"\f780"}.fa-bitcoin-sign::before{content:"\e0b4"}.fa-blender::before{content:"\f517"}.fa-blender-phone::before{content:"\f6b6"}.fa-blog::before{content:"\f781"}.fa-bold::before{content:"\f032"}.fa-bolt::before{content:"\f0e7"}.fa-zap::before{content:"\f0e7"}.fa-bolt-lightning::before{content:"\e0b7"}.fa-bomb::before{content:"\f1e2"}.fa-bone::before{content:"\f5d7"}.fa-bong::before{content:"\f55c"}.fa-book::before{content:"\f02d"}.fa-book-atlas::before{content:"\f558"}.fa-atlas::before{content:"\f558"}.fa-book-bible::before{content:"\f647"}.fa-bible::before{content:"\f647"}.fa-book-bookmark::before{content:"\e0bb"}.fa-book-journal-whills::before{content:"\f66a"}.fa-journal-whills::before{content:"\f66a"}.fa-book-medical::before{content:"\f7e6"}.fa-book-open::before{content:"\f518"}.fa-book-open-reader::before{content:"\f5da"}.fa-book-reader::before{content:"\f5da"}.fa-book-quran::before{content:"\f687"}.fa-quran::before{content:"\f687"}.fa-book-skull::before{content:"\f6b7"}.fa-book-dead::before{content:"\f6b7"}.fa-book-tanakh::before{content:"\f827"}.fa-tanakh::before{content:"\f827"}.fa-bookmark::before{content:"\f02e"}.fa-border-all::before{content:"\f84c"}.fa-border-none::before{content:"\f850"}.fa-border-top-left::before{content:"\f853"}.fa-border-style::before{content:"\f853"}.fa-bore-hole::before{content:"\e4c3"}.fa-bottle-droplet::before{content:"\e4c4"}.fa-bottle-water::before{content:"\e4c5"}.fa-bowl-food::before{content:"\e4c6"}.fa-bowl-rice::before{content:"\e2eb"}.fa-bowling-ball::before{content:"\f436"}.fa-box::before{content:"\f466"}.fa-box-archive::before{content:"\f187"}.fa-archive::before{content:"\f187"}.fa-box-open::before{content:"\f49e"}.fa-box-tissue::before{content:"\e05b"}.fa-boxes-packing::before{content:"\e4c7"}.fa-boxes-stacked::before{content:"\f468"}.fa-boxes::before{content:"\f468"}.fa-boxes-alt::before{content:"\f468"}.fa-braille::before{content:"\f2a1"}.fa-brain::before{content:"\f5dc"}.fa-brazilian-real-sign::before{content:"\e46c"}.fa-bread-slice::before{content:"\f7ec"}.fa-bridge::before{content:"\e4c8"}.fa-bridge-circle-check::before{content:"\e4c9"}.fa-bridge-circle-exclamation::before{content:"\e4ca"}.fa-bridge-circle-xmark::before{content:"\e4cb"}.fa-bridge-lock::before{content:"\e4cc"}.fa-bridge-water::before{content:"\e4ce"}.fa-briefcase::before{content:"\f0b1"}.fa-briefcase-medical::before{content:"\f469"}.fa-broom::before{content:"\f51a"}.fa-broom-ball::before{content:"\f458"}.fa-quidditch::before{content:"\f458"}.fa-quidditch-broom-ball::before{content:"\f458"}.fa-brush::before{content:"\f55d"}.fa-bucket::before{content:"\e4cf"}.fa-bug::before{content:"\f188"}.fa-bug-slash::before{content:"\e490"}.fa-bugs::before{content:"\e4d0"}.fa-building::before{content:"\f1ad"}.fa-building-circle-arrow-right::before{content:"\e4d1"}.fa-building-circle-check::before{content:"\e4d2"}.fa-building-circle-exclamation::before{content:"\e4d3"}.fa-building-circle-xmark::before{content:"\e4d4"}.fa-building-columns::before{content:"\f19c"}.fa-bank::before{content:"\f19c"}.fa-institution::before{content:"\f19c"}.fa-museum::before{content:"\f19c"}.fa-university::before{content:"\f19c"}.fa-building-flag::before{content:"\e4d5"}.fa-building-lock::before{content:"\e4d6"}.fa-building-ngo::before{content:"\e4d7"}.fa-building-shield::before{content:"\e4d8"}.fa-building-un::before{content:"\e4d9"}.fa-building-user::before{content:"\e4da"}.fa-building-wheat::before{content:"\e4db"}.fa-bullhorn::before{content:"\f0a1"}.fa-bullseye::before{content:"\f140"}.fa-burger::before{content:"\f805"}.fa-hamburger::before{content:"\f805"}.fa-burst::before{content:"\e4dc"}.fa-bus::before{content:"\f207"}.fa-bus-simple::before{content:"\f55e"}.fa-bus-alt::before{content:"\f55e"}.fa-business-time::before{content:"\f64a"}.fa-briefcase-clock::before{content:"\f64a"}.fa-c::before{content:"\43"}.fa-cable-car::before{content:"\f7da"}.fa-tram::before{content:"\f7da"}.fa-cake-candles::before{content:"\f1fd"}.fa-birthday-cake::before{content:"\f1fd"}.fa-cake::before{content:"\f1fd"}.fa-calculator::before{content:"\f1ec"}.fa-calendar::before{content:"\f133"}.fa-calendar-check::before{content:"\f274"}.fa-calendar-day::before{content:"\f783"}.fa-calendar-days::before{content:"\f073"}.fa-calendar-alt::before{content:"\f073"}.fa-calendar-minus::before{content:"\f272"}.fa-calendar-plus::before{content:"\f271"}.fa-calendar-week::before{content:"\f784"}.fa-calendar-xmark::before{content:"\f273"}.fa-calendar-times::before{content:"\f273"}.fa-camera::before{content:"\f030"}.fa-camera-alt::before{content:"\f030"}.fa-camera-retro::before{content:"\f083"}.fa-camera-rotate::before{content:"\e0d8"}.fa-campground::before{content:"\f6bb"}.fa-candy-cane::before{content:"\f786"}.fa-cannabis::before{content:"\f55f"}.fa-capsules::before{content:"\f46b"}.fa-car::before{content:"\f1b9"}.fa-automobile::before{content:"\f1b9"}.fa-car-battery::before{content:"\f5df"}.fa-battery-car::before{content:"\f5df"}.fa-car-burst::before{content:"\f5e1"}.fa-car-crash::before{content:"\f5e1"}.fa-car-on::before{content:"\e4dd"}.fa-car-rear::before{content:"\f5de"}.fa-car-alt::before{content:"\f5de"}.fa-car-side::before{content:"\f5e4"}.fa-car-tunnel::before{content:"\e4de"}.fa-caravan::before{content:"\f8ff"}.fa-caret-down::before{content:"\f0d7"}.fa-caret-left::before{content:"\f0d9"}.fa-caret-right::before{content:"\f0da"}.fa-caret-up::before{content:"\f0d8"}.fa-carrot::before{content:"\f787"}.fa-cart-arrow-down::before{content:"\f218"}.fa-cart-flatbed::before{content:"\f474"}.fa-dolly-flatbed::before{content:"\f474"}.fa-cart-flatbed-suitcase::before{content:"\f59d"}.fa-luggage-cart::before{content:"\f59d"}.fa-cart-plus::before{content:"\f217"}.fa-cart-shopping::before{content:"\f07a"}.fa-shopping-cart::before{content:"\f07a"}.fa-cash-register::before{content:"\f788"}.fa-cat::before{content:"\f6be"}.fa-cedi-sign::before{content:"\e0df"}.fa-cent-sign::before{content:"\e3f5"}.fa-certificate::before{content:"\f0a3"}.fa-chair::before{content:"\f6c0"}.fa-chalkboard::before{content:"\f51b"}.fa-blackboard::before{content:"\f51b"}.fa-chalkboard-user::before{content:"\f51c"}.fa-chalkboard-teacher::before{content:"\f51c"}.fa-champagne-glasses::before{content:"\f79f"}.fa-glass-cheers::before{content:"\f79f"}.fa-charging-station::before{content:"\f5e7"}.fa-chart-area::before{content:"\f1fe"}.fa-area-chart::before{content:"\f1fe"}.fa-chart-bar::before{content:"\f080"}.fa-bar-chart::before{content:"\f080"}.fa-chart-column::before{content:"\e0e3"}.fa-chart-gantt::before{content:"\e0e4"}.fa-chart-line::before{content:"\f201"}.fa-line-chart::before{content:"\f201"}.fa-chart-pie::before{content:"\f200"}.fa-pie-chart::before{content:"\f200"}.fa-chart-simple::before{content:"\e473"}.fa-check::before{content:"\f00c"}.fa-check-double::before{content:"\f560"}.fa-check-to-slot::before{content:"\f772"}.fa-vote-yea::before{content:"\f772"}.fa-cheese::before{content:"\f7ef"}.fa-chess::before{content:"\f439"}.fa-chess-bishop::before{content:"\f43a"}.fa-chess-board::before{content:"\f43c"}.fa-chess-king::before{content:"\f43f"}.fa-chess-knight::before{content:"\f441"}.fa-chess-pawn::before{content:"\f443"}.fa-chess-queen::before{content:"\f445"}.fa-chess-rook::before{content:"\f447"}.fa-chevron-down::before{content:"\f078"}.fa-chevron-left::before{content:"\f053"}.fa-chevron-right::before{content:"\f054"}.fa-chevron-up::before{content:"\f077"}.fa-child::before{content:"\f1ae"}.fa-child-dress::before{content:"\e59c"}.fa-child-reaching::before{content:"\e59d"}.fa-child-rifle::before{content:"\e4e0"}.fa-children::before{content:"\e4e1"}.fa-church::before{content:"\f51d"}.fa-circle::before{content:"\f111"}.fa-circle-arrow-down::before{content:"\f0ab"}.fa-arrow-circle-down::before{content:"\f0ab"}.fa-circle-arrow-left::before{content:"\f0a8"}.fa-arrow-circle-left::before{content:"\f0a8"}.fa-circle-arrow-right::before{content:"\f0a9"}.fa-arrow-circle-right::before{content:"\f0a9"}.fa-circle-arrow-up::before{content:"\f0aa"}.fa-arrow-circle-up::before{content:"\f0aa"}.fa-circle-check::before{content:"\f058"}.fa-check-circle::before{content:"\f058"}.fa-circle-chevron-down::before{content:"\f13a"}.fa-chevron-circle-down::before{content:"\f13a"}.fa-circle-chevron-left::before{content:"\f137"}.fa-chevron-circle-left::before{content:"\f137"}.fa-circle-chevron-right::before{content:"\f138"}.fa-chevron-circle-right::before{content:"\f138"}.fa-circle-chevron-up::before{content:"\f139"}.fa-chevron-circle-up::before{content:"\f139"}.fa-circle-dollar-to-slot::before{content:"\f4b9"}.fa-donate::before{content:"\f4b9"}.fa-circle-dot::before{content:"\f192"}.fa-dot-circle::before{content:"\f192"}.fa-circle-down::before{content:"\f358"}.fa-arrow-alt-circle-down::before{content:"\f358"}.fa-circle-exclamation::before{content:"\f06a"}.fa-exclamation-circle::before{content:"\f06a"}.fa-circle-h::before{content:"\f47e"}.fa-hospital-symbol::before{content:"\f47e"}.fa-circle-half-stroke::before{content:"\f042"}.fa-adjust::before{content:"\f042"}.fa-circle-info::before{content:"\f05a"}.fa-info-circle::before{content:"\f05a"}.fa-circle-left::before{content:"\f359"}.fa-arrow-alt-circle-left::before{content:"\f359"}.fa-circle-minus::before{content:"\f056"}.fa-minus-circle::before{content:"\f056"}.fa-circle-nodes::before{content:"\e4e2"}.fa-circle-notch::before{content:"\f1ce"}.fa-circle-pause::before{content:"\f28b"}.fa-pause-circle::before{content:"\f28b"}.fa-circle-play::before{content:"\f144"}.fa-play-circle::before{content:"\f144"}.fa-circle-plus::before{content:"\f055"}.fa-plus-circle::before{content:"\f055"}.fa-circle-question::before{content:"\f059"}.fa-question-circle::before{content:"\f059"}.fa-circle-radiation::before{content:"\f7ba"}.fa-radiation-alt::before{content:"\f7ba"}.fa-circle-right::before{content:"\f35a"}.fa-arrow-alt-circle-right::before{content:"\f35a"}.fa-circle-stop::before{content:"\f28d"}.fa-stop-circle::before{content:"\f28d"}.fa-circle-up::before{content:"\f35b"}.fa-arrow-alt-circle-up::before{content:"\f35b"}.fa-circle-user::before{content:"\f2bd"}.fa-user-circle::before{content:"\f2bd"}.fa-circle-xmark::before{content:"\f057"}.fa-times-circle::before{content:"\f057"}.fa-xmark-circle::before{content:"\f057"}.fa-city::before{content:"\f64f"}.fa-clapperboard::before{content:"\e131"}.fa-clipboard::before{content:"\f328"}.fa-clipboard-check::before{content:"\f46c"}.fa-clipboard-list::before{content:"\f46d"}.fa-clipboard-question::before{content:"\e4e3"}.fa-clipboard-user::before{content:"\f7f3"}.fa-clock::before{content:"\f017"}.fa-clock-four::before{content:"\f017"}.fa-clock-rotate-left::before{content:"\f1da"}.fa-history::before{content:"\f1da"}.fa-clone::before{content:"\f24d"}.fa-closed-captioning::before{content:"\f20a"}.fa-cloud::before{content:"\f0c2"}.fa-cloud-arrow-down::before{content:"\f0ed"}.fa-cloud-download::before{content:"\f0ed"}.fa-cloud-download-alt::before{content:"\f0ed"}.fa-cloud-arrow-up::before{content:"\f0ee"}.fa-cloud-upload::before{content:"\f0ee"}.fa-cloud-upload-alt::before{content:"\f0ee"}.fa-cloud-bolt::before{content:"\f76c"}.fa-thunderstorm::before{content:"\f76c"}.fa-cloud-meatball::before{content:"\f73b"}.fa-cloud-moon::before{content:"\f6c3"}.fa-cloud-moon-rain::before{content:"\f73c"}.fa-cloud-rain::before{content:"\f73d"}.fa-cloud-showers-heavy::before{content:"\f740"}.fa-cloud-showers-water::before{content:"\e4e4"}.fa-cloud-sun::before{content:"\f6c4"}.fa-cloud-sun-rain::before{content:"\f743"}.fa-clover::before{content:"\e139"}.fa-code::before{content:"\f121"}.fa-code-branch::before{content:"\f126"}.fa-code-commit::before{content:"\f386"}.fa-code-compare::before{content:"\e13a"}.fa-code-fork::before{content:"\e13b"}.fa-code-merge::before{content:"\f387"}.fa-code-pull-request::before{content:"\e13c"}.fa-coins::before{content:"\f51e"}.fa-colon-sign::before{content:"\e140"}.fa-comment::before{content:"\f075"}.fa-comment-dollar::before{content:"\f651"}.fa-comment-dots::before{content:"\f4ad"}.fa-commenting::before{content:"\f4ad"}.fa-comment-medical::before{content:"\f7f5"}.fa-comment-slash::before{content:"\f4b3"}.fa-comment-sms::before{content:"\f7cd"}.fa-sms::before{content:"\f7cd"}.fa-comments::before{content:"\f086"}.fa-comments-dollar::before{content:"\f653"}.fa-compact-disc::before{content:"\f51f"}.fa-compass::before{content:"\f14e"}.fa-compass-drafting::before{content:"\f568"}.fa-drafting-compass::before{content:"\f568"}.fa-compress::before{content:"\f066"}.fa-computer::before{content:"\e4e5"}.fa-computer-mouse::before{content:"\f8cc"}.fa-mouse::before{content:"\f8cc"}.fa-cookie::before{content:"\f563"}.fa-cookie-bite::before{content:"\f564"}.fa-copy::before{content:"\f0c5"}.fa-copyright::before{content:"\f1f9"}.fa-couch::before{content:"\f4b8"}.fa-cow::before{content:"\f6c8"}.fa-credit-card::before{content:"\f09d"}.fa-credit-card-alt::before{content:"\f09d"}.fa-crop::before{content:"\f125"}.fa-crop-simple::before{content:"\f565"}.fa-crop-alt::before{content:"\f565"}.fa-cross::before{content:"\f654"}.fa-crosshairs::before{content:"\f05b"}.fa-crow::before{content:"\f520"}.fa-crown::before{content:"\f521"}.fa-crutch::before{content:"\f7f7"}.fa-cruzeiro-sign::before{content:"\e152"}.fa-cube::before{content:"\f1b2"}.fa-cubes::before{content:"\f1b3"}.fa-cubes-stacked::before{content:"\e4e6"}.fa-d::before{content:"\44"}.fa-database::before{content:"\f1c0"}.fa-delete-left::before{content:"\f55a"}.fa-backspace::before{content:"\f55a"}.fa-democrat::before{content:"\f747"}.fa-desktop::before{content:"\f390"}.fa-desktop-alt::before{content:"\f390"}.fa-dharmachakra::before{content:"\f655"}.fa-diagram-next::before{content:"\e476"}.fa-diagram-predecessor::before{content:"\e477"}.fa-diagram-project::before{content:"\f542"}.fa-project-diagram::before{content:"\f542"}.fa-diagram-successor::before{content:"\e47a"}.fa-diamond::before{content:"\f219"}.fa-diamond-turn-right::before{content:"\f5eb"}.fa-directions::before{content:"\f5eb"}.fa-dice::before{content:"\f522"}.fa-dice-d20::before{content:"\f6cf"}.fa-dice-d6::before{content:"\f6d1"}.fa-dice-five::before{content:"\f523"}.fa-dice-four::before{content:"\f524"}.fa-dice-one::before{content:"\f525"}.fa-dice-six::before{content:"\f526"}.fa-dice-three::before{content:"\f527"}.fa-dice-two::before{content:"\f528"}.fa-disease::before{content:"\f7fa"}.fa-display::before{content:"\e163"}.fa-divide::before{content:"\f529"}.fa-dna::before{content:"\f471"}.fa-dog::before{content:"\f6d3"}.fa-dollar-sign::before{content:"\24"}.fa-dollar::before{content:"\24"}.fa-usd::before{content:"\24"}.fa-dolly::before{content:"\f472"}.fa-dolly-box::before{content:"\f472"}.fa-dong-sign::before{content:"\e169"}.fa-door-closed::before{content:"\f52a"}.fa-door-open::before{content:"\f52b"}.fa-dove::before{content:"\f4ba"}.fa-down-left-and-up-right-to-center::before{content:"\f422"}.fa-compress-alt::before{content:"\f422"}.fa-down-long::before{content:"\f309"}.fa-long-arrow-alt-down::before{content:"\f309"}.fa-download::before{content:"\f019"}.fa-dragon::before{content:"\f6d5"}.fa-draw-polygon::before{content:"\f5ee"}.fa-droplet::before{content:"\f043"}.fa-tint::before{content:"\f043"}.fa-droplet-slash::before{content:"\f5c7"}.fa-tint-slash::before{content:"\f5c7"}.fa-drum::before{content:"\f569"}.fa-drum-steelpan::before{content:"\f56a"}.fa-drumstick-bite::before{content:"\f6d7"}.fa-dumbbell::before{content:"\f44b"}.fa-dumpster::before{content:"\f793"}.fa-dumpster-fire::before{content:"\f794"}.fa-dungeon::before{content:"\f6d9"}.fa-e::before{content:"\45"}.fa-ear-deaf::before{content:"\f2a4"}.fa-deaf::before{content:"\f2a4"}.fa-deafness::before{content:"\f2a4"}.fa-hard-of-hearing::before{content:"\f2a4"}.fa-ear-listen::before{content:"\f2a2"}.fa-assistive-listening-systems::before{content:"\f2a2"}.fa-earth-africa::before{content:"\f57c"}.fa-globe-africa::before{content:"\f57c"}.fa-earth-americas::before{content:"\f57d"}.fa-earth::before{content:"\f57d"}.fa-earth-america::before{content:"\f57d"}.fa-globe-americas::before{content:"\f57d"}.fa-earth-asia::before{content:"\f57e"}.fa-globe-asia::before{content:"\f57e"}.fa-earth-europe::before{content:"\f7a2"}.fa-globe-europe::before{content:"\f7a2"}.fa-earth-oceania::before{content:"\e47b"}.fa-globe-oceania::before{content:"\e47b"}.fa-egg::before{content:"\f7fb"}.fa-eject::before{content:"\f052"}.fa-elevator::before{content:"\e16d"}.fa-ellipsis::before{content:"\f141"}.fa-ellipsis-h::before{content:"\f141"}.fa-ellipsis-vertical::before{content:"\f142"}.fa-ellipsis-v::before{content:"\f142"}.fa-envelope::before{content:"\f0e0"}.fa-envelope-circle-check::before{content:"\e4e8"}.fa-envelope-open::before{content:"\f2b6"}.fa-envelope-open-text::before{content:"\f658"}.fa-envelopes-bulk::before{content:"\f674"}.fa-mail-bulk::before{content:"\f674"}.fa-equals::before{content:"\3d"}.fa-eraser::before{content:"\f12d"}.fa-ethernet::before{content:"\f796"}.fa-euro-sign::before{content:"\f153"}.fa-eur::before{content:"\f153"}.fa-euro::before{content:"\f153"}.fa-exclamation::before{content:"\21"}.fa-expand::before{content:"\f065"}.fa-explosion::before{content:"\e4e9"}.fa-eye::before{content:"\f06e"}.fa-eye-dropper::before{content:"\f1fb"}.fa-eye-dropper-empty::before{content:"\f1fb"}.fa-eyedropper::before{content:"\f1fb"}.fa-eye-low-vision::before{content:"\f2a8"}.fa-low-vision::before{content:"\f2a8"}.fa-eye-slash::before{content:"\f070"}.fa-f::before{content:"\46"}.fa-face-angry::before{content:"\f556"}.fa-angry::before{content:"\f556"}.fa-face-dizzy::before{content:"\f567"}.fa-dizzy::before{content:"\f567"}.fa-face-flushed::before{content:"\f579"}.fa-flushed::before{content:"\f579"}.fa-face-frown::before{content:"\f119"}.fa-frown::before{content:"\f119"}.fa-face-frown-open::before{content:"\f57a"}.fa-frown-open::before{content:"\f57a"}.fa-face-grimace::before{content:"\f57f"}.fa-grimace::before{content:"\f57f"}.fa-face-grin::before{content:"\f580"}.fa-grin::before{content:"\f580"}.fa-face-grin-beam::before{content:"\f582"}.fa-grin-beam::before{content:"\f582"}.fa-face-grin-beam-sweat::before{content:"\f583"}.fa-grin-beam-sweat::before{content:"\f583"}.fa-face-grin-hearts::before{content:"\f584"}.fa-grin-hearts::before{content:"\f584"}.fa-face-grin-squint::before{content:"\f585"}.fa-grin-squint::before{content:"\f585"}.fa-face-grin-squint-tears::before{content:"\f586"}.fa-grin-squint-tears::before{content:"\f586"}.fa-face-grin-stars::before{content:"\f587"}.fa-grin-stars::before{content:"\f587"}.fa-face-grin-tears::before{content:"\f588"}.fa-grin-tears::before{content:"\f588"}.fa-face-grin-tongue::before{content:"\f589"}.fa-grin-tongue::before{content:"\f589"}.fa-face-grin-tongue-squint::before{content:"\f58a"}.fa-grin-tongue-squint::before{content:"\f58a"}.fa-face-grin-tongue-wink::before{content:"\f58b"}.fa-grin-tongue-wink::before{content:"\f58b"}.fa-face-grin-wide::before{content:"\f581"}.fa-grin-alt::before{content:"\f581"}.fa-face-grin-wink::before{content:"\f58c"}.fa-grin-wink::before{content:"\f58c"}.fa-face-kiss::before{content:"\f596"}.fa-kiss::before{content:"\f596"}.fa-face-kiss-beam::before{content:"\f597"}.fa-kiss-beam::before{content:"\f597"}.fa-face-kiss-wink-heart::before{content:"\f598"}.fa-kiss-wink-heart::before{content:"\f598"}.fa-face-laugh::before{content:"\f599"}.fa-laugh::before{content:"\f599"}.fa-face-laugh-beam::before{content:"\f59a"}.fa-laugh-beam::before{content:"\f59a"}.fa-face-laugh-squint::before{content:"\f59b"}.fa-laugh-squint::before{content:"\f59b"}.fa-face-laugh-wink::before{content:"\f59c"}.fa-laugh-wink::before{content:"\f59c"}.fa-face-meh::before{content:"\f11a"}.fa-meh::before{content:"\f11a"}.fa-face-meh-blank::before{content:"\f5a4"}.fa-meh-blank::before{content:"\f5a4"}.fa-face-rolling-eyes::before{content:"\f5a5"}.fa-meh-rolling-eyes::before{content:"\f5a5"}.fa-face-sad-cry::before{content:"\f5b3"}.fa-sad-cry::before{content:"\f5b3"}.fa-face-sad-tear::before{content:"\f5b4"}.fa-sad-tear::before{content:"\f5b4"}.fa-face-smile::before{content:"\f118"}.fa-smile::before{content:"\f118"}.fa-face-smile-beam::before{content:"\f5b8"}.fa-smile-beam::before{content:"\f5b8"}.fa-face-smile-wink::before{content:"\f4da"}.fa-smile-wink::before{content:"\f4da"}.fa-face-surprise::before{content:"\f5c2"}.fa-surprise::before{content:"\f5c2"}.fa-face-tired::before{content:"\f5c8"}.fa-tired::before{content:"\f5c8"}.fa-fan::before{content:"\f863"}.fa-faucet::before{content:"\e005"}.fa-faucet-drip::before{content:"\e006"}.fa-fax::before{content:"\f1ac"}.fa-feather::before{content:"\f52d"}.fa-feather-pointed::before{content:"\f56b"}.fa-feather-alt::before{content:"\f56b"}.fa-ferry::before{content:"\e4ea"}.fa-file::before{content:"\f15b"}.fa-file-arrow-down::before{content:"\f56d"}.fa-file-download::before{content:"\f56d"}.fa-file-arrow-up::before{content:"\f574"}.fa-file-upload::before{content:"\f574"}.fa-file-audio::before{content:"\f1c7"}.fa-file-circle-check::before{content:"\e5a0"}.fa-file-circle-exclamation::before{content:"\e4eb"}.fa-file-circle-minus::before{content:"\e4ed"}.fa-file-circle-plus::before{content:"\e494"}.fa-file-circle-question::before{content:"\e4ef"}.fa-file-circle-xmark::before{content:"\e5a1"}.fa-file-code::before{content:"\f1c9"}.fa-file-contract::before{content:"\f56c"}.fa-file-csv::before{content:"\f6dd"}.fa-file-excel::before{content:"\f1c3"}.fa-file-export::before{content:"\f56e"}.fa-arrow-right-from-file::before{content:"\f56e"}.fa-file-image::before{content:"\f1c5"}.fa-file-import::before{content:"\f56f"}.fa-arrow-right-to-file::before{content:"\f56f"}.fa-file-invoice::before{content:"\f570"}.fa-file-invoice-dollar::before{content:"\f571"}.fa-file-lines::before{content:"\f15c"}.fa-file-alt::before{content:"\f15c"}.fa-file-text::before{content:"\f15c"}.fa-file-medical::before{content:"\f477"}.fa-file-pdf::before{content:"\f1c1"}.fa-file-pen::before{content:"\f31c"}.fa-file-edit::before{content:"\f31c"}.fa-file-powerpoint::before{content:"\f1c4"}.fa-file-prescription::before{content:"\f572"}.fa-file-shield::before{content:"\e4f0"}.fa-file-signature::before{content:"\f573"}.fa-file-video::before{content:"\f1c8"}.fa-file-waveform::before{content:"\f478"}.fa-file-medical-alt::before{content:"\f478"}.fa-file-word::before{content:"\f1c2"}.fa-file-zipper::before{content:"\f1c6"}.fa-file-archive::before{content:"\f1c6"}.fa-fill::before{content:"\f575"}.fa-fill-drip::before{content:"\f576"}.fa-film::before{content:"\f008"}.fa-filter::before{content:"\f0b0"}.fa-filter-circle-dollar::before{content:"\f662"}.fa-funnel-dollar::before{content:"\f662"}.fa-filter-circle-xmark::before{content:"\e17b"}.fa-fingerprint::before{content:"\f577"}.fa-fire::before{content:"\f06d"}.fa-fire-burner::before{content:"\e4f1"}.fa-fire-extinguisher::before{content:"\f134"}.fa-fire-flame-curved::before{content:"\f7e4"}.fa-fire-alt::before{content:"\f7e4"}.fa-fire-flame-simple::before{content:"\f46a"}.fa-burn::before{content:"\f46a"}.fa-fish::before{content:"\f578"}.fa-fish-fins::before{content:"\e4f2"}.fa-flag::before{content:"\f024"}.fa-flag-checkered::before{content:"\f11e"}.fa-flag-usa::before{content:"\f74d"}.fa-flask::before{content:"\f0c3"}.fa-flask-vial::before{content:"\e4f3"}.fa-floppy-disk::before{content:"\f0c7"}.fa-save::before{content:"\f0c7"}.fa-florin-sign::before{content:"\e184"}.fa-folder::before{content:"\f07b"}.fa-folder-blank::before{content:"\f07b"}.fa-folder-closed::before{content:"\e185"}.fa-folder-minus::before{content:"\f65d"}.fa-folder-open::before{content:"\f07c"}.fa-folder-plus::before{content:"\f65e"}.fa-folder-tree::before{content:"\f802"}.fa-font::before{content:"\f031"}.fa-football::before{content:"\f44e"}.fa-football-ball::before{content:"\f44e"}.fa-forward::before{content:"\f04e"}.fa-forward-fast::before{content:"\f050"}.fa-fast-forward::before{content:"\f050"}.fa-forward-step::before{content:"\f051"}.fa-step-forward::before{content:"\f051"}.fa-franc-sign::before{content:"\e18f"}.fa-frog::before{content:"\f52e"}.fa-futbol::before{content:"\f1e3"}.fa-futbol-ball::before{content:"\f1e3"}.fa-soccer-ball::before{content:"\f1e3"}.fa-g::before{content:"\47"}.fa-gamepad::before{content:"\f11b"}.fa-gas-pump::before{content:"\f52f"}.fa-gauge::before{content:"\f624"}.fa-dashboard::before{content:"\f624"}.fa-gauge-med::before{content:"\f624"}.fa-tachometer-alt-average::before{content:"\f624"}.fa-gauge-high::before{content:"\f625"}.fa-tachometer-alt::before{content:"\f625"}.fa-tachometer-alt-fast::before{content:"\f625"}.fa-gauge-simple::before{content:"\f629"}.fa-gauge-simple-med::before{content:"\f629"}.fa-tachometer-average::before{content:"\f629"}.fa-gauge-simple-high::before{content:"\f62a"}.fa-tachometer::before{content:"\f62a"}.fa-tachometer-fast::before{content:"\f62a"}.fa-gavel::before{content:"\f0e3"}.fa-legal::before{content:"\f0e3"}.fa-gear::before{content:"\f013"}.fa-cog::before{content:"\f013"}.fa-gears::before{content:"\f085"}.fa-cogs::before{content:"\f085"}.fa-gem::before{content:"\f3a5"}.fa-genderless::before{content:"\f22d"}.fa-ghost::before{content:"\f6e2"}.fa-gift::before{content:"\f06b"}.fa-gifts::before{content:"\f79c"}.fa-glass-water::before{content:"\e4f4"}.fa-glass-water-droplet::before{content:"\e4f5"}.fa-glasses::before{content:"\f530"}.fa-globe::before{content:"\f0ac"}.fa-golf-ball-tee::before{content:"\f450"}.fa-golf-ball::before{content:"\f450"}.fa-gopuram::before{content:"\f664"}.fa-graduation-cap::before{content:"\f19d"}.fa-mortar-board::before{content:"\f19d"}.fa-greater-than::before{content:"\3e"}.fa-greater-than-equal::before{content:"\f532"}.fa-grip::before{content:"\f58d"}.fa-grip-horizontal::before{content:"\f58d"}.fa-grip-lines::before{content:"\f7a4"}.fa-grip-lines-vertical::before{content:"\f7a5"}.fa-grip-vertical::before{content:"\f58e"}.fa-group-arrows-rotate::before{content:"\e4f6"}.fa-guarani-sign::before{content:"\e19a"}.fa-guitar::before{content:"\f7a6"}.fa-gun::before{content:"\e19b"}.fa-h::before{content:"\48"}.fa-hammer::before{content:"\f6e3"}.fa-hamsa::before{content:"\f665"}.fa-hand::before{content:"\f256"}.fa-hand-paper::before{content:"\f256"}.fa-hand-back-fist::before{content:"\f255"}.fa-hand-rock::before{content:"\f255"}.fa-hand-dots::before{content:"\f461"}.fa-allergies::before{content:"\f461"}.fa-hand-fist::before{content:"\f6de"}.fa-fist-raised::before{content:"\f6de"}.fa-hand-holding::before{content:"\f4bd"}.fa-hand-holding-dollar::before{content:"\f4c0"}.fa-hand-holding-usd::before{content:"\f4c0"}.fa-hand-holding-droplet::before{content:"\f4c1"}.fa-hand-holding-water::before{content:"\f4c1"}.fa-hand-holding-hand::before{content:"\e4f7"}.fa-hand-holding-heart::before{content:"\f4be"}.fa-hand-holding-medical::before{content:"\e05c"}.fa-hand-lizard::before{content:"\f258"}.fa-hand-middle-finger::before{content:"\f806"}.fa-hand-peace::before{content:"\f25b"}.fa-hand-point-down::before{content:"\f0a7"}.fa-hand-point-left::before{content:"\f0a5"}.fa-hand-point-right::before{content:"\f0a4"}.fa-hand-point-up::before{content:"\f0a6"}.fa-hand-pointer::before{content:"\f25a"}.fa-hand-scissors::before{content:"\f257"}.fa-hand-sparkles::before{content:"\e05d"}.fa-hand-spock::before{content:"\f259"}.fa-handcuffs::before{content:"\e4f8"}.fa-hands::before{content:"\f2a7"}.fa-sign-language::before{content:"\f2a7"}.fa-signing::before{content:"\f2a7"}.fa-hands-asl-interpreting::before{content:"\f2a3"}.fa-american-sign-language-interpreting::before{content:"\f2a3"}.fa-asl-interpreting::before{content:"\f2a3"}.fa-hands-american-sign-language-interpreting::before{content:"\f2a3"}.fa-hands-bound::before{content:"\e4f9"}.fa-hands-bubbles::before{content:"\e05e"}.fa-hands-wash::before{content:"\e05e"}.fa-hands-clapping::before{content:"\e1a8"}.fa-hands-holding::before{content:"\f4c2"}.fa-hands-holding-child::before{content:"\e4fa"}.fa-hands-holding-circle::before{content:"\e4fb"}.fa-hands-praying::before{content:"\f684"}.fa-praying-hands::before{content:"\f684"}.fa-handshake::before{content:"\f2b5"}.fa-handshake-angle::before{content:"\f4c4"}.fa-hands-helping::before{content:"\f4c4"}.fa-handshake-simple::before{content:"\f4c6"}.fa-handshake-alt::before{content:"\f4c6"}.fa-handshake-simple-slash::before{content:"\e05f"}.fa-handshake-alt-slash::before{content:"\e05f"}.fa-handshake-slash::before{content:"\e060"}.fa-hanukiah::before{content:"\f6e6"}.fa-hard-drive::before{content:"\f0a0"}.fa-hdd::before{content:"\f0a0"}.fa-hashtag::before{content:"\23"}.fa-hat-cowboy::before{content:"\f8c0"}.fa-hat-cowboy-side::before{content:"\f8c1"}.fa-hat-wizard::before{content:"\f6e8"}.fa-head-side-cough::before{content:"\e061"}.fa-head-side-cough-slash::before{content:"\e062"}.fa-head-side-mask::before{content:"\e063"}.fa-head-side-virus::before{content:"\e064"}.fa-heading::before{content:"\f1dc"}.fa-header::before{content:"\f1dc"}.fa-headphones::before{content:"\f025"}.fa-headphones-simple::before{content:"\f58f"}.fa-headphones-alt::before{content:"\f58f"}.fa-headset::before{content:"\f590"}.fa-heart::before{content:"\f004"}.fa-heart-circle-bolt::before{content:"\e4fc"}.fa-heart-circle-check::before{content:"\e4fd"}.fa-heart-circle-exclamation::before{content:"\e4fe"}.fa-heart-circle-minus::before{content:"\e4ff"}.fa-heart-circle-plus::before{content:"\e500"}.fa-heart-circle-xmark::before{content:"\e501"}.fa-heart-crack::before{content:"\f7a9"}.fa-heart-broken::before{content:"\f7a9"}.fa-heart-pulse::before{content:"\f21e"}.fa-heartbeat::before{content:"\f21e"}.fa-helicopter::before{content:"\f533"}.fa-helicopter-symbol::before{content:"\e502"}.fa-helmet-safety::before{content:"\f807"}.fa-hard-hat::before{content:"\f807"}.fa-hat-hard::before{content:"\f807"}.fa-helmet-un::before{content:"\e503"}.fa-highlighter::before{content:"\f591"}.fa-hill-avalanche::before{content:"\e507"}.fa-hill-rockslide::before{content:"\e508"}.fa-hippo::before{content:"\f6ed"}.fa-hockey-puck::before{content:"\f453"}.fa-holly-berry::before{content:"\f7aa"}.fa-horse::before{content:"\f6f0"}.fa-horse-head::before{content:"\f7ab"}.fa-hospital::before{content:"\f0f8"}.fa-hospital-alt::before{content:"\f0f8"}.fa-hospital-wide::before{content:"\f0f8"}.fa-hospital-user::before{content:"\f80d"}.fa-hot-tub-person::before{content:"\f593"}.fa-hot-tub::before{content:"\f593"}.fa-hotdog::before{content:"\f80f"}.fa-hotel::before{content:"\f594"}.fa-hourglass::before{content:"\f254"}.fa-hourglass-empty::before{content:"\f254"}.fa-hourglass-end::before{content:"\f253"}.fa-hourglass-3::before{content:"\f253"}.fa-hourglass-half::before{content:"\f252"}.fa-hourglass-2::before{content:"\f252"}.fa-hourglass-start::before{content:"\f251"}.fa-hourglass-1::before{content:"\f251"}.fa-house::before{content:"\f015"}.fa-home::before{content:"\f015"}.fa-home-alt::before{content:"\f015"}.fa-home-lg-alt::before{content:"\f015"}.fa-house-chimney::before{content:"\e3af"}.fa-home-lg::before{content:"\e3af"}.fa-house-chimney-crack::before{content:"\f6f1"}.fa-house-damage::before{content:"\f6f1"}.fa-house-chimney-medical::before{content:"\f7f2"}.fa-clinic-medical::before{content:"\f7f2"}.fa-house-chimney-user::before{content:"\e065"}.fa-house-chimney-window::before{content:"\e00d"}.fa-house-circle-check::before{content:"\e509"}.fa-house-circle-exclamation::before{content:"\e50a"}.fa-house-circle-xmark::before{content:"\e50b"}.fa-house-crack::before{content:"\e3b1"}.fa-house-fire::before{content:"\e50c"}.fa-house-flag::before{content:"\e50d"}.fa-house-flood-water::before{content:"\e50e"}.fa-house-flood-water-circle-arrow-right::before{content:"\e50f"}.fa-house-laptop::before{content:"\e066"}.fa-laptop-house::before{content:"\e066"}.fa-house-lock::before{content:"\e510"}.fa-house-medical::before{content:"\e3b2"}.fa-house-medical-circle-check::before{content:"\e511"}.fa-house-medical-circle-exclamation::before{content:"\e512"}.fa-house-medical-circle-xmark::before{content:"\e513"}.fa-house-medical-flag::before{content:"\e514"}.fa-house-signal::before{content:"\e012"}.fa-house-tsunami::before{content:"\e515"}.fa-house-user::before{content:"\e1b0"}.fa-home-user::before{content:"\e1b0"}.fa-hryvnia-sign::before{content:"\f6f2"}.fa-hryvnia::before{content:"\f6f2"}.fa-hurricane::before{content:"\f751"}.fa-i::before{content:"\49"}.fa-i-cursor::before{content:"\f246"}.fa-ice-cream::before{content:"\f810"}.fa-icicles::before{content:"\f7ad"}.fa-icons::before{content:"\f86d"}.fa-heart-music-camera-bolt::before{content:"\f86d"}.fa-id-badge::before{content:"\f2c1"}.fa-id-card::before{content:"\f2c2"}.fa-drivers-license::before{content:"\f2c2"}.fa-id-card-clip::before{content:"\f47f"}.fa-id-card-alt::before{content:"\f47f"}.fa-igloo::before{content:"\f7ae"}.fa-image::before{content:"\f03e"}.fa-image-portrait::before{content:"\f3e0"}.fa-portrait::before{content:"\f3e0"}.fa-images::before{content:"\f302"}.fa-inbox::before{content:"\f01c"}.fa-indent::before{content:"\f03c"}.fa-indian-rupee-sign::before{content:"\e1bc"}.fa-indian-rupee::before{content:"\e1bc"}.fa-inr::before{content:"\e1bc"}.fa-industry::before{content:"\f275"}.fa-infinity::before{content:"\f534"}.fa-info::before{content:"\f129"}.fa-italic::before{content:"\f033"}.fa-j::before{content:"\4a"}.fa-jar::before{content:"\e516"}.fa-jar-wheat::before{content:"\e517"}.fa-jedi::before{content:"\f669"}.fa-jet-fighter::before{content:"\f0fb"}.fa-fighter-jet::before{content:"\f0fb"}.fa-jet-fighter-up::before{content:"\e518"}.fa-joint::before{content:"\f595"}.fa-jug-detergent::before{content:"\e519"}.fa-k::before{content:"\4b"}.fa-kaaba::before{content:"\f66b"}.fa-key::before{content:"\f084"}.fa-keyboard::before{content:"\f11c"}.fa-khanda::before{content:"\f66d"}.fa-kip-sign::before{content:"\e1c4"}.fa-kit-medical::before{content:"\f479"}.fa-first-aid::before{content:"\f479"}.fa-kitchen-set::before{content:"\e51a"}.fa-kiwi-bird::before{content:"\f535"}.fa-l::before{content:"\4c"}.fa-land-mine-on::before{content:"\e51b"}.fa-landmark::before{content:"\f66f"}.fa-landmark-dome::before{content:"\f752"}.fa-landmark-alt::before{content:"\f752"}.fa-landmark-flag::before{content:"\e51c"}.fa-language::before{content:"\f1ab"}.fa-laptop::before{content:"\f109"}.fa-laptop-code::before{content:"\f5fc"}.fa-laptop-file::before{content:"\e51d"}.fa-laptop-medical::before{content:"\f812"}.fa-lari-sign::before{content:"\e1c8"}.fa-layer-group::before{content:"\f5fd"}.fa-leaf::before{content:"\f06c"}.fa-left-long::before{content:"\f30a"}.fa-long-arrow-alt-left::before{content:"\f30a"}.fa-left-right::before{content:"\f337"}.fa-arrows-alt-h::before{content:"\f337"}.fa-lemon::before{content:"\f094"}.fa-less-than::before{content:"\3c"}.fa-less-than-equal::before{content:"\f537"}.fa-life-ring::before{content:"\f1cd"}.fa-lightbulb::before{content:"\f0eb"}.fa-lines-leaning::before{content:"\e51e"}.fa-link::before{content:"\f0c1"}.fa-chain::before{content:"\f0c1"}.fa-link-slash::before{content:"\f127"}.fa-chain-broken::before{content:"\f127"}.fa-chain-slash::before{content:"\f127"}.fa-unlink::before{content:"\f127"}.fa-lira-sign::before{content:"\f195"}.fa-list::before{content:"\f03a"}.fa-list-squares::before{content:"\f03a"}.fa-list-check::before{content:"\f0ae"}.fa-tasks::before{content:"\f0ae"}.fa-list-ol::before{content:"\f0cb"}.fa-list-1-2::before{content:"\f0cb"}.fa-list-numeric::before{content:"\f0cb"}.fa-list-ul::before{content:"\f0ca"}.fa-list-dots::before{content:"\f0ca"}.fa-litecoin-sign::before{content:"\e1d3"}.fa-location-arrow::before{content:"\f124"}.fa-location-crosshairs::before{content:"\f601"}.fa-location::before{content:"\f601"}.fa-location-dot::before{content:"\f3c5"}.fa-map-marker-alt::before{content:"\f3c5"}.fa-location-pin::before{content:"\f041"}.fa-map-marker::before{content:"\f041"}.fa-location-pin-lock::before{content:"\e51f"}.fa-lock::before{content:"\f023"}.fa-lock-open::before{content:"\f3c1"}.fa-locust::before{content:"\e520"}.fa-lungs::before{content:"\f604"}.fa-lungs-virus::before{content:"\e067"}.fa-m::before{content:"\4d"}.fa-magnet::before{content:"\f076"}.fa-magnifying-glass::before{content:"\f002"}.fa-search::before{content:"\f002"}.fa-magnifying-glass-arrow-right::before{content:"\e521"}.fa-magnifying-glass-chart::before{content:"\e522"}.fa-magnifying-glass-dollar::before{content:"\f688"}.fa-search-dollar::before{content:"\f688"}.fa-magnifying-glass-location::before{content:"\f689"}.fa-search-location::before{content:"\f689"}.fa-magnifying-glass-minus::before{content:"\f010"}.fa-search-minus::before{content:"\f010"}.fa-magnifying-glass-plus::before{content:"\f00e"}.fa-search-plus::before{content:"\f00e"}.fa-manat-sign::before{content:"\e1d5"}.fa-map::before{content:"\f279"}.fa-map-location::before{content:"\f59f"}.fa-map-marked::before{content:"\f59f"}.fa-map-location-dot::before{content:"\f5a0"}.fa-map-marked-alt::before{content:"\f5a0"}.fa-map-pin::before{content:"\f276"}.fa-marker::before{content:"\f5a1"}.fa-mars::before{content:"\f222"}.fa-mars-and-venus::before{content:"\f224"}.fa-mars-and-venus-burst::before{content:"\e523"}.fa-mars-double::before{content:"\f227"}.fa-mars-stroke::before{content:"\f229"}.fa-mars-stroke-right::before{content:"\f22b"}.fa-mars-stroke-h::before{content:"\f22b"}.fa-mars-stroke-up::before{content:"\f22a"}.fa-mars-stroke-v::before{content:"\f22a"}.fa-martini-glass::before{content:"\f57b"}.fa-glass-martini-alt::before{content:"\f57b"}.fa-martini-glass-citrus::before{content:"\f561"}.fa-cocktail::before{content:"\f561"}.fa-martini-glass-empty::before{content:"\f000"}.fa-glass-martini::before{content:"\f000"}.fa-mask::before{content:"\f6fa"}.fa-mask-face::before{content:"\e1d7"}.fa-mask-ventilator::before{content:"\e524"}.fa-masks-theater::before{content:"\f630"}.fa-theater-masks::before{content:"\f630"}.fa-mattress-pillow::before{content:"\e525"}.fa-maximize::before{content:"\f31e"}.fa-expand-arrows-alt::before{content:"\f31e"}.fa-medal::before{content:"\f5a2"}.fa-memory::before{content:"\f538"}.fa-menorah::before{content:"\f676"}.fa-mercury::before{content:"\f223"}.fa-message::before{content:"\f27a"}.fa-comment-alt::before{content:"\f27a"}.fa-meteor::before{content:"\f753"}.fa-microchip::before{content:"\f2db"}.fa-microphone::before{content:"\f130"}.fa-microphone-lines::before{content:"\f3c9"}.fa-microphone-alt::before{content:"\f3c9"}.fa-microphone-lines-slash::before{content:"\f539"}.fa-microphone-alt-slash::before{content:"\f539"}.fa-microphone-slash::before{content:"\f131"}.fa-microscope::before{content:"\f610"}.fa-mill-sign::before{content:"\e1ed"}.fa-minimize::before{content:"\f78c"}.fa-compress-arrows-alt::before{content:"\f78c"}.fa-minus::before{content:"\f068"}.fa-subtract::before{content:"\f068"}.fa-mitten::before{content:"\f7b5"}.fa-mobile::before{content:"\f3ce"}.fa-mobile-android::before{content:"\f3ce"}.fa-mobile-phone::before{content:"\f3ce"}.fa-mobile-button::before{content:"\f10b"}.fa-mobile-retro::before{content:"\e527"}.fa-mobile-screen::before{content:"\f3cf"}.fa-mobile-android-alt::before{content:"\f3cf"}.fa-mobile-screen-button::before{content:"\f3cd"}.fa-mobile-alt::before{content:"\f3cd"}.fa-money-bill::before{content:"\f0d6"}.fa-money-bill-1::before{content:"\f3d1"}.fa-money-bill-alt::before{content:"\f3d1"}.fa-money-bill-1-wave::before{content:"\f53b"}.fa-money-bill-wave-alt::before{content:"\f53b"}.fa-money-bill-transfer::before{content:"\e528"}.fa-money-bill-trend-up::before{content:"\e529"}.fa-money-bill-wave::before{content:"\f53a"}.fa-money-bill-wheat::before{content:"\e52a"}.fa-money-bills::before{content:"\e1f3"}.fa-money-check::before{content:"\f53c"}.fa-money-check-dollar::before{content:"\f53d"}.fa-money-check-alt::before{content:"\f53d"}.fa-monument::before{content:"\f5a6"}.fa-moon::before{content:"\f186"}.fa-mortar-pestle::before{content:"\f5a7"}.fa-mosque::before{content:"\f678"}.fa-mosquito::before{content:"\e52b"}.fa-mosquito-net::before{content:"\e52c"}.fa-motorcycle::before{content:"\f21c"}.fa-mound::before{content:"\e52d"}.fa-mountain::before{content:"\f6fc"}.fa-mountain-city::before{content:"\e52e"}.fa-mountain-sun::before{content:"\e52f"}.fa-mug-hot::before{content:"\f7b6"}.fa-mug-saucer::before{content:"\f0f4"}.fa-coffee::before{content:"\f0f4"}.fa-music::before{content:"\f001"}.fa-n::before{content:"\4e"}.fa-naira-sign::before{content:"\e1f6"}.fa-network-wired::before{content:"\f6ff"}.fa-neuter::before{content:"\f22c"}.fa-newspaper::before{content:"\f1ea"}.fa-not-equal::before{content:"\f53e"}.fa-notdef::before{content:"\e1fe"}.fa-note-sticky::before{content:"\f249"}.fa-sticky-note::before{content:"\f249"}.fa-notes-medical::before{content:"\f481"}.fa-o::before{content:"\4f"}.fa-object-group::before{content:"\f247"}.fa-object-ungroup::before{content:"\f248"}.fa-oil-can::before{content:"\f613"}.fa-oil-well::before{content:"\e532"}.fa-om::before{content:"\f679"}.fa-otter::before{content:"\f700"}.fa-outdent::before{content:"\f03b"}.fa-dedent::before{content:"\f03b"}.fa-p::before{content:"\50"}.fa-pager::before{content:"\f815"}.fa-paint-roller::before{content:"\f5aa"}.fa-paintbrush::before{content:"\f1fc"}.fa-paint-brush::before{content:"\f1fc"}.fa-palette::before{content:"\f53f"}.fa-pallet::before{content:"\f482"}.fa-panorama::before{content:"\e209"}.fa-paper-plane::before{content:"\f1d8"}.fa-paperclip::before{content:"\f0c6"}.fa-parachute-box::before{content:"\f4cd"}.fa-paragraph::before{content:"\f1dd"}.fa-passport::before{content:"\f5ab"}.fa-paste::before{content:"\f0ea"}.fa-file-clipboard::before{content:"\f0ea"}.fa-pause::before{content:"\f04c"}.fa-paw::before{content:"\f1b0"}.fa-peace::before{content:"\f67c"}.fa-pen::before{content:"\f304"}.fa-pen-clip::before{content:"\f305"}.fa-pen-alt::before{content:"\f305"}.fa-pen-fancy::before{content:"\f5ac"}.fa-pen-nib::before{content:"\f5ad"}.fa-pen-ruler::before{content:"\f5ae"}.fa-pencil-ruler::before{content:"\f5ae"}.fa-pen-to-square::before{content:"\f044"}.fa-edit::before{content:"\f044"}.fa-pencil::before{content:"\f303"}.fa-pencil-alt::before{content:"\f303"}.fa-people-arrows::before{content:"\e068"}.fa-people-arrows-left-right::before{content:"\e068"}.fa-people-carry-box::before{content:"\f4ce"}.fa-people-carry::before{content:"\f4ce"}.fa-people-group::before{content:"\e533"}.fa-people-line::before{content:"\e534"}.fa-people-pulling::before{content:"\e535"}.fa-people-robbery::before{content:"\e536"}.fa-people-roof::before{content:"\e537"}.fa-pepper-hot::before{content:"\f816"}.fa-percent::before{content:"\25"}.fa-percentage::before{content:"\25"}.fa-person::before{content:"\f183"}.fa-male::before{content:"\f183"}.fa-person-arrow-down-to-line::before{content:"\e538"}.fa-person-arrow-up-from-line::before{content:"\e539"}.fa-person-biking::before{content:"\f84a"}.fa-biking::before{content:"\f84a"}.fa-person-booth::before{content:"\f756"}.fa-person-breastfeeding::before{content:"\e53a"}.fa-person-burst::before{content:"\e53b"}.fa-person-cane::before{content:"\e53c"}.fa-person-chalkboard::before{content:"\e53d"}.fa-person-circle-check::before{content:"\e53e"}.fa-person-circle-exclamation::before{content:"\e53f"}.fa-person-circle-minus::before{content:"\e540"}.fa-person-circle-plus::before{content:"\e541"}.fa-person-circle-question::before{content:"\e542"}.fa-person-circle-xmark::before{content:"\e543"}.fa-person-digging::before{content:"\f85e"}.fa-digging::before{content:"\f85e"}.fa-person-dots-from-line::before{content:"\f470"}.fa-diagnoses::before{content:"\f470"}.fa-person-dress::before{content:"\f182"}.fa-female::before{content:"\f182"}.fa-person-dress-burst::before{content:"\e544"}.fa-person-drowning::before{content:"\e545"}.fa-person-falling::before{content:"\e546"}.fa-person-falling-burst::before{content:"\e547"}.fa-person-half-dress::before{content:"\e548"}.fa-person-harassing::before{content:"\e549"}.fa-person-hiking::before{content:"\f6ec"}.fa-hiking::before{content:"\f6ec"}.fa-person-military-pointing::before{content:"\e54a"}.fa-person-military-rifle::before{content:"\e54b"}.fa-person-military-to-person::before{content:"\e54c"}.fa-person-praying::before{content:"\f683"}.fa-pray::before{content:"\f683"}.fa-person-pregnant::before{content:"\e31e"}.fa-person-rays::before{content:"\e54d"}.fa-person-rifle::before{content:"\e54e"}.fa-person-running::before{content:"\f70c"}.fa-running::before{content:"\f70c"}.fa-person-shelter::before{content:"\e54f"}.fa-person-skating::before{content:"\f7c5"}.fa-skating::before{content:"\f7c5"}.fa-person-skiing::before{content:"\f7c9"}.fa-skiing::before{content:"\f7c9"}.fa-person-skiing-nordic::before{content:"\f7ca"}.fa-skiing-nordic::before{content:"\f7ca"}.fa-person-snowboarding::before{content:"\f7ce"}.fa-snowboarding::before{content:"\f7ce"}.fa-person-swimming::before{content:"\f5c4"}.fa-swimmer::before{content:"\f5c4"}.fa-person-through-window::before{content:"\e5a9"}.fa-person-walking::before{content:"\f554"}.fa-walking::before{content:"\f554"}.fa-person-walking-arrow-loop-left::before{content:"\e551"}.fa-person-walking-arrow-right::before{content:"\e552"}.fa-person-walking-dashed-line-arrow-right::before{content:"\e553"}.fa-person-walking-luggage::before{content:"\e554"}.fa-person-walking-with-cane::before{content:"\f29d"}.fa-blind::before{content:"\f29d"}.fa-peseta-sign::before{content:"\e221"}.fa-peso-sign::before{content:"\e222"}.fa-phone::before{content:"\f095"}.fa-phone-flip::before{content:"\f879"}.fa-phone-alt::before{content:"\f879"}.fa-phone-slash::before{content:"\f3dd"}.fa-phone-volume::before{content:"\f2a0"}.fa-volume-control-phone::before{content:"\f2a0"}.fa-photo-film::before{content:"\f87c"}.fa-photo-video::before{content:"\f87c"}.fa-piggy-bank::before{content:"\f4d3"}.fa-pills::before{content:"\f484"}.fa-pizza-slice::before{content:"\f818"}.fa-place-of-worship::before{content:"\f67f"}.fa-plane::before{content:"\f072"}.fa-plane-arrival::before{content:"\f5af"}.fa-plane-circle-check::before{content:"\e555"}.fa-plane-circle-exclamation::before{content:"\e556"}.fa-plane-circle-xmark::before{content:"\e557"}.fa-plane-departure::before{content:"\f5b0"}.fa-plane-lock::before{content:"\e558"}.fa-plane-slash::before{content:"\e069"}.fa-plane-up::before{content:"\e22d"}.fa-plant-wilt::before{content:"\e5aa"}.fa-plate-wheat::before{content:"\e55a"}.fa-play::before{content:"\f04b"}.fa-plug::before{content:"\f1e6"}.fa-plug-circle-bolt::before{content:"\e55b"}.fa-plug-circle-check::before{content:"\e55c"}.fa-plug-circle-exclamation::before{content:"\e55d"}.fa-plug-circle-minus::before{content:"\e55e"}.fa-plug-circle-plus::before{content:"\e55f"}.fa-plug-circle-xmark::before{content:"\e560"}.fa-plus::before{content:"\2b"}.fa-add::before{content:"\2b"}.fa-plus-minus::before{content:"\e43c"}.fa-podcast::before{content:"\f2ce"}.fa-poo::before{content:"\f2fe"}.fa-poo-storm::before{content:"\f75a"}.fa-poo-bolt::before{content:"\f75a"}.fa-poop::before{content:"\f619"}.fa-power-off::before{content:"\f011"}.fa-prescription::before{content:"\f5b1"}.fa-prescription-bottle::before{content:"\f485"}.fa-prescription-bottle-medical::before{content:"\f486"}.fa-prescription-bottle-alt::before{content:"\f486"}.fa-print::before{content:"\f02f"}.fa-pump-medical::before{content:"\e06a"}.fa-pump-soap::before{content:"\e06b"}.fa-puzzle-piece::before{content:"\f12e"}.fa-q::before{content:"\51"}.fa-qrcode::before{content:"\f029"}.fa-question::before{content:"\3f"}.fa-quote-left::before{content:"\f10d"}.fa-quote-left-alt::before{content:"\f10d"}.fa-quote-right::before{content:"\f10e"}.fa-quote-right-alt::before{content:"\f10e"}.fa-r::before{content:"\52"}.fa-radiation::before{content:"\f7b9"}.fa-radio::before{content:"\f8d7"}.fa-rainbow::before{content:"\f75b"}.fa-ranking-star::before{content:"\e561"}.fa-receipt::before{content:"\f543"}.fa-record-vinyl::before{content:"\f8d9"}.fa-rectangle-ad::before{content:"\f641"}.fa-ad::before{content:"\f641"}.fa-rectangle-list::before{content:"\f022"}.fa-list-alt::before{content:"\f022"}.fa-rectangle-xmark::before{content:"\f410"}.fa-rectangle-times::before{content:"\f410"}.fa-times-rectangle::before{content:"\f410"}.fa-window-close::before{content:"\f410"}.fa-recycle::before{content:"\f1b8"}.fa-registered::before{content:"\f25d"}.fa-repeat::before{content:"\f363"}.fa-reply::before{content:"\f3e5"}.fa-mail-reply::before{content:"\f3e5"}.fa-reply-all::before{content:"\f122"}.fa-mail-reply-all::before{content:"\f122"}.fa-republican::before{content:"\f75e"}.fa-restroom::before{content:"\f7bd"}.fa-retweet::before{content:"\f079"}.fa-ribbon::before{content:"\f4d6"}.fa-right-from-bracket::before{content:"\f2f5"}.fa-sign-out-alt::before{content:"\f2f5"}.fa-right-left::before{content:"\f362"}.fa-exchange-alt::before{content:"\f362"}.fa-right-long::before{content:"\f30b"}.fa-long-arrow-alt-right::before{content:"\f30b"}.fa-right-to-bracket::before{content:"\f2f6"}.fa-sign-in-alt::before{content:"\f2f6"}.fa-ring::before{content:"\f70b"}.fa-road::before{content:"\f018"}.fa-road-barrier::before{content:"\e562"}.fa-road-bridge::before{content:"\e563"}.fa-road-circle-check::before{content:"\e564"}.fa-road-circle-exclamation::before{content:"\e565"}.fa-road-circle-xmark::before{content:"\e566"}.fa-road-lock::before{content:"\e567"}.fa-road-spikes::before{content:"\e568"}.fa-robot::before{content:"\f544"}.fa-rocket::before{content:"\f135"}.fa-rotate::before{content:"\f2f1"}.fa-sync-alt::before{content:"\f2f1"}.fa-rotate-left::before{content:"\f2ea"}.fa-rotate-back::before{content:"\f2ea"}.fa-rotate-backward::before{content:"\f2ea"}.fa-undo-alt::before{content:"\f2ea"}.fa-rotate-right::before{content:"\f2f9"}.fa-redo-alt::before{content:"\f2f9"}.fa-rotate-forward::before{content:"\f2f9"}.fa-route::before{content:"\f4d7"}.fa-rss::before{content:"\f09e"}.fa-feed::before{content:"\f09e"}.fa-ruble-sign::before{content:"\f158"}.fa-rouble::before{content:"\f158"}.fa-rub::before{content:"\f158"}.fa-ruble::before{content:"\f158"}.fa-rug::before{content:"\e569"}.fa-ruler::before{content:"\f545"}.fa-ruler-combined::before{content:"\f546"}.fa-ruler-horizontal::before{content:"\f547"}.fa-ruler-vertical::before{content:"\f548"}.fa-rupee-sign::before{content:"\f156"}.fa-rupee::before{content:"\f156"}.fa-rupiah-sign::before{content:"\e23d"}.fa-s::before{content:"\53"}.fa-sack-dollar::before{content:"\f81d"}.fa-sack-xmark::before{content:"\e56a"}.fa-sailboat::before{content:"\e445"}.fa-satellite::before{content:"\f7bf"}.fa-satellite-dish::before{content:"\f7c0"}.fa-scale-balanced::before{content:"\f24e"}.fa-balance-scale::before{content:"\f24e"}.fa-scale-unbalanced::before{content:"\f515"}.fa-balance-scale-left::before{content:"\f515"}.fa-scale-unbalanced-flip::before{content:"\f516"}.fa-balance-scale-right::before{content:"\f516"}.fa-school::before{content:"\f549"}.fa-school-circle-check::before{content:"\e56b"}.fa-school-circle-exclamation::before{content:"\e56c"}.fa-school-circle-xmark::before{content:"\e56d"}.fa-school-flag::before{content:"\e56e"}.fa-school-lock::before{content:"\e56f"}.fa-scissors::before{content:"\f0c4"}.fa-cut::before{content:"\f0c4"}.fa-screwdriver::before{content:"\f54a"}.fa-screwdriver-wrench::before{content:"\f7d9"}.fa-tools::before{content:"\f7d9"}.fa-scroll::before{content:"\f70e"}.fa-scroll-torah::before{content:"\f6a0"}.fa-torah::before{content:"\f6a0"}.fa-sd-card::before{content:"\f7c2"}.fa-section::before{content:"\e447"}.fa-seedling::before{content:"\f4d8"}.fa-sprout::before{content:"\f4d8"}.fa-server::before{content:"\f233"}.fa-shapes::before{content:"\f61f"}.fa-triangle-circle-square::before{content:"\f61f"}.fa-share::before{content:"\f064"}.fa-arrow-turn-right::before{content:"\f064"}.fa-mail-forward::before{content:"\f064"}.fa-share-from-square::before{content:"\f14d"}.fa-share-square::before{content:"\f14d"}.fa-share-nodes::before{content:"\f1e0"}.fa-share-alt::before{content:"\f1e0"}.fa-sheet-plastic::before{content:"\e571"}.fa-shekel-sign::before{content:"\f20b"}.fa-ils::before{content:"\f20b"}.fa-shekel::before{content:"\f20b"}.fa-sheqel::before{content:"\f20b"}.fa-sheqel-sign::before{content:"\f20b"}.fa-shield::before{content:"\f132"}.fa-shield-blank::before{content:"\f132"}.fa-shield-cat::before{content:"\e572"}.fa-shield-dog::before{content:"\e573"}.fa-shield-halved::before{content:"\f3ed"}.fa-shield-alt::before{content:"\f3ed"}.fa-shield-heart::before{content:"\e574"}.fa-shield-virus::before{content:"\e06c"}.fa-ship::before{content:"\f21a"}.fa-shirt::before{content:"\f553"}.fa-t-shirt::before{content:"\f553"}.fa-tshirt::before{content:"\f553"}.fa-shoe-prints::before{content:"\f54b"}.fa-shop::before{content:"\f54f"}.fa-store-alt::before{content:"\f54f"}.fa-shop-lock::before{content:"\e4a5"}.fa-shop-slash::before{content:"\e070"}.fa-store-alt-slash::before{content:"\e070"}.fa-shower::before{content:"\f2cc"}.fa-shrimp::before{content:"\e448"}.fa-shuffle::before{content:"\f074"}.fa-random::before{content:"\f074"}.fa-shuttle-space::before{content:"\f197"}.fa-space-shuttle::before{content:"\f197"}.fa-sign-hanging::before{content:"\f4d9"}.fa-sign::before{content:"\f4d9"}.fa-signal::before{content:"\f012"}.fa-signal-5::before{content:"\f012"}.fa-signal-perfect::before{content:"\f012"}.fa-signature::before{content:"\f5b7"}.fa-signs-post::before{content:"\f277"}.fa-map-signs::before{content:"\f277"}.fa-sim-card::before{content:"\f7c4"}.fa-sink::before{content:"\e06d"}.fa-sitemap::before{content:"\f0e8"}.fa-skull::before{content:"\f54c"}.fa-skull-crossbones::before{content:"\f714"}.fa-slash::before{content:"\f715"}.fa-sleigh::before{content:"\f7cc"}.fa-sliders::before{content:"\f1de"}.fa-sliders-h::before{content:"\f1de"}.fa-smog::before{content:"\f75f"}.fa-smoking::before{content:"\f48d"}.fa-snowflake::before{content:"\f2dc"}.fa-snowman::before{content:"\f7d0"}.fa-snowplow::before{content:"\f7d2"}.fa-soap::before{content:"\e06e"}.fa-socks::before{content:"\f696"}.fa-solar-panel::before{content:"\f5ba"}.fa-sort::before{content:"\f0dc"}.fa-unsorted::before{content:"\f0dc"}.fa-sort-down::before{content:"\f0dd"}.fa-sort-desc::before{content:"\f0dd"}.fa-sort-up::before{content:"\f0de"}.fa-sort-asc::before{content:"\f0de"}.fa-spa::before{content:"\f5bb"}.fa-spaghetti-monster-flying::before{content:"\f67b"}.fa-pastafarianism::before{content:"\f67b"}.fa-spell-check::before{content:"\f891"}.fa-spider::before{content:"\f717"}.fa-spinner::before{content:"\f110"}.fa-splotch::before{content:"\f5bc"}.fa-spoon::before{content:"\f2e5"}.fa-utensil-spoon::before{content:"\f2e5"}.fa-spray-can::before{content:"\f5bd"}.fa-spray-can-sparkles::before{content:"\f5d0"}.fa-air-freshener::before{content:"\f5d0"}.fa-square::before{content:"\f0c8"}.fa-square-arrow-up-right::before{content:"\f14c"}.fa-external-link-square::before{content:"\f14c"}.fa-square-caret-down::before{content:"\f150"}.fa-caret-square-down::before{content:"\f150"}.fa-square-caret-left::before{content:"\f191"}.fa-caret-square-left::before{content:"\f191"}.fa-square-caret-right::before{content:"\f152"}.fa-caret-square-right::before{content:"\f152"}.fa-square-caret-up::before{content:"\f151"}.fa-caret-square-up::before{content:"\f151"}.fa-square-check::before{content:"\f14a"}.fa-check-square::before{content:"\f14a"}.fa-square-envelope::before{content:"\f199"}.fa-envelope-square::before{content:"\f199"}.fa-square-full::before{content:"\f45c"}.fa-square-h::before{content:"\f0fd"}.fa-h-square::before{content:"\f0fd"}.fa-square-minus::before{content:"\f146"}.fa-minus-square::before{content:"\f146"}.fa-square-nfi::before{content:"\e576"}.fa-square-parking::before{content:"\f540"}.fa-parking::before{content:"\f540"}.fa-square-pen::before{content:"\f14b"}.fa-pen-square::before{content:"\f14b"}.fa-pencil-square::before{content:"\f14b"}.fa-square-person-confined::before{content:"\e577"}.fa-square-phone::before{content:"\f098"}.fa-phone-square::before{content:"\f098"}.fa-square-phone-flip::before{content:"\f87b"}.fa-phone-square-alt::before{content:"\f87b"}.fa-square-plus::before{content:"\f0fe"}.fa-plus-square::before{content:"\f0fe"}.fa-square-poll-horizontal::before{content:"\f682"}.fa-poll-h::before{content:"\f682"}.fa-square-poll-vertical::before{content:"\f681"}.fa-poll::before{content:"\f681"}.fa-square-root-variable::before{content:"\f698"}.fa-square-root-alt::before{content:"\f698"}.fa-square-rss::before{content:"\f143"}.fa-rss-square::before{content:"\f143"}.fa-square-share-nodes::before{content:"\f1e1"}.fa-share-alt-square::before{content:"\f1e1"}.fa-square-up-right::before{content:"\f360"}.fa-external-link-square-alt::before{content:"\f360"}.fa-square-virus::before{content:"\e578"}.fa-square-xmark::before{content:"\f2d3"}.fa-times-square::before{content:"\f2d3"}.fa-xmark-square::before{content:"\f2d3"}.fa-staff-snake::before{content:"\e579"}.fa-rod-asclepius::before{content:"\e579"}.fa-rod-snake::before{content:"\e579"}.fa-staff-aesculapius::before{content:"\e579"}.fa-stairs::before{content:"\e289"}.fa-stamp::before{content:"\f5bf"}.fa-stapler::before{content:"\e5af"}.fa-star::before{content:"\f005"}.fa-star-and-crescent::before{content:"\f699"}.fa-star-half::before{content:"\f089"}.fa-star-half-stroke::before{content:"\f5c0"}.fa-star-half-alt::before{content:"\f5c0"}.fa-star-of-david::before{content:"\f69a"}.fa-star-of-life::before{content:"\f621"}.fa-sterling-sign::before{content:"\f154"}.fa-gbp::before{content:"\f154"}.fa-pound-sign::before{content:"\f154"}.fa-stethoscope::before{content:"\f0f1"}.fa-stop::before{content:"\f04d"}.fa-stopwatch::before{content:"\f2f2"}.fa-stopwatch-20::before{content:"\e06f"}.fa-store::before{content:"\f54e"}.fa-store-slash::before{content:"\e071"}.fa-street-view::before{content:"\f21d"}.fa-strikethrough::before{content:"\f0cc"}.fa-stroopwafel::before{content:"\f551"}.fa-subscript::before{content:"\f12c"}.fa-suitcase::before{content:"\f0f2"}.fa-suitcase-medical::before{content:"\f0fa"}.fa-medkit::before{content:"\f0fa"}.fa-suitcase-rolling::before{content:"\f5c1"}.fa-sun::before{content:"\f185"}.fa-sun-plant-wilt::before{content:"\e57a"}.fa-superscript::before{content:"\f12b"}.fa-swatchbook::before{content:"\f5c3"}.fa-synagogue::before{content:"\f69b"}.fa-syringe::before{content:"\f48e"}.fa-t::before{content:"\54"}.fa-table::before{content:"\f0ce"}.fa-table-cells::before{content:"\f00a"}.fa-th::before{content:"\f00a"}.fa-table-cells-large::before{content:"\f009"}.fa-th-large::before{content:"\f009"}.fa-table-columns::before{content:"\f0db"}.fa-columns::before{content:"\f0db"}.fa-table-list::before{content:"\f00b"}.fa-th-list::before{content:"\f00b"}.fa-table-tennis-paddle-ball::before{content:"\f45d"}.fa-ping-pong-paddle-ball::before{content:"\f45d"}.fa-table-tennis::before{content:"\f45d"}.fa-tablet::before{content:"\f3fb"}.fa-tablet-android::before{content:"\f3fb"}.fa-tablet-button::before{content:"\f10a"}.fa-tablet-screen-button::before{content:"\f3fa"}.fa-tablet-alt::before{content:"\f3fa"}.fa-tablets::before{content:"\f490"}.fa-tachograph-digital::before{content:"\f566"}.fa-digital-tachograph::before{content:"\f566"}.fa-tag::before{content:"\f02b"}.fa-tags::before{content:"\f02c"}.fa-tape::before{content:"\f4db"}.fa-tarp::before{content:"\e57b"}.fa-tarp-droplet::before{content:"\e57c"}.fa-taxi::before{content:"\f1ba"}.fa-cab::before{content:"\f1ba"}.fa-teeth::before{content:"\f62e"}.fa-teeth-open::before{content:"\f62f"}.fa-temperature-arrow-down::before{content:"\e03f"}.fa-temperature-down::before{content:"\e03f"}.fa-temperature-arrow-up::before{content:"\e040"}.fa-temperature-up::before{content:"\e040"}.fa-temperature-empty::before{content:"\f2cb"}.fa-temperature-0::before{content:"\f2cb"}.fa-thermometer-0::before{content:"\f2cb"}.fa-thermometer-empty::before{content:"\f2cb"}.fa-temperature-full::before{content:"\f2c7"}.fa-temperature-4::before{content:"\f2c7"}.fa-thermometer-4::before{content:"\f2c7"}.fa-thermometer-full::before{content:"\f2c7"}.fa-temperature-half::before{content:"\f2c9"}.fa-temperature-2::before{content:"\f2c9"}.fa-thermometer-2::before{content:"\f2c9"}.fa-thermometer-half::before{content:"\f2c9"}.fa-temperature-high::before{content:"\f769"}.fa-temperature-low::before{content:"\f76b"}.fa-temperature-quarter::before{content:"\f2ca"}.fa-temperature-1::before{content:"\f2ca"}.fa-thermometer-1::before{content:"\f2ca"}.fa-thermometer-quarter::before{content:"\f2ca"}.fa-temperature-three-quarters::before{content:"\f2c8"}.fa-temperature-3::before{content:"\f2c8"}.fa-thermometer-3::before{content:"\f2c8"}.fa-thermometer-three-quarters::before{content:"\f2c8"}.fa-tenge-sign::before{content:"\f7d7"}.fa-tenge::before{content:"\f7d7"}.fa-tent::before{content:"\e57d"}.fa-tent-arrow-down-to-line::before{content:"\e57e"}.fa-tent-arrow-left-right::before{content:"\e57f"}.fa-tent-arrow-turn-left::before{content:"\e580"}.fa-tent-arrows-down::before{content:"\e581"}.fa-tents::before{content:"\e582"}.fa-terminal::before{content:"\f120"}.fa-text-height::before{content:"\f034"}.fa-text-slash::before{content:"\f87d"}.fa-remove-format::before{content:"\f87d"}.fa-text-width::before{content:"\f035"}.fa-thermometer::before{content:"\f491"}.fa-thumbs-down::before{content:"\f165"}.fa-thumbs-up::before{content:"\f164"}.fa-thumbtack::before{content:"\f08d"}.fa-thumb-tack::before{content:"\f08d"}.fa-ticket::before{content:"\f145"}.fa-ticket-simple::before{content:"\f3ff"}.fa-ticket-alt::before{content:"\f3ff"}.fa-timeline::before{content:"\e29c"}.fa-toggle-off::before{content:"\f204"}.fa-toggle-on::before{content:"\f205"}.fa-toilet::before{content:"\f7d8"}.fa-toilet-paper::before{content:"\f71e"}.fa-toilet-paper-slash::before{content:"\e072"}.fa-toilet-portable::before{content:"\e583"}.fa-toilets-portable::before{content:"\e584"}.fa-toolbox::before{content:"\f552"}.fa-tooth::before{content:"\f5c9"}.fa-torii-gate::before{content:"\f6a1"}.fa-tornado::before{content:"\f76f"}.fa-tower-broadcast::before{content:"\f519"}.fa-broadcast-tower::before{content:"\f519"}.fa-tower-cell::before{content:"\e585"}.fa-tower-observation::before{content:"\e586"}.fa-tractor::before{content:"\f722"}.fa-trademark::before{content:"\f25c"}.fa-traffic-light::before{content:"\f637"}.fa-trailer::before{content:"\e041"}.fa-train::before{content:"\f238"}.fa-train-subway::before{content:"\f239"}.fa-subway::before{content:"\f239"}.fa-train-tram::before{content:"\e5b4"}.fa-transgender::before{content:"\f225"}.fa-transgender-alt::before{content:"\f225"}.fa-trash::before{content:"\f1f8"}.fa-trash-arrow-up::before{content:"\f829"}.fa-trash-restore::before{content:"\f829"}.fa-trash-can::before{content:"\f2ed"}.fa-trash-alt::before{content:"\f2ed"}.fa-trash-can-arrow-up::before{content:"\f82a"}.fa-trash-restore-alt::before{content:"\f82a"}.fa-tree::before{content:"\f1bb"}.fa-tree-city::before{content:"\e587"}.fa-triangle-exclamation::before{content:"\f071"}.fa-exclamation-triangle::before{content:"\f071"}.fa-warning::before{content:"\f071"}.fa-trophy::before{content:"\f091"}.fa-trowel::before{content:"\e589"}.fa-trowel-bricks::before{content:"\e58a"}.fa-truck::before{content:"\f0d1"}.fa-truck-arrow-right::before{content:"\e58b"}.fa-truck-droplet::before{content:"\e58c"}.fa-truck-fast::before{content:"\f48b"}.fa-shipping-fast::before{content:"\f48b"}.fa-truck-field::before{content:"\e58d"}.fa-truck-field-un::before{content:"\e58e"}.fa-truck-front::before{content:"\e2b7"}.fa-truck-medical::before{content:"\f0f9"}.fa-ambulance::before{content:"\f0f9"}.fa-truck-monster::before{content:"\f63b"}.fa-truck-moving::before{content:"\f4df"}.fa-truck-pickup::before{content:"\f63c"}.fa-truck-plane::before{content:"\e58f"}.fa-truck-ramp-box::before{content:"\f4de"}.fa-truck-loading::before{content:"\f4de"}.fa-tty::before{content:"\f1e4"}.fa-teletype::before{content:"\f1e4"}.fa-turkish-lira-sign::before{content:"\e2bb"}.fa-try::before{content:"\e2bb"}.fa-turkish-lira::before{content:"\e2bb"}.fa-turn-down::before{content:"\f3be"}.fa-level-down-alt::before{content:"\f3be"}.fa-turn-up::before{content:"\f3bf"}.fa-level-up-alt::before{content:"\f3bf"}.fa-tv::before{content:"\f26c"}.fa-television::before{content:"\f26c"}.fa-tv-alt::before{content:"\f26c"}.fa-u::before{content:"\55"}.fa-umbrella::before{content:"\f0e9"}.fa-umbrella-beach::before{content:"\f5ca"}.fa-underline::before{content:"\f0cd"}.fa-universal-access::before{content:"\f29a"}.fa-unlock::before{content:"\f09c"}.fa-unlock-keyhole::before{content:"\f13e"}.fa-unlock-alt::before{content:"\f13e"}.fa-up-down::before{content:"\f338"}.fa-arrows-alt-v::before{content:"\f338"}.fa-up-down-left-right::before{content:"\f0b2"}.fa-arrows-alt::before{content:"\f0b2"}.fa-up-long::before{content:"\f30c"}.fa-long-arrow-alt-up::before{content:"\f30c"}.fa-up-right-and-down-left-from-center::before{content:"\f424"}.fa-expand-alt::before{content:"\f424"}.fa-up-right-from-square::before{content:"\f35d"}.fa-external-link-alt::before{content:"\f35d"}.fa-upload::before{content:"\f093"}.fa-user::before{content:"\f007"}.fa-user-astronaut::before{content:"\f4fb"}.fa-user-check::before{content:"\f4fc"}.fa-user-clock::before{content:"\f4fd"}.fa-user-doctor::before{content:"\f0f0"}.fa-user-md::before{content:"\f0f0"}.fa-user-gear::before{content:"\f4fe"}.fa-user-cog::before{content:"\f4fe"}.fa-user-graduate::before{content:"\f501"}.fa-user-group::before{content:"\f500"}.fa-user-friends::before{content:"\f500"}.fa-user-injured::before{content:"\f728"}.fa-user-large::before{content:"\f406"}.fa-user-alt::before{content:"\f406"}.fa-user-large-slash::before{content:"\f4fa"}.fa-user-alt-slash::before{content:"\f4fa"}.fa-user-lock::before{content:"\f502"}.fa-user-minus::before{content:"\f503"}.fa-user-ninja::before{content:"\f504"}.fa-user-nurse::before{content:"\f82f"}.fa-user-pen::before{content:"\f4ff"}.fa-user-edit::before{content:"\f4ff"}.fa-user-plus::before{content:"\f234"}.fa-user-secret::before{content:"\f21b"}.fa-user-shield::before{content:"\f505"}.fa-user-slash::before{content:"\f506"}.fa-user-tag::before{content:"\f507"}.fa-user-tie::before{content:"\f508"}.fa-user-xmark::before{content:"\f235"}.fa-user-times::before{content:"\f235"}.fa-users::before{content:"\f0c0"}.fa-users-between-lines::before{content:"\e591"}.fa-users-gear::before{content:"\f509"}.fa-users-cog::before{content:"\f509"}.fa-users-line::before{content:"\e592"}.fa-users-rays::before{content:"\e593"}.fa-users-rectangle::before{content:"\e594"}.fa-users-slash::before{content:"\e073"}.fa-users-viewfinder::before{content:"\e595"}.fa-utensils::before{content:"\f2e7"}.fa-cutlery::before{content:"\f2e7"}.fa-v::before{content:"\56"}.fa-van-shuttle::before{content:"\f5b6"}.fa-shuttle-van::before{content:"\f5b6"}.fa-vault::before{content:"\e2c5"}.fa-vector-square::before{content:"\f5cb"}.fa-venus::before{content:"\f221"}.fa-venus-double::before{content:"\f226"}.fa-venus-mars::before{content:"\f228"}.fa-vest::before{content:"\e085"}.fa-vest-patches::before{content:"\e086"}.fa-vial::before{content:"\f492"}.fa-vial-circle-check::before{content:"\e596"}.fa-vial-virus::before{content:"\e597"}.fa-vials::before{content:"\f493"}.fa-video::before{content:"\f03d"}.fa-video-camera::before{content:"\f03d"}.fa-video-slash::before{content:"\f4e2"}.fa-vihara::before{content:"\f6a7"}.fa-virus::before{content:"\e074"}.fa-virus-covid::before{content:"\e4a8"}.fa-virus-covid-slash::before{content:"\e4a9"}.fa-virus-slash::before{content:"\e075"}.fa-viruses::before{content:"\e076"}.fa-voicemail::before{content:"\f897"}.fa-volcano::before{content:"\f770"}.fa-volleyball::before{content:"\f45f"}.fa-volleyball-ball::before{content:"\f45f"}.fa-volume-high::before{content:"\f028"}.fa-volume-up::before{content:"\f028"}.fa-volume-low::before{content:"\f027"}.fa-volume-down::before{content:"\f027"}.fa-volume-off::before{content:"\f026"}.fa-volume-xmark::before{content:"\f6a9"}.fa-volume-mute::before{content:"\f6a9"}.fa-volume-times::before{content:"\f6a9"}.fa-vr-cardboard::before{content:"\f729"}.fa-w::before{content:"\57"}.fa-walkie-talkie::before{content:"\f8ef"}.fa-wallet::before{content:"\f555"}.fa-wand-magic::before{content:"\f0d0"}.fa-magic::before{content:"\f0d0"}.fa-wand-magic-sparkles::before{content:"\e2ca"}.fa-magic-wand-sparkles::before{content:"\e2ca"}.fa-wand-sparkles::before{content:"\f72b"}.fa-warehouse::before{content:"\f494"}.fa-water::before{content:"\f773"}.fa-water-ladder::before{content:"\f5c5"}.fa-ladder-water::before{content:"\f5c5"}.fa-swimming-pool::before{content:"\f5c5"}.fa-wave-square::before{content:"\f83e"}.fa-weight-hanging::before{content:"\f5cd"}.fa-weight-scale::before{content:"\f496"}.fa-weight::before{content:"\f496"}.fa-wheat-awn::before{content:"\e2cd"}.fa-wheat-alt::before{content:"\e2cd"}.fa-wheat-awn-circle-exclamation::before{content:"\e598"}.fa-wheelchair::before{content:"\f193"}.fa-wheelchair-move::before{content:"\e2ce"}.fa-wheelchair-alt::before{content:"\e2ce"}.fa-whiskey-glass::before{content:"\f7a0"}.fa-glass-whiskey::before{content:"\f7a0"}.fa-wifi::before{content:"\f1eb"}.fa-wifi-3::before{content:"\f1eb"}.fa-wifi-strong::before{content:"\f1eb"}.fa-wind::before{content:"\f72e"}.fa-window-maximize::before{content:"\f2d0"}.fa-window-minimize::before{content:"\f2d1"}.fa-window-restore::before{content:"\f2d2"}.fa-wine-bottle::before{content:"\f72f"}.fa-wine-glass::before{content:"\f4e3"}.fa-wine-glass-empty::before{content:"\f5ce"}.fa-wine-glass-alt::before{content:"\f5ce"}.fa-won-sign::before{content:"\f159"}.fa-krw::before{content:"\f159"}.fa-won::before{content:"\f159"}.fa-worm::before{content:"\e599"}.fa-wrench::before{content:"\f0ad"}.fa-x::before{content:"\58"}.fa-x-ray::before{content:"\f497"}.fa-xmark::before{content:"\f00d"}.fa-close::before{content:"\f00d"}.fa-multiply::before{content:"\f00d"}.fa-remove::before{content:"\f00d"}.fa-times::before{content:"\f00d"}.fa-xmarks-lines::before{content:"\e59a"}.fa-y::before{content:"\59"}.fa-yen-sign::before{content:"\f157"}.fa-cny::before{content:"\f157"}.fa-jpy::before{content:"\f157"}.fa-rmb::before{content:"\f157"}.fa-yen::before{content:"\f157"}.fa-yin-yang::before{content:"\f6ad"}.fa-z::before{content:"\5a"}.fa-sr-only,.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}.fa-sr-only-focusable:not(:focus),.sr-only-focusable:not(:focus){position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}:host,:root{--fa-font-brands:normal 400 1em/1 "Font Awesome 6 Brands"}@font-face{font-family:'Font Awesome 6 Brands';font-style:normal;font-weight:400;font-display:block;src:url(../fonts/fa-brands-400.woff2) format("woff2"),url(../fonts/fa-brands-400.ttf) format("truetype")}.fa-brands,.fab{font-family:'Font Awesome 6 Brands';font-weight:400}.fa-42-group:before{content:"\e080"}.fa-innosoft:before{content:"\e080"}.fa-500px:before{content:"\f26e"}.fa-accessible-icon:before{content:"\f368"}.fa-accusoft:before{content:"\f369"}.fa-adn:before{content:"\f170"}.fa-adversal:before{content:"\f36a"}.fa-affiliatetheme:before{content:"\f36b"}.fa-airbnb:before{content:"\f834"}.fa-algolia:before{content:"\f36c"}.fa-alipay:before{content:"\f642"}.fa-amazon:before{content:"\f270"}.fa-amazon-pay:before{content:"\f42c"}.fa-amilia:before{content:"\f36d"}.fa-android:before{content:"\f17b"}.fa-angellist:before{content:"\f209"}.fa-angrycreative:before{content:"\f36e"}.fa-angular:before{content:"\f420"}.fa-app-store:before{content:"\f36f"}.fa-app-store-ios:before{content:"\f370"}.fa-apper:before{content:"\f371"}.fa-apple:before{content:"\f179"}.fa-apple-pay:before{content:"\f415"}.fa-artstation:before{content:"\f77a"}.fa-asymmetrik:before{content:"\f372"}.fa-atlassian:before{content:"\f77b"}.fa-audible:before{content:"\f373"}.fa-autoprefixer:before{content:"\f41c"}.fa-avianex:before{content:"\f374"}.fa-aviato:before{content:"\f421"}.fa-aws:before{content:"\f375"}.fa-bandcamp:before{content:"\f2d5"}.fa-battle-net:before{content:"\f835"}.fa-behance:before{content:"\f1b4"}.fa-bilibili:before{content:"\e3d9"}.fa-bimobject:before{content:"\f378"}.fa-bitbucket:before{content:"\f171"}.fa-bitcoin:before{content:"\f379"}.fa-bity:before{content:"\f37a"}.fa-black-tie:before{content:"\f27e"}.fa-blackberry:before{content:"\f37b"}.fa-blogger:before{content:"\f37c"}.fa-blogger-b:before{content:"\f37d"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-bootstrap:before{content:"\f836"}.fa-bots:before{content:"\e340"}.fa-btc:before{content:"\f15a"}.fa-buffer:before{content:"\f837"}.fa-buromobelexperte:before{content:"\f37f"}.fa-buy-n-large:before{content:"\f8a6"}.fa-buysellads:before{content:"\f20d"}.fa-canadian-maple-leaf:before{content:"\f785"}.fa-cc-amazon-pay:before{content:"\f42d"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-apple-pay:before{content:"\f416"}.fa-cc-diners-club:before{content:"\f24c"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-cc-visa:before{content:"\f1f0"}.fa-centercode:before{content:"\f380"}.fa-centos:before{content:"\f789"}.fa-chrome:before{content:"\f268"}.fa-chromecast:before{content:"\f838"}.fa-cloudflare:before{content:"\e07d"}.fa-cloudscale:before{content:"\f383"}.fa-cloudsmith:before{content:"\f384"}.fa-cloudversify:before{content:"\f385"}.fa-cmplid:before{content:"\e360"}.fa-codepen:before{content:"\f1cb"}.fa-codiepie:before{content:"\f284"}.fa-confluence:before{content:"\f78d"}.fa-connectdevelop:before{content:"\f20e"}.fa-contao:before{content:"\f26d"}.fa-cotton-bureau:before{content:"\f89e"}.fa-cpanel:before{content:"\f388"}.fa-creative-commons:before{content:"\f25e"}.fa-creative-commons-by:before{content:"\f4e7"}.fa-creative-commons-nc:before{content:"\f4e8"}.fa-creative-commons-nc-eu:before{content:"\f4e9"}.fa-creative-commons-nc-jp:before{content:"\f4ea"}.fa-creative-commons-nd:before{content:"\f4eb"}.fa-creative-commons-pd:before{content:"\f4ec"}.fa-creative-commons-pd-alt:before{content:"\f4ed"}.fa-creative-commons-remix:before{content:"\f4ee"}.fa-creative-commons-sa:before{content:"\f4ef"}.fa-creative-commons-sampling:before{content:"\f4f0"}.fa-creative-commons-sampling-plus:before{content:"\f4f1"}.fa-creative-commons-share:before{content:"\f4f2"}.fa-creative-commons-zero:before{content:"\f4f3"}.fa-critical-role:before{content:"\f6c9"}.fa-css3:before{content:"\f13c"}.fa-css3-alt:before{content:"\f38b"}.fa-cuttlefish:before{content:"\f38c"}.fa-d-and-d:before{content:"\f38d"}.fa-d-and-d-beyond:before{content:"\f6ca"}.fa-dailymotion:before{content:"\e052"}.fa-dashcube:before{content:"\f210"}.fa-deezer:before{content:"\e077"}.fa-delicious:before{content:"\f1a5"}.fa-deploydog:before{content:"\f38e"}.fa-deskpro:before{content:"\f38f"}.fa-dev:before{content:"\f6cc"}.fa-deviantart:before{content:"\f1bd"}.fa-dhl:before{content:"\f790"}.fa-diaspora:before{content:"\f791"}.fa-digg:before{content:"\f1a6"}.fa-digital-ocean:before{content:"\f391"}.fa-discord:before{content:"\f392"}.fa-discourse:before{content:"\f393"}.fa-dochub:before{content:"\f394"}.fa-docker:before{content:"\f395"}.fa-draft2digital:before{content:"\f396"}.fa-dribbble:before{content:"\f17d"}.fa-dropbox:before{content:"\f16b"}.fa-drupal:before{content:"\f1a9"}.fa-dyalog:before{content:"\f399"}.fa-earlybirds:before{content:"\f39a"}.fa-ebay:before{content:"\f4f4"}.fa-edge:before{content:"\f282"}.fa-edge-legacy:before{content:"\e078"}.fa-elementor:before{content:"\f430"}.fa-ello:before{content:"\f5f1"}.fa-ember:before{content:"\f423"}.fa-empire:before{content:"\f1d1"}.fa-envira:before{content:"\f299"}.fa-erlang:before{content:"\f39d"}.fa-ethereum:before{content:"\f42e"}.fa-etsy:before{content:"\f2d7"}.fa-evernote:before{content:"\f839"}.fa-expeditedssl:before{content:"\f23e"}.fa-facebook:before{content:"\f09a"}.fa-facebook-f:before{content:"\f39e"}.fa-facebook-messenger:before{content:"\f39f"}.fa-fantasy-flight-games:before{content:"\f6dc"}.fa-fedex:before{content:"\f797"}.fa-fedora:before{content:"\f798"}.fa-figma:before{content:"\f799"}.fa-firefox:before{content:"\f269"}.fa-firefox-browser:before{content:"\e007"}.fa-first-order:before{content:"\f2b0"}.fa-first-order-alt:before{content:"\f50a"}.fa-firstdraft:before{content:"\f3a1"}.fa-flickr:before{content:"\f16e"}.fa-flipboard:before{content:"\f44d"}.fa-fly:before{content:"\f417"}.fa-font-awesome:before{content:"\f2b4"}.fa-font-awesome-flag:before{content:"\f2b4"}.fa-font-awesome-logo-full:before{content:"\f2b4"}.fa-fonticons:before{content:"\f280"}.fa-fonticons-fi:before{content:"\f3a2"}.fa-fort-awesome:before{content:"\f286"}.fa-fort-awesome-alt:before{content:"\f3a3"}.fa-forumbee:before{content:"\f211"}.fa-foursquare:before{content:"\f180"}.fa-free-code-camp:before{content:"\f2c5"}.fa-freebsd:before{content:"\f3a4"}.fa-fulcrum:before{content:"\f50b"}.fa-galactic-republic:before{content:"\f50c"}.fa-galactic-senate:before{content:"\f50d"}.fa-get-pocket:before{content:"\f265"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-git:before{content:"\f1d3"}.fa-git-alt:before{content:"\f841"}.fa-github:before{content:"\f09b"}.fa-github-alt:before{content:"\f113"}.fa-gitkraken:before{content:"\f3a6"}.fa-gitlab:before{content:"\f296"}.fa-gitter:before{content:"\f426"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-gofore:before{content:"\f3a7"}.fa-golang:before{content:"\e40f"}.fa-goodreads:before{content:"\f3a8"}.fa-goodreads-g:before{content:"\f3a9"}.fa-google:before{content:"\f1a0"}.fa-google-drive:before{content:"\f3aa"}.fa-google-pay:before{content:"\e079"}.fa-google-play:before{content:"\f3ab"}.fa-google-plus:before{content:"\f2b3"}.fa-google-plus-g:before{content:"\f0d5"}.fa-google-wallet:before{content:"\f1ee"}.fa-gratipay:before{content:"\f184"}.fa-grav:before{content:"\f2d6"}.fa-gripfire:before{content:"\f3ac"}.fa-grunt:before{content:"\f3ad"}.fa-guilded:before{content:"\e07e"}.fa-gulp:before{content:"\f3ae"}.fa-hacker-news:before{content:"\f1d4"}.fa-hackerrank:before{content:"\f5f7"}.fa-hashnode:before{content:"\e499"}.fa-hips:before{content:"\f452"}.fa-hire-a-helper:before{content:"\f3b0"}.fa-hive:before{content:"\e07f"}.fa-hooli:before{content:"\f427"}.fa-hornbill:before{content:"\f592"}.fa-hotjar:before{content:"\f3b1"}.fa-houzz:before{content:"\f27c"}.fa-html5:before{content:"\f13b"}.fa-hubspot:before{content:"\f3b2"}.fa-ideal:before{content:"\e013"}.fa-imdb:before{content:"\f2d8"}.fa-instagram:before{content:"\f16d"}.fa-instalod:before{content:"\e081"}.fa-intercom:before{content:"\f7af"}.fa-internet-explorer:before{content:"\f26b"}.fa-invision:before{content:"\f7b0"}.fa-ioxhost:before{content:"\f208"}.fa-itch-io:before{content:"\f83a"}.fa-itunes:before{content:"\f3b4"}.fa-itunes-note:before{content:"\f3b5"}.fa-java:before{content:"\f4e4"}.fa-jedi-order:before{content:"\f50e"}.fa-jenkins:before{content:"\f3b6"}.fa-jira:before{content:"\f7b1"}.fa-joget:before{content:"\f3b7"}.fa-joomla:before{content:"\f1aa"}.fa-js:before{content:"\f3b8"}.fa-jsfiddle:before{content:"\f1cc"}.fa-kaggle:before{content:"\f5fa"}.fa-keybase:before{content:"\f4f5"}.fa-keycdn:before{content:"\f3ba"}.fa-kickstarter:before{content:"\f3bb"}.fa-kickstarter-k:before{content:"\f3bc"}.fa-korvue:before{content:"\f42f"}.fa-laravel:before{content:"\f3bd"}.fa-lastfm:before{content:"\f202"}.fa-leanpub:before{content:"\f212"}.fa-less:before{content:"\f41d"}.fa-line:before{content:"\f3c0"}.fa-linkedin:before{content:"\f08c"}.fa-linkedin-in:before{content:"\f0e1"}.fa-linode:before{content:"\f2b8"}.fa-linux:before{content:"\f17c"}.fa-lyft:before{content:"\f3c3"}.fa-magento:before{content:"\f3c4"}.fa-mailchimp:before{content:"\f59e"}.fa-mandalorian:before{content:"\f50f"}.fa-markdown:before{content:"\f60f"}.fa-mastodon:before{content:"\f4f6"}.fa-maxcdn:before{content:"\f136"}.fa-mdb:before{content:"\f8ca"}.fa-medapps:before{content:"\f3c6"}.fa-medium:before{content:"\f23a"}.fa-medium-m:before{content:"\f23a"}.fa-medrt:before{content:"\f3c8"}.fa-meetup:before{content:"\f2e0"}.fa-megaport:before{content:"\f5a3"}.fa-mendeley:before{content:"\f7b3"}.fa-meta:before{content:"\e49b"}.fa-microblog:before{content:"\e01a"}.fa-microsoft:before{content:"\f3ca"}.fa-mix:before{content:"\f3cb"}.fa-mixcloud:before{content:"\f289"}.fa-mixer:before{content:"\e056"}.fa-mizuni:before{content:"\f3cc"}.fa-modx:before{content:"\f285"}.fa-monero:before{content:"\f3d0"}.fa-napster:before{content:"\f3d2"}.fa-neos:before{content:"\f612"}.fa-nfc-directional:before{content:"\e530"}.fa-nfc-symbol:before{content:"\e531"}.fa-nimblr:before{content:"\f5a8"}.fa-node:before{content:"\f419"}.fa-node-js:before{content:"\f3d3"}.fa-npm:before{content:"\f3d4"}.fa-ns8:before{content:"\f3d5"}.fa-nutritionix:before{content:"\f3d6"}.fa-octopus-deploy:before{content:"\e082"}.fa-odnoklassniki:before{content:"\f263"}.fa-old-republic:before{content:"\f510"}.fa-opencart:before{content:"\f23d"}.fa-openid:before{content:"\f19b"}.fa-opera:before{content:"\f26a"}.fa-optin-monster:before{content:"\f23c"}.fa-orcid:before{content:"\f8d2"}.fa-osi:before{content:"\f41a"}.fa-padlet:before{content:"\e4a0"}.fa-page4:before{content:"\f3d7"}.fa-pagelines:before{content:"\f18c"}.fa-palfed:before{content:"\f3d8"}.fa-patreon:before{content:"\f3d9"}.fa-paypal:before{content:"\f1ed"}.fa-perbyte:before{content:"\e083"}.fa-periscope:before{content:"\f3da"}.fa-phabricator:before{content:"\f3db"}.fa-phoenix-framework:before{content:"\f3dc"}.fa-phoenix-squadron:before{content:"\f511"}.fa-php:before{content:"\f457"}.fa-pied-piper:before{content:"\f2ae"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-pied-piper-hat:before{content:"\f4e5"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-p:before{content:"\f231"}.fa-pix:before{content:"\e43a"}.fa-playstation:before{content:"\f3df"}.fa-product-hunt:before{content:"\f288"}.fa-pushed:before{content:"\f3e1"}.fa-python:before{content:"\f3e2"}.fa-qq:before{content:"\f1d6"}.fa-quinscape:before{content:"\f459"}.fa-quora:before{content:"\f2c4"}.fa-r-project:before{content:"\f4f7"}.fa-raspberry-pi:before{content:"\f7bb"}.fa-ravelry:before{content:"\f2d9"}.fa-react:before{content:"\f41b"}.fa-reacteurope:before{content:"\f75d"}.fa-readme:before{content:"\f4d5"}.fa-rebel:before{content:"\f1d0"}.fa-red-river:before{content:"\f3e3"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-alien:before{content:"\f281"}.fa-redhat:before{content:"\f7bc"}.fa-renren:before{content:"\f18b"}.fa-replyd:before{content:"\f3e6"}.fa-researchgate:before{content:"\f4f8"}.fa-resolving:before{content:"\f3e7"}.fa-rev:before{content:"\f5b2"}.fa-rocketchat:before{content:"\f3e8"}.fa-rockrms:before{content:"\f3e9"}.fa-rust:before{content:"\e07a"}.fa-safari:before{content:"\f267"}.fa-salesforce:before{content:"\f83b"}.fa-sass:before{content:"\f41e"}.fa-schlix:before{content:"\f3ea"}.fa-screenpal:before{content:"\e570"}.fa-scribd:before{content:"\f28a"}.fa-searchengin:before{content:"\f3eb"}.fa-sellcast:before{content:"\f2da"}.fa-sellsy:before{content:"\f213"}.fa-servicestack:before{content:"\f3ec"}.fa-shirtsinbulk:before{content:"\f214"}.fa-shopify:before{content:"\e057"}.fa-shopware:before{content:"\f5b5"}.fa-simplybuilt:before{content:"\f215"}.fa-sistrix:before{content:"\f3ee"}.fa-sith:before{content:"\f512"}.fa-sitrox:before{content:"\e44a"}.fa-sketch:before{content:"\f7c6"}.fa-skyatlas:before{content:"\f216"}.fa-skype:before{content:"\f17e"}.fa-slack:before{content:"\f198"}.fa-slack-hash:before{content:"\f198"}.fa-slideshare:before{content:"\f1e7"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ab"}.fa-soundcloud:before{content:"\f1be"}.fa-sourcetree:before{content:"\f7d3"}.fa-space-awesome:before{content:"\e5ac"}.fa-speakap:before{content:"\f3f3"}.fa-speaker-deck:before{content:"\f83c"}.fa-spotify:before{content:"\f1bc"}.fa-square-behance:before{content:"\f1b5"}.fa-behance-square:before{content:"\f1b5"}.fa-square-dribbble:before{content:"\f397"}.fa-dribbble-square:before{content:"\f397"}.fa-square-facebook:before{content:"\f082"}.fa-facebook-square:before{content:"\f082"}.fa-square-font-awesome:before{content:"\e5ad"}.fa-square-font-awesome-stroke:before{content:"\f35c"}.fa-font-awesome-alt:before{content:"\f35c"}.fa-square-git:before{content:"\f1d2"}.fa-git-square:before{content:"\f1d2"}.fa-square-github:before{content:"\f092"}.fa-github-square:before{content:"\f092"}.fa-square-gitlab:before{content:"\e5ae"}.fa-gitlab-square:before{content:"\e5ae"}.fa-square-google-plus:before{content:"\f0d4"}.fa-google-plus-square:before{content:"\f0d4"}.fa-square-hacker-news:before{content:"\f3af"}.fa-hacker-news-square:before{content:"\f3af"}.fa-square-instagram:before{content:"\e055"}.fa-instagram-square:before{content:"\e055"}.fa-square-js:before{content:"\f3b9"}.fa-js-square:before{content:"\f3b9"}.fa-square-lastfm:before{content:"\f203"}.fa-lastfm-square:before{content:"\f203"}.fa-square-odnoklassniki:before{content:"\f264"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-square-pied-piper:before{content:"\e01e"}.fa-pied-piper-square:before{content:"\e01e"}.fa-square-pinterest:before{content:"\f0d3"}.fa-pinterest-square:before{content:"\f0d3"}.fa-square-reddit:before{content:"\f1a2"}.fa-reddit-square:before{content:"\f1a2"}.fa-square-snapchat:before{content:"\f2ad"}.fa-snapchat-square:before{content:"\f2ad"}.fa-square-steam:before{content:"\f1b7"}.fa-steam-square:before{content:"\f1b7"}.fa-square-tumblr:before{content:"\f174"}.fa-tumblr-square:before{content:"\f174"}.fa-square-twitter:before{content:"\f081"}.fa-twitter-square:before{content:"\f081"}.fa-square-viadeo:before{content:"\f2aa"}.fa-viadeo-square:before{content:"\f2aa"}.fa-square-vimeo:before{content:"\f194"}.fa-vimeo-square:before{content:"\f194"}.fa-square-whatsapp:before{content:"\f40c"}.fa-whatsapp-square:before{content:"\f40c"}.fa-square-xing:before{content:"\f169"}.fa-xing-square:before{content:"\f169"}.fa-square-youtube:before{content:"\f431"}.fa-youtube-square:before{content:"\f431"}.fa-squarespace:before{content:"\f5be"}.fa-stack-exchange:before{content:"\f18d"}.fa-stack-overflow:before{content:"\f16c"}.fa-stackpath:before{content:"\f842"}.fa-staylinked:before{content:"\f3f5"}.fa-steam:before{content:"\f1b6"}.fa-steam-symbol:before{content:"\f3f6"}.fa-sticker-mule:before{content:"\f3f7"}.fa-strava:before{content:"\f428"}.fa-stripe:before{content:"\f429"}.fa-stripe-s:before{content:"\f42a"}.fa-studiovinari:before{content:"\f3f8"}.fa-stumbleupon:before{content:"\f1a4"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-superpowers:before{content:"\f2dd"}.fa-supple:before{content:"\f3f9"}.fa-suse:before{content:"\f7d6"}.fa-swift:before{content:"\f8e1"}.fa-symfony:before{content:"\f83d"}.fa-teamspeak:before{content:"\f4f9"}.fa-telegram:before{content:"\f2c6"}.fa-telegram-plane:before{content:"\f2c6"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-the-red-yeti:before{content:"\f69d"}.fa-themeco:before{content:"\f5c6"}.fa-themeisle:before{content:"\f2b2"}.fa-think-peaks:before{content:"\f731"}.fa-tiktok:before{content:"\e07b"}.fa-trade-federation:before{content:"\f513"}.fa-trello:before{content:"\f181"}.fa-tumblr:before{content:"\f173"}.fa-twitch:before{content:"\f1e8"}.fa-twitter:before{content:"\f099"}.fa-typo3:before{content:"\f42b"}.fa-uber:before{content:"\f402"}.fa-ubuntu:before{content:"\f7df"}.fa-uikit:before{content:"\f403"}.fa-umbraco:before{content:"\f8e8"}.fa-uncharted:before{content:"\e084"}.fa-uniregistry:before{content:"\f404"}.fa-unity:before{content:"\e049"}.fa-unsplash:before{content:"\e07c"}.fa-untappd:before{content:"\f405"}.fa-ups:before{content:"\f7e0"}.fa-usb:before{content:"\f287"}.fa-usps:before{content:"\f7e1"}.fa-ussunnah:before{content:"\f407"}.fa-vaadin:before{content:"\f408"}.fa-viacoin:before{content:"\f237"}.fa-viadeo:before{content:"\f2a9"}.fa-viber:before{content:"\f409"}.fa-vimeo:before{content:"\f40a"}.fa-vimeo-v:before{content:"\f27d"}.fa-vine:before{content:"\f1ca"}.fa-vk:before{content:"\f189"}.fa-vnv:before{content:"\f40b"}.fa-vuejs:before{content:"\f41f"}.fa-watchman-monitoring:before{content:"\e087"}.fa-waze:before{content:"\f83f"}.fa-weebly:before{content:"\f5cc"}.fa-weibo:before{content:"\f18a"}.fa-weixin:before{content:"\f1d7"}.fa-whatsapp:before{content:"\f232"}.fa-whmcs:before{content:"\f40d"}.fa-wikipedia-w:before{content:"\f266"}.fa-windows:before{content:"\f17a"}.fa-wirsindhandwerk:before{content:"\e2d0"}.fa-wsh:before{content:"\e2d0"}.fa-wix:before{content:"\f5cf"}.fa-wizards-of-the-coast:before{content:"\f730"}.fa-wodu:before{content:"\e088"}.fa-wolf-pack-battalion:before{content:"\f514"}.fa-wordpress:before{content:"\f19a"}.fa-wordpress-simple:before{content:"\f411"}.fa-wpbeginner:before{content:"\f297"}.fa-wpexplorer:before{content:"\f2de"}.fa-wpforms:before{content:"\f298"}.fa-wpressr:before{content:"\f3e4"}.fa-rendact:before{content:"\f3e4"}.fa-xbox:before{content:"\f412"}.fa-xing:before{content:"\f168"}.fa-y-combinator:before{content:"\f23b"}.fa-yahoo:before{content:"\f19e"}.fa-yammer:before{content:"\f840"}.fa-yandex:before{content:"\f413"}.fa-yandex-international:before{content:"\f414"}.fa-yarn:before{content:"\f7e3"}.fa-yelp:before{content:"\f1e9"}.fa-yoast:before{content:"\f2b1"}.fa-youtube:before{content:"\f167"}.fa-zhihu:before{content:"\f63f"}:host,:root{--fa-font-regular:normal 400 1em/1 "Font Awesome 6 Free"}@font-face{font-family:'Font Awesome 6 Free';font-style:normal;font-weight:400;font-display:block;src:url(../fonts/fa-regular-400.woff2) format("woff2"),url(../fonts/fa-regular-400.ttf) format("truetype")}.fa-regular,.far{font-family:'Font Awesome 6 Free';font-weight:400}:host,:root{--fa-font-solid:normal 900 1em/1 "Font Awesome 6 Free"}@font-face{font-family:'Font Awesome 6 Free';font-style:normal;font-weight:900;font-display:block;src:url(../fonts/fa-solid-900.woff2) format("woff2"),url(../fonts/fa-solid-900.ttf) format("truetype")}.fa-solid,.fas{font-family:'Font Awesome 6 Free';font-weight:900}@font-face{font-family:"Font Awesome 5 Brands";font-display:block;font-weight:400;src:url(../fonts/fa-brands-400.woff2) format("woff2"),url(../fonts/fa-brands-400.ttf) format("truetype")}@font-face{font-family:"Font Awesome 5 Free";font-display:block;font-weight:900;src:url(../fonts/fa-solid-900.woff2) format("woff2"),url(../fonts/fa-solid-900.ttf) format("truetype")}@font-face{font-family:"Font Awesome 5 Free";font-display:block;font-weight:400;src:url(../fonts/fa-regular-400.woff2) format("woff2"),url(../fonts/fa-regular-400.ttf) format("truetype")}@font-face{font-family:FontAwesome;font-display:block;src:url(../fonts/fa-solid-900.woff2) format("woff2"),url(../fonts/fa-solid-900.ttf) format("truetype")}@font-face{font-family:FontAwesome;font-display:block;src:url(../fonts/fa-brands-400.woff2) format("woff2"),url(../fonts/fa-brands-400.ttf) format("truetype")}@font-face{font-family:FontAwesome;font-display:block;src:url(../fonts/fa-regular-400.woff2) format("woff2"),url(../fonts/fa-regular-400.ttf) format("truetype");unicode-range:U+F003,U+F006,U+F014,U+F016-F017,U+F01A-F01B,U+F01D,U+F022,U+F03E,U+F044,U+F046,U+F05C-F05D,U+F06E,U+F070,U+F087-F088,U+F08A,U+F094,U+F096-F097,U+F09D,U+F0A0,U+F0A2,U+F0A4-F0A7,U+F0C5,U+F0C7,U+F0E5-F0E6,U+F0EB,U+F0F6-F0F8,U+F10C,U+F114-F115,U+F118-F11A,U+F11C-F11D,U+F133,U+F147,U+F14E,U+F150-F152,U+F185-F186,U+F18E,U+F190-F192,U+F196,U+F1C1-F1C9,U+F1D9,U+F1DB,U+F1E3,U+F1EA,U+F1F7,U+F1F9,U+F20A,U+F247-F248,U+F24A,U+F24D,U+F255-F25B,U+F25D,U+F271-F274,U+F278,U+F27B,U+F28C,U+F28E,U+F29C,U+F2B5,U+F2B7,U+F2BA,U+F2BC,U+F2BE,U+F2C0-F2C1,U+F2C3,U+F2D0,U+F2D2,U+F2D4,U+F2DC}@font-face{font-family:FontAwesome;font-display:block;src:url(../fonts/fa-v4compatibility.woff2) format("woff2"),url(../fonts/fa-v4compatibility.ttf) format("truetype");unicode-range:U+F041,U+F047,U+F065-F066,U+F07D-F07E,U+F080,U+F08B,U+F08E,U+F090,U+F09A,U+F0AC,U+F0AE,U+F0B2,U+F0D0,U+F0D6,U+F0E4,U+F0EC,U+F10A-F10B,U+F123,U+F13E,U+F148-F149,U+F14C,U+F156,U+F15E,U+F160-F161,U+F163,U+F175-F178,U+F195,U+F1F8,U+F219,U+F27A}
+/*# sourceMappingURL=fontawesome.min.css.map */
diff --git a/dasena-web/public/assets/admin/vendors/css/fontawesome.min.css.map b/dasena-web/public/assets/admin/vendors/css/fontawesome.min.css.map
new file mode 100644
index 0000000..96b5e6e
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/css/fontawesome.min.css.map
@@ -0,0 +1 @@
+{"version":3,"sources":["fontawesome.min.css"],"names":[],"mappings":"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","file":"fontawesome.min.css","sourcesContent":[]}
\ No newline at end of file
diff --git a/dasena-web/public/assets/admin/vendors/css/jquery-jvectormap.min.css b/dasena-web/public/assets/admin/vendors/css/jquery-jvectormap.min.css
new file mode 100644
index 0000000..76aa5b9
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/css/jquery-jvectormap.min.css
@@ -0,0 +1,2 @@
+.jvectormap-container{width:100%;height:100%;position:relative;overflow:hidden}.jvectormap-tip{position:absolute;display:none;border:1px solid #cdcdcd;border-radius:3px;background:#292929;color:#fff;font-family:sans-serif;font-size:smaller;padding:3px}.jvectormap-goback,.jvectormap-zoomin,.jvectormap-zoomout{position:absolute;left:10px;border-radius:3px;background:#292929;padding:5px;color:#fff;cursor:pointer;line-height:20px;text-align:center;box-sizing:content-box}.jvectormap-zoomin,.jvectormap-zoomout{width:20px;height:20px}.jvectormap-zoomin{top:10px}.jvectormap-zoomout{top:50px}.jvectormap-goback{bottom:10px;z-index:1;padding:6px}.jvectormap-spinner{position:absolute;left:0;top:0;right:0;bottom:0;background:50% no-repeat url(data:image/gif;base64,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)}.jvectormap-legend-title{font-weight:700;font-size:14px;text-align:center}.jvectormap-legend-cnt{position:absolute}.jvectormap-legend-cnt-h{bottom:0;right:0}.jvectormap-legend-cnt-v{top:0;right:0}.jvectormap-legend{background:#000;color:#fff;border-radius:3px}.jvectormap-legend-cnt-h .jvectormap-legend{float:left;margin:0 10px 10px 0;padding:3px 3px 1px}.jvectormap-legend-cnt-h .jvectormap-legend .jvectormap-legend-tick{float:left}.jvectormap-legend-cnt-v .jvectormap-legend{margin:10px 10px 0 0;padding:3px}.jvectormap-legend-cnt-h .jvectormap-legend-tick{width:40px}.jvectormap-legend-cnt-h .jvectormap-legend-tick-sample{height:15px}.jvectormap-legend-cnt-v .jvectormap-legend-tick-sample{height:20px;width:20px;display:inline-block;vertical-align:middle}.jvectormap-legend-tick-text{font-size:9pt}.jvectormap-legend-cnt-h .jvectormap-legend-tick-text{text-align:center}.jvectormap-legend-cnt-v .jvectormap-legend-tick-text{display:inline-block;vertical-align:middle;line-height:20px;padding-left:3px}
+/*# sourceMappingURL=jquery-jvectormap.min.css.map */
diff --git a/dasena-web/public/assets/admin/vendors/css/jquery-jvectormap.min.css.map b/dasena-web/public/assets/admin/vendors/css/jquery-jvectormap.min.css.map
new file mode 100644
index 0000000..e49fac0
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/css/jquery-jvectormap.min.css.map
@@ -0,0 +1 @@
+{"version":3,"sources":["jquery-jvectormap.min.css"],"names":[],"mappings":"AAAA,sBACC,MAAO,KACP,OAAQ,KACR,SAAU,SACV,SAAU,OAEX,gBACC,SAAU,SACV,QAAS,KACT,OAAQ,IAAI,MAAM,QAClB,cAAe,IACf,WAAY,QACZ,MAAO,KACP,YAAa,WACb,UAAW,QACX,QAAS,IAEV,mBACA,mBACA,oBACC,SAAU,SACV,KAAM,KACN,cAAe,IACf,WAAY,QACZ,QAAS,IACT,MAAO,KACP,OAAQ,QACR,YAAa,KACb,WAAY,OACZ,WAAY,YAEb,mBACA,oBACC,MAAO,KACP,OAAQ,KAET,mBACC,IAAK,KAEN,oBACC,IAAK,KAEN,mBACC,OAAQ,KACR,QAAS,EACT,QAAS,IAEV,oBACC,SAAU,SACV,KAAM,EACN,IAAK,EACL,MAAO,EACP,OAAQ,EACR,WAAY,IAAI,UAAU,otIAE3B,yBACC,YAAa,IACb,UAAW,KACX,WAAY,OAEb,uBACC,SAAU,SAEX,yBACC,OAAQ,EACR,MAAO,EAER,yBACC,IAAK,EACL,MAAO,EAER,mBACC,WAAY,KACZ,MAAO,KACP,cAAe,IAEhB,4CACC,MAAO,KACP,OAAQ,EAAE,KAAK,KAAK,EACpB,QAAS,IAAI,IAAI,IAElB,oEACC,MAAO,KAER,4CACC,OAAQ,KAAK,KAAK,EAAE,EACpB,QAAS,IAEV,iDACC,MAAO,KAER,wDACC,OAAQ,KAET,wDACC,OAAQ,KACR,MAAO,KACP,QAAS,aACT,eAAgB,OAEjB,6BACC,UAAW,IAEZ,sDACC,WAAY,OAEb,sDACC,QAAS,aACT,eAAgB,OAChB,YAAa,KACb,aAAc","file":"jquery-jvectormap.min.css","sourcesContent":[]}
\ No newline at end of file
diff --git a/dasena-web/public/assets/admin/vendors/css/jquery.steps.min.css b/dasena-web/public/assets/admin/vendors/css/jquery.steps.min.css
new file mode 100644
index 0000000..4f1808f
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/css/jquery.steps.min.css
@@ -0,0 +1,2 @@
+.tabcontrol,.wizard{display:block;width:100%}.tabcontrol a,.wizard a{outline:0}.tabcontrol ul,.wizard ul{list-style:none!important;padding:0;margin:0}.tabcontrol ul>li,.wizard ul>li{display:block;padding:0}.tabcontrol>.steps .current-info,.wizard>.steps .current-info{position:absolute;left:-999em}.tabcontrol>.content>.title,.wizard>.content>.title{position:absolute;left:-999em}.wizard>.steps{width:100%;margin:auto;display:flex;justify-content:center;position:relative}.wizard.vertical>.steps{display:inline;float:left}.wizard>.steps .number{font-size:1.429em}.wizard>.actions>ul>li,.wizard>.steps>ul>li{float:left}.wizard.vertical>.steps>ul>li{float:none;width:100%}.wizard>.steps a,.wizard>.steps a:active,.wizard>.steps a:hover{font-weight:700;display:block;width:auto;margin:0 .5em .5em;padding:1em 1em;text-decoration:none;border-bottom:3px solid transparent}.wizard>.steps .disabled a,.wizard>.steps .disabled a:active,.wizard>.steps .disabled a:hover{cursor:default}.wizard>.steps .current a,.wizard>.steps .current a:active,.wizard>.steps .current a:hover{cursor:default;color:#3454d1;border-bottom:3px solid #3454d1}.wizard>.steps .done a,.wizard>.steps .done a:active,.wizard>.steps .done a:hover{color:#283c50}.wizard>.steps .error a,.wizard>.steps .error a:active,.wizard>.steps .error a:hover{color:#d13b4c;cursor:default;border-bottom:3px solid #d13b4c}.wizard>.content{display:block;margin:.5em;min-height:auto;position:relative;width:auto}.wizard.vertical>.content{display:inline;float:left;margin:0 2.5% .5em 2.5%;width:65%}.wizard>.content>.body{float:left;width:100%;height:100%;padding:25px 25px}.wizard>.content>.body ul{list-style:disc!important}.wizard>.content>.body ul>li{display:list-item}.wizard>.content>.body>iframe{border:0 none;width:100%;height:100%}.wizard>.content>.body input{display:block;border:1px solid #e5e7eb}.wizard>.content>.body input[type=checkbox]{display:inline-block}.wizard>.content>.body input.error,.wizard>.content>.body input[type=checkbox].error,.wizard>.content>.body textarea.error{background:#fbe3e4;border:1px solid #fbc2c4;color:#8a1f11}.wizard>.content>.body input.valid,.wizard>.content>.body input[type=checkbox].valid,.wizard>.content>.body textarea.valid{border:1px solid #84daaa}.wizard>.content>.body label{display:inline-block;margin-bottom:15px;transition:all .3s ease}.wizard>.content>.body label.error{color:#d13b4c;font-size:12px;display:block;font-weight:500;border-radius:5px;position:relative;padding:10px 15px 10px 40px;background-color:#ffeff2;border:1px dashed #ffced3;transition:all .3s ease}.wizard>.content>.body label.error:before{position:absolute;content:"\e904";left:15px;font-family:feather}.wizard>.actions{position:relative;display:block;text-align:right;width:100%}.wizard.vertical>.actions{display:inline;float:right;margin:0 2.5%;width:95%}.wizard>.actions>ul{display:inline-block;text-align:right}.wizard>.actions>ul>li{margin:0 .5em}.wizard.vertical>.actions>ul>li{margin:0 0 0 1em}.wizard>.actions a,.wizard>.actions a:active,.wizard>.actions a:hover{color:#fff!important;border-color:#3454d1;background-color:#3454d1;display:flex;padding:12px 16px;font-size:10px;line-height:normal;align-items:center;justify-content:center;font-weight:700;text-transform:uppercase;letter-spacing:.5px;border-radius:3px;transition:all .3s ease}.wizard>.actions .disabled a,.wizard>.actions .disabled a:active,.wizard>.actions .disabled a:hover{color:#7587a7!important;background:#fff;border:1px solid #e9ebee}.tabcontrol>.steps{position:relative;display:block;width:100%}.tabcontrol>.steps>ul{position:relative;margin:6px 0 0 0;top:1px;z-index:1}.tabcontrol>.steps>ul>li{float:left;margin:5px 2px 0 0;padding:1px;-webkit-border-top-left-radius:5px;-webkit-border-top-right-radius:5px;-moz-border-radius-topleft:5px;-moz-border-radius-topright:5px;border-top-left-radius:5px;border-top-right-radius:5px}.tabcontrol>.steps>ul>li:hover{background:#edecec;border:1px solid #bbb;padding:0}.tabcontrol>.steps>ul>li.current{background:#fff;border:1px solid #bbb;border-bottom:0 none;padding:0 0 1px 0;margin-top:0}.tabcontrol>.steps>ul>li>a{color:#5f5f5f;display:inline-block;border:0 none;margin:0;padding:10px 30px;text-decoration:none}.tabcontrol>.steps>ul>li>a:hover{text-decoration:none}.tabcontrol>.steps>ul>li.current>a{padding:15px 30px 10px 30px}.tabcontrol>.content{position:relative;display:inline-block;width:100%;height:35em;border-top:1px solid #bbb;padding-top:20px}.tabcontrol>.content>.body{float:left;position:absolute;width:95%;height:95%;padding:2.5%}.tabcontrol>.content>.body ul{list-style:disc!important}.tabcontrol>.content>.body ul>li{display:list-item}
+/*# sourceMappingURL=jquery.steps.min.css.map */
diff --git a/dasena-web/public/assets/admin/vendors/css/jquery.steps.min.css.map b/dasena-web/public/assets/admin/vendors/css/jquery.steps.min.css.map
new file mode 100644
index 0000000..8d3a071
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/css/jquery.steps.min.css.map
@@ -0,0 +1 @@
+{"version":3,"sources":["jquery.steps.min.css"],"names":[],"mappings":"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","file":"jquery.steps.min.css","sourcesContent":[]}
\ No newline at end of file
diff --git a/dasena-web/public/assets/admin/vendors/css/jquery.time-to.min.css b/dasena-web/public/assets/admin/vendors/css/jquery.time-to.min.css
new file mode 100644
index 0000000..74011b4
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/css/jquery.time-to.min.css
@@ -0,0 +1,2 @@
+figcaption,figure{display:block}.transition{transition:top .4s linear}.timeTo{font-family:Inter;font-size:20px;line-height:108%;font-weight:700;height:32px}.timeTo span{margin:5px;line-height:1.4;vertical-align:top}.timeTo.timeTo-white div{color:#023047;background:#fff}.timeTo.timeTo-black div{color:#fff;background:#023047}.timeTo.timeTo-black .timeTo-alert{background:#a74444}.timeTo.timeTo-white .timeTo-alert{background:#fff}.timeTo figure{display:inline-block;margin:0;padding:0}.timeTo figcaption{text-align:center;font-size:12px;line-height:80%;font-weight:400;color:#64748a}.timeTo div{width:25px;height:30px;position:relative;display:inline-block;border-top:1px solid #dee2e6;border-right:1px solid #dee2e6;border-bottom:1px solid #dee2e6;overflow:hidden}.timeTo div.first{border-left:1px solid #dee2e6}.timeTo ul{margin:0;padding:0;list-style-type:none;position:absolute;left:8px;top:-18px}.timeTo ul li{padding:0;margin:7px 0;list-style:none}
+/*# sourceMappingURL=jquery.time-to.min.css.map */
diff --git a/dasena-web/public/assets/admin/vendors/css/jquery.time-to.min.css.map b/dasena-web/public/assets/admin/vendors/css/jquery.time-to.min.css.map
new file mode 100644
index 0000000..0349e5d
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/css/jquery.time-to.min.css.map
@@ -0,0 +1 @@
+{"version":3,"sources":["jquery.time-to.min.css"],"names":[],"mappings":"AACA,WADA,OAEC,QAAS,MAGV,YACC,WAAY,IAAI,IAAM,OAGvB,QACC,YAAa,MACb,UAAW,KACX,YAAa,KACb,YAAa,IACb,OAAQ,KAGT,aACC,OAAQ,IACR,YAAa,IACb,eAAgB,IAGjB,yBACC,MAAO,QACP,WAAY,KAEb,yBACC,MAAO,KACP,WAAY,QAGb,mCACC,WAAY,QAGb,mCACC,WAAY,KAGb,eACC,QAAS,aACT,OAAQ,EACR,QAAS,EAEV,mBACC,WAAY,OACZ,UAAW,KACX,YAAa,IACb,YAAa,IACb,MAAO,QAGR,YACC,MAAO,KACP,OAAQ,KACR,SAAU,SACV,QAAS,aACT,WAAY,IAAI,MAAM,QACtB,aAAc,IAAI,MAAM,QACxB,cAAe,IAAI,MAAM,QACzB,SAAU,OAEX,kBACC,YAAa,IAAI,MAAM,QAGxB,WACC,OAAQ,EACR,QAAS,EACT,gBAAiB,KACjB,SAAU,SACV,KAAM,IACN,IAAK,MAGN,cACC,QAAS,EACT,OAAQ,IAAI,EACZ,WAAY","file":"jquery.time-to.min.css","sourcesContent":[]}
\ No newline at end of file
diff --git a/dasena-web/public/assets/admin/vendors/css/quill.min.css b/dasena-web/public/assets/admin/vendors/css/quill.min.css
new file mode 100644
index 0000000..83e8226
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/css/quill.min.css
@@ -0,0 +1,5 @@
+/*!* Quill Editor v1.3.6
+* https://quilljs.com/
+* Copyright (c) 2014, Jason Chen
+* Copyright (c) 2013, salesforce.com*/.ql-container{box-sizing:border-box;font-family:Helvetica,Arial,sans-serif;font-size:13px;height:100%;margin:0;position:relative}.ql-container.ql-disabled .ql-tooltip{visibility:hidden}.ql-container.ql-disabled .ql-editor ul[data-checked]>li:before{pointer-events:none}.ql-clipboard{left:-100000px;height:1px;overflow-y:hidden;position:absolute;top:50%}.ql-clipboard p{margin:0;padding:0}.ql-editor{color:#64748a;font-size:13px;box-sizing:border-box;line-height:1.42;height:100%;outline:0;overflow-y:auto;padding:15px 15px;tab-size:4;-moz-tab-size:4;text-align:left;white-space:pre-wrap;word-wrap:break-word}.ql-editor>*{cursor:text}.ql-editor blockquote,.ql-editor h1,.ql-editor h2,.ql-editor h3,.ql-editor h4,.ql-editor h5,.ql-editor h6,.ql-editor ol,.ql-editor p,.ql-editor pre,.ql-editor ul{margin:0;padding:0;counter-reset:a b c d e f g h i}.ql-editor ol,.ql-editor ul{padding-left:1.5em}.ql-editor ol>li,.ql-editor ul>li{list-style-type:none}.ql-editor ul>li:before{content:"\2022"}.ql-editor ul[data-checked=false],.ql-editor ul[data-checked=true]{pointer-events:none}.ql-editor ul[data-checked=false]>li *,.ql-editor ul[data-checked=true]>li *{pointer-events:all}.ql-editor ul[data-checked=false]>li:before,.ql-editor ul[data-checked=true]>li:before{color:#777;cursor:pointer;pointer-events:all}.ql-editor ul[data-checked=true]>li:before{content:"\2611"}.ql-editor ul[data-checked=false]>li:before{content:"\2610"}.ql-editor li:before{display:inline-block;white-space:nowrap;width:1.2em}.ql-editor li:not(.ql-direction-rtl):before{margin-left:-1.5em;margin-right:.3em;text-align:right}.ql-editor li.ql-direction-rtl:before{margin-left:.3em;margin-right:-1.5em}.ql-editor ol li:not(.ql-direction-rtl),.ql-editor ul li:not(.ql-direction-rtl){padding-left:1.5em}.ql-editor ol li.ql-direction-rtl,.ql-editor ul li.ql-direction-rtl{padding-right:1.5em}.ql-editor ol li{counter-reset:a b c d e f g h i;counter-increment:j}.ql-editor ol li:before{content:counter(j,decimal) ". "}.ql-editor ol li.ql-indent-1{counter-increment:a}.ql-editor ol li.ql-indent-1:before{content:counter(a,lower-alpha) ". "}.ql-editor ol li.ql-indent-1{counter-reset:b c d e f g h i}.ql-editor ol li.ql-indent-2{counter-increment:b}.ql-editor ol li.ql-indent-2:before{content:counter(b,lower-roman) ". "}.ql-editor ol li.ql-indent-2{counter-reset:c d e f g h i}.ql-editor ol li.ql-indent-3{counter-increment:c}.ql-editor ol li.ql-indent-3:before{content:counter(c,decimal) ". "}.ql-editor ol li.ql-indent-3{counter-reset:d e f g h i}.ql-editor ol li.ql-indent-4{counter-increment:d}.ql-editor ol li.ql-indent-4:before{content:counter(d,lower-alpha) ". "}.ql-editor ol li.ql-indent-4{counter-reset:e f g h i}.ql-editor ol li.ql-indent-5{counter-increment:e}.ql-editor ol li.ql-indent-5:before{content:counter(e,lower-roman) ". "}.ql-editor ol li.ql-indent-5{counter-reset:f g h i}.ql-editor ol li.ql-indent-6{counter-increment:f}.ql-editor ol li.ql-indent-6:before{content:counter(f,decimal) ". "}.ql-editor ol li.ql-indent-6{counter-reset:g h i}.ql-editor ol li.ql-indent-7{counter-increment:g}.ql-editor ol li.ql-indent-7:before{content:counter(g,lower-alpha) ". "}.ql-editor ol li.ql-indent-7{counter-reset:h i}.ql-editor ol li.ql-indent-8{counter-increment:h}.ql-editor ol li.ql-indent-8:before{content:counter(h,lower-roman) ". "}.ql-editor ol li.ql-indent-8{counter-reset:i}.ql-editor ol li.ql-indent-9{counter-increment:i}.ql-editor ol li.ql-indent-9:before{content:counter(i,decimal) ". "}.ql-editor .ql-indent-1:not(.ql-direction-rtl){padding-left:3em}.ql-editor li.ql-indent-1:not(.ql-direction-rtl){padding-left:4.5em}.ql-editor .ql-indent-1.ql-direction-rtl.ql-align-right{padding-right:3em}.ql-editor li.ql-indent-1.ql-direction-rtl.ql-align-right{padding-right:4.5em}.ql-editor .ql-indent-2:not(.ql-direction-rtl){padding-left:6em}.ql-editor li.ql-indent-2:not(.ql-direction-rtl){padding-left:7.5em}.ql-editor .ql-indent-2.ql-direction-rtl.ql-align-right{padding-right:6em}.ql-editor li.ql-indent-2.ql-direction-rtl.ql-align-right{padding-right:7.5em}.ql-editor .ql-indent-3:not(.ql-direction-rtl){padding-left:9em}.ql-editor li.ql-indent-3:not(.ql-direction-rtl){padding-left:10.5em}.ql-editor .ql-indent-3.ql-direction-rtl.ql-align-right{padding-right:9em}.ql-editor li.ql-indent-3.ql-direction-rtl.ql-align-right{padding-right:10.5em}.ql-editor .ql-indent-4:not(.ql-direction-rtl){padding-left:12em}.ql-editor li.ql-indent-4:not(.ql-direction-rtl){padding-left:13.5em}.ql-editor .ql-indent-4.ql-direction-rtl.ql-align-right{padding-right:12em}.ql-editor li.ql-indent-4.ql-direction-rtl.ql-align-right{padding-right:13.5em}.ql-editor .ql-indent-5:not(.ql-direction-rtl){padding-left:15em}.ql-editor li.ql-indent-5:not(.ql-direction-rtl){padding-left:16.5em}.ql-editor .ql-indent-5.ql-direction-rtl.ql-align-right{padding-right:15em}.ql-editor li.ql-indent-5.ql-direction-rtl.ql-align-right{padding-right:16.5em}.ql-editor .ql-indent-6:not(.ql-direction-rtl){padding-left:18em}.ql-editor li.ql-indent-6:not(.ql-direction-rtl){padding-left:19.5em}.ql-editor .ql-indent-6.ql-direction-rtl.ql-align-right{padding-right:18em}.ql-editor li.ql-indent-6.ql-direction-rtl.ql-align-right{padding-right:19.5em}.ql-editor .ql-indent-7:not(.ql-direction-rtl){padding-left:21em}.ql-editor li.ql-indent-7:not(.ql-direction-rtl){padding-left:22.5em}.ql-editor .ql-indent-7.ql-direction-rtl.ql-align-right{padding-right:21em}.ql-editor li.ql-indent-7.ql-direction-rtl.ql-align-right{padding-right:22.5em}.ql-editor .ql-indent-8:not(.ql-direction-rtl){padding-left:24em}.ql-editor li.ql-indent-8:not(.ql-direction-rtl){padding-left:25.5em}.ql-editor .ql-indent-8.ql-direction-rtl.ql-align-right{padding-right:24em}.ql-editor li.ql-indent-8.ql-direction-rtl.ql-align-right{padding-right:25.5em}.ql-editor .ql-indent-9:not(.ql-direction-rtl){padding-left:27em}.ql-editor li.ql-indent-9:not(.ql-direction-rtl){padding-left:28.5em}.ql-editor .ql-indent-9.ql-direction-rtl.ql-align-right{padding-right:27em}.ql-editor li.ql-indent-9.ql-direction-rtl.ql-align-right{padding-right:28.5em}.ql-editor .ql-video{display:block;max-width:100%}.ql-editor .ql-video.ql-align-center{margin:0 auto}.ql-editor .ql-video.ql-align-right{margin:0 0 0 auto}.ql-editor .ql-bg-black{background-color:#000}.ql-editor .ql-bg-red{background-color:#e60000}.ql-editor .ql-bg-orange{background-color:#f90}.ql-editor .ql-bg-yellow{background-color:#ff0}.ql-editor .ql-bg-green{background-color:#008a00}.ql-editor .ql-bg-blue{background-color:#3454d1}.ql-editor .ql-bg-purple{background-color:#93f}.ql-editor .ql-color-white{color:#fff}.ql-editor .ql-color-red{color:#e60000}.ql-editor .ql-color-orange{color:#f90}.ql-editor .ql-color-yellow{color:#ff0}.ql-editor .ql-color-green{color:#008a00}.ql-editor .ql-color-blue{color:#3454d1}.ql-editor .ql-color-purple{color:#93f}.ql-editor .ql-font-serif{font-family:Georgia,Times New Roman,serif}.ql-editor .ql-font-monospace{font-family:Monaco,Courier New,monospace}.ql-editor .ql-size-small{font-size:.75em}.ql-editor .ql-size-large{font-size:1.5em}.ql-editor .ql-size-huge{font-size:2.5em}.ql-editor .ql-direction-rtl{direction:rtl;text-align:inherit}.ql-editor .ql-align-center{text-align:center}.ql-editor .ql-align-justify{text-align:justify}.ql-editor .ql-align-right{text-align:right}.ql-editor.ql-blank:before{color:rgb(120 125 155 / 60%);content:attr(data-placeholder);font-style:italic;pointer-events:none;position:absolute;top:15px;left:15px;right:15px;bottom:15px}.ql-snow .ql-toolbar:after,.ql-snow.ql-toolbar:after{clear:both;content:"";display:table}.ql-snow .ql-toolbar button,.ql-snow.ql-toolbar button{background:0 0;border:none;cursor:pointer;display:inline-block;height:24px;padding:3px 5px;width:28px}.ql-snow .ql-toolbar button svg,.ql-snow.ql-toolbar button svg{float:left;height:100%}.ql-snow .ql-toolbar button:active:hover,.ql-snow.ql-toolbar button:active:hover{outline:0}.ql-snow .ql-toolbar input.ql-image[type=file],.ql-snow.ql-toolbar input.ql-image[type=file]{display:none}.ql-snow .ql-toolbar .ql-picker-item.ql-selected,.ql-snow .ql-toolbar .ql-picker-item:hover,.ql-snow .ql-toolbar .ql-picker-label.ql-active,.ql-snow .ql-toolbar .ql-picker-label:hover,.ql-snow .ql-toolbar button.ql-active,.ql-snow .ql-toolbar button:focus,.ql-snow .ql-toolbar button:hover,.ql-snow.ql-toolbar .ql-picker-item.ql-selected,.ql-snow.ql-toolbar .ql-picker-item:hover,.ql-snow.ql-toolbar .ql-picker-label.ql-active,.ql-snow.ql-toolbar .ql-picker-label:hover,.ql-snow.ql-toolbar button.ql-active,.ql-snow.ql-toolbar button:focus,.ql-snow.ql-toolbar button:hover{color:#3454d1}.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-fill,.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill,.ql-snow .ql-toolbar .ql-picker-item:hover .ql-fill,.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-fill,.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,.ql-snow .ql-toolbar .ql-picker-label:hover .ql-fill,.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,.ql-snow .ql-toolbar button.ql-active .ql-fill,.ql-snow .ql-toolbar button.ql-active .ql-stroke.ql-fill,.ql-snow .ql-toolbar button:focus .ql-fill,.ql-snow .ql-toolbar button:focus .ql-stroke.ql-fill,.ql-snow .ql-toolbar button:hover .ql-fill,.ql-snow .ql-toolbar button:hover .ql-stroke.ql-fill,.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-fill,.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill,.ql-snow.ql-toolbar .ql-picker-item:hover .ql-fill,.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-fill,.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,.ql-snow.ql-toolbar .ql-picker-label:hover .ql-fill,.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,.ql-snow.ql-toolbar button.ql-active .ql-fill,.ql-snow.ql-toolbar button.ql-active .ql-stroke.ql-fill,.ql-snow.ql-toolbar button:focus .ql-fill,.ql-snow.ql-toolbar button:focus .ql-stroke.ql-fill,.ql-snow.ql-toolbar button:hover .ql-fill,.ql-snow.ql-toolbar button:hover .ql-stroke.ql-fill{fill:#3454d1}.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke,.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter,.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke,.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke-miter,.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke,.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke,.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke-miter,.ql-snow .ql-toolbar button.ql-active .ql-stroke,.ql-snow .ql-toolbar button.ql-active .ql-stroke-miter,.ql-snow .ql-toolbar button:focus .ql-stroke,.ql-snow .ql-toolbar button:focus .ql-stroke-miter,.ql-snow .ql-toolbar button:hover .ql-stroke,.ql-snow .ql-toolbar button:hover .ql-stroke-miter,.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke,.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter,.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke,.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke-miter,.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke,.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke,.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke-miter,.ql-snow.ql-toolbar button.ql-active .ql-stroke,.ql-snow.ql-toolbar button.ql-active .ql-stroke-miter,.ql-snow.ql-toolbar button:focus .ql-stroke,.ql-snow.ql-toolbar button:focus .ql-stroke-miter,.ql-snow.ql-toolbar button:hover .ql-stroke,.ql-snow.ql-toolbar button:hover .ql-stroke-miter{stroke:#3454d1}@media (pointer:coarse){.ql-snow .ql-toolbar button:hover:not(.ql-active),.ql-snow.ql-toolbar button:hover:not(.ql-active){color:#023047}.ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-fill,.ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill,.ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-fill,.ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill{fill:#023047}.ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke,.ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter,.ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke,.ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter{stroke:#023047}}.ql-snow,.ql-snow *{box-sizing:border-box}.ql-snow .ql-hidden{display:none}.ql-snow .ql-out-bottom,.ql-snow .ql-out-top{visibility:hidden}.ql-snow .ql-tooltip{position:absolute;transform:translateY(10px)}.ql-snow .ql-tooltip a{cursor:pointer;text-decoration:none}.ql-snow .ql-tooltip.ql-flip{transform:translateY(-10px)}.ql-snow .ql-formats{display:inline-block;vertical-align:middle}.ql-snow .ql-formats:after{clear:both;content:"";display:table}.ql-snow .ql-stroke{fill:none;stroke:#023047;stroke-linecap:round;stroke-linejoin:round;stroke-width:2}.ql-snow .ql-stroke-miter{fill:none;stroke:#023047;stroke-miterlimit:10;stroke-width:2}.ql-snow .ql-fill,.ql-snow .ql-stroke.ql-fill{fill:#023047}.ql-snow .ql-empty{fill:none}.ql-snow .ql-even{fill-rule:evenodd}.ql-snow .ql-stroke.ql-thin,.ql-snow .ql-thin{stroke-width:1}.ql-snow .ql-transparent{opacity:.4}.ql-snow .ql-direction svg:last-child{display:none}.ql-snow .ql-direction.ql-active svg:last-child{display:inline}.ql-snow .ql-direction.ql-active svg:first-child{display:none}.ql-snow .ql-editor h1{font-size:2em}.ql-snow .ql-editor h2{font-size:1.5em}.ql-snow .ql-editor h3{font-size:1.17em}.ql-snow .ql-editor h4{font-size:1em}.ql-snow .ql-editor h5{font-size:.83em}.ql-snow .ql-editor h6{font-size:.67em}.ql-snow .ql-editor a{text-decoration:underline}.ql-snow .ql-editor blockquote{border-left:4px solid #e5e7eb;margin-bottom:5px;margin-top:5px;padding-left:16px}.ql-snow .ql-editor code,.ql-snow .ql-editor pre{background-color:#f0f0f0;border-radius:3px}.ql-snow .ql-editor pre{white-space:pre-wrap;margin-bottom:5px;margin-top:5px;padding:5px 10px}.ql-snow .ql-editor code{font-size:85%;padding:2px 4px}.ql-snow .ql-editor pre.ql-syntax{background-color:#23241f;color:#f8f8f2;overflow:visible}.ql-snow .ql-editor img{max-width:100%}.ql-snow .ql-picker{color:#023047;display:inline-block;font-size:14px;font-weight:500;height:24px;position:relative;vertical-align:middle}.ql-snow .ql-picker-label{cursor:pointer;display:inline-block;height:100%;padding-left:8px;padding-right:2px;position:relative;width:100%;background-color:#fff;border:1px solid #e2e4ec;border-radius:3px}.ql-snow .ql-picker-label:before{display:inline-block;line-height:22px}.ql-snow .ql-picker-options{background-color:#fff;display:none;min-width:100%;padding:4px 8px;position:absolute;white-space:nowrap}.ql-snow .ql-picker-options .ql-picker-item{cursor:pointer;display:block;padding-bottom:5px;padding-top:5px}.ql-snow .ql-picker.ql-expanded .ql-picker-label{color:#e5e7eb;z-index:2}.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-fill{fill:#e5e7eb}.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-stroke{stroke:#e5e7eb}.ql-snow .ql-picker.ql-expanded .ql-picker-options{display:block;margin-top:-1px;top:100%;z-index:1}.ql-snow .ql-color-picker,.ql-snow .ql-icon-picker{width:28px}.ql-snow .ql-color-picker .ql-picker-label,.ql-snow .ql-icon-picker .ql-picker-label{padding:2px 4px}.ql-snow .ql-color-picker .ql-picker-label svg,.ql-snow .ql-icon-picker .ql-picker-label svg{right:4px}.ql-snow .ql-icon-picker .ql-picker-options{padding:4px 0}.ql-snow .ql-icon-picker .ql-picker-item{height:24px;width:24px;padding:2px 4px}.ql-snow .ql-color-picker .ql-picker-options{padding:3px 5px;width:152px}.ql-snow .ql-color-picker .ql-picker-item{border:1px solid transparent;float:left;height:16px;margin:2px;padding:0;width:16px}.ql-snow .ql-picker:not(.ql-color-picker):not(.ql-icon-picker) svg{position:absolute;margin-top:-9px;right:0;top:50%;width:18px}.ql-snow .ql-picker.ql-font .ql-picker-item[data-label]:not([data-label=""]):before,.ql-snow .ql-picker.ql-font .ql-picker-label[data-label]:not([data-label=""]):before,.ql-snow .ql-picker.ql-header .ql-picker-item[data-label]:not([data-label=""]):before,.ql-snow .ql-picker.ql-header .ql-picker-label[data-label]:not([data-label=""]):before,.ql-snow .ql-picker.ql-size .ql-picker-item[data-label]:not([data-label=""]):before,.ql-snow .ql-picker.ql-size .ql-picker-label[data-label]:not([data-label=""]):before{content:attr(data-label)}.ql-snow .ql-picker.ql-header{width:98px}.ql-snow .ql-picker.ql-header .ql-picker-item:before,.ql-snow .ql-picker.ql-header .ql-picker-label:before{content:"Normal"}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="1"]:before,.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="1"]:before{content:"Heading 1"}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="2"]:before,.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="2"]:before{content:"Heading 2"}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="3"]:before,.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="3"]:before{content:"Heading 3"}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="4"]:before,.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="4"]:before{content:"Heading 4"}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="5"]:before,.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="5"]:before{content:"Heading 5"}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="6"]:before,.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="6"]:before{content:"Heading 6"}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="1"]:before{font-size:2em}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="2"]:before{font-size:1.5em}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="3"]:before{font-size:1.17em}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="4"]:before{font-size:1em}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="5"]:before{font-size:.83em}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="6"]:before{font-size:.67em}.ql-snow .ql-picker.ql-font{width:108px}.ql-snow .ql-picker.ql-font .ql-picker-item:before,.ql-snow .ql-picker.ql-font .ql-picker-label:before{content:"Sans Serif"}.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=serif]:before,.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=serif]:before{content:"Serif"}.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=monospace]:before,.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=monospace]:before{content:"Monospace"}.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=serif]:before{font-family:Georgia,Times New Roman,serif}.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=monospace]:before{font-family:Monaco,Courier New,monospace}.ql-snow .ql-picker.ql-size{width:98px}.ql-snow .ql-picker.ql-size .ql-picker-item:before,.ql-snow .ql-picker.ql-size .ql-picker-label:before{content:"Normal"}.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=small]:before,.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=small]:before{content:"Small"}.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=large]:before,.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=large]:before{content:"Large"}.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=huge]:before,.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=huge]:before{content:"Huge"}.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=small]:before{font-size:10px}.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=large]:before{font-size:18px}.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=huge]:before{font-size:32px}.ql-snow .ql-color-picker.ql-background .ql-picker-item{background-color:#fff}.ql-snow .ql-color-picker.ql-color .ql-picker-item{background-color:#000}.ql-toolbar.ql-snow{padding:10px 15px;box-sizing:border-box;background-color:#f3f5fa;border:1px solid #e5e7eb;font-family:helvetica neue,helvetica,arial,sans-serif}.ql-toolbar.ql-snow .ql-formats{margin-right:10px}.ql-toolbar.ql-snow .ql-picker-options{border:1px solid transparent;box-shadow:0 2px 8px rgba(0,0,0,.2)}.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-label,.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-options{border-color:#e5e7eb}.ql-toolbar.ql-snow .ql-color-picker .ql-picker-item.ql-selected,.ql-toolbar.ql-snow .ql-color-picker .ql-picker-item:hover{border-color:#000}.ql-toolbar.ql-snow+.ql-container.ql-snow{border-top:0}.ql-snow .ql-tooltip{background-color:#fff;border:1px solid #e5e7eb;box-shadow:0 0 5px #ddd;color:#023047;padding:5px 12px;white-space:nowrap}.ql-snow .ql-tooltip:before{content:"Visit URL:";line-height:26px;margin-right:8px}.ql-snow .ql-tooltip input[type=text]{display:none;border:1px solid #e5e7eb;font-size:13px;height:26px;margin:0;padding:3px 5px;width:170px}.ql-snow .ql-tooltip a.ql-preview{display:inline-block;max-width:200px;overflow-x:hidden;text-overflow:ellipsis;vertical-align:top}.ql-snow .ql-tooltip a.ql-action:after{border-right:1px solid #e5e7eb;content:"Edit";margin-left:16px;padding-right:8px}.ql-snow .ql-tooltip a.ql-remove:before{content:"Remove";margin-left:8px}.ql-snow .ql-tooltip a{line-height:26px}.ql-snow .ql-tooltip.ql-editing a.ql-preview,.ql-snow .ql-tooltip.ql-editing a.ql-remove{display:none}.ql-snow .ql-tooltip.ql-editing input[type=text]{display:inline-block}.ql-snow .ql-tooltip.ql-editing a.ql-action:after{border-right:0;content:"Save";padding-right:0}.ql-snow .ql-tooltip[data-mode=link]:before{content:"Enter link:"}.ql-snow .ql-tooltip[data-mode=formula]:before{content:"Enter formula:"}.ql-snow .ql-tooltip[data-mode=video]:before{content:"Enter video:"}.ql-snow a{color:#3454d1}.ql-container.ql-snow{border:1px solid #e5e7eb}
+/*# sourceMappingURL=quill.min.css.map */
diff --git a/dasena-web/public/assets/admin/vendors/css/quill.min.css.map b/dasena-web/public/assets/admin/vendors/css/quill.min.css.map
new file mode 100644
index 0000000..42b3c8b
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/css/quill.min.css.map
@@ -0,0 +1 @@
+{"version":3,"sources":["quill.min.css"],"names":[],"mappings":"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","file":"quill.min.css","sourcesContent":[]}
\ No newline at end of file
diff --git a/dasena-web/public/assets/admin/vendors/css/select2-theme.min.css b/dasena-web/public/assets/admin/vendors/css/select2-theme.min.css
new file mode 100644
index 0000000..01dfbce
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/css/select2-theme.min.css
@@ -0,0 +1,4 @@
+/*!
+ * Select2 v4 Bootstrap 5 theme v1.3.0
+ */.select2-container--bootstrap-5{display:block}select+.select2-container--bootstrap-5{z-index:1}.select2-container--bootstrap-5 :focus{outline:0}.select2-container--bootstrap-5 .select2-selection{width:100%;min-height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;font-family:inherit;font-size:1rem;font-weight:400;line-height:1.5;color:#212529;background-color:#fff;border:1px solid #ced4da;border-radius:.25rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.select2-container--bootstrap-5 .select2-selection{transition:none}}.select2-container--bootstrap-5.select2-container--focus .select2-selection,.select2-container--bootstrap-5.select2-container--open .select2-selection{border-color:#86b7fe;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.select2-container--bootstrap-5.select2-container--open.select2-container--below .select2-selection{border-bottom:0 solid transparent;border-bottom-right-radius:0;border-bottom-left-radius:0}.select2-container--bootstrap-5.select2-container--open.select2-container--above .select2-selection{border-top:0 solid transparent;border-top-left-radius:0;border-top-right-radius:0}.select2-container--bootstrap-5 .select2-search{width:100%}.select2-container--bootstrap-5 .select2-search--inline .select2-search__field{vertical-align:top}.select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__clear,.select2-container--bootstrap-5 .select2-selection--single .select2-selection__clear{position:absolute;top:50%;right:2.25rem;width:.75rem;height:.75rem;padding:.25em;overflow:hidden;text-indent:100%;white-space:nowrap;background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23676a6d'%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") 50%/.75rem auto no-repeat;transform:translateY(-50%)}.select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__clear:hover,.select2-container--bootstrap-5 .select2-selection--single .select2-selection__clear:hover{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") 50%/.75rem auto no-repeat}.select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__clear>span,.select2-container--bootstrap-5 .select2-selection--single .select2-selection__clear>span{display:none}.select2-container--bootstrap-5+.select2-container--bootstrap-5{z-index:1056}.select2-container--bootstrap-5 .select2-dropdown{z-index:1056;overflow:hidden;color:#212529;background-color:#fff;border-color:#86b7fe;border-radius:.25rem}.select2-container--bootstrap-5 .select2-dropdown.select2-dropdown--below{border-top:0 solid transparent;border-top-left-radius:0;border-top-right-radius:0}.select2-container--bootstrap-5 .select2-dropdown.select2-dropdown--above{border-bottom:0 solid transparent;border-bottom-right-radius:0;border-bottom-left-radius:0}.select2-container--bootstrap-5 .select2-dropdown .select2-search{padding:.375rem .75rem}.select2-container--bootstrap-5 .select2-dropdown .select2-search .select2-search__field{display:block;width:100%;padding:.375rem .75rem;font-family:inherit;font-size:1rem;font-weight:400;line-height:1.5;color:#212529;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;-webkit-appearance:none;-moz-appearance:none;appearance:none;border-radius:.25rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.select2-container--bootstrap-5 .select2-dropdown .select2-search .select2-search__field{transition:none}}.select2-container--bootstrap-5 .select2-dropdown .select2-search .select2-search__field:focus{border-color:#86b7fe;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.select2-container--bootstrap-5 .select2-dropdown .select2-results__options:not(.select2-results__options--nested){max-height:15rem;overflow-y:auto}.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option{padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5}.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option.select2-results__message{color:#6c757d}.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option.select2-results__option--highlighted{color:#000;background-color:#e9ecef}.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option.select2-results__option--selected,.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option[aria-selected=true]:not(.select2-results__option--highlighted){color:#3454d1;background-color:#f2f6fd}.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option.select2-results__option--disabled,.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option[aria-disabled=true]{color:#6c757d}.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option[role=group]{padding:0}.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option[role=group] .select2-results__group{padding:.375rem;font-weight:500;line-height:1.5;color:#6c757d}.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option[role=group] .select2-results__options--nested .select2-results__option{padding:.375rem .75rem}.select2-container--bootstrap-5 .select2-selection--single{padding:.375rem 2.25rem .375rem .75rem;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right .75rem center;background-size:16px 12px}.select2-container--bootstrap-5 .select2-selection--single .select2-selection__rendered{padding:0;font-weight:400;line-height:1.5;color:#212529}.select2-container--bootstrap-5 .select2-selection--single .select2-selection__rendered .select2-selection__placeholder{font-weight:400;line-height:1.5;color:#6c757d}.select2-container--bootstrap-5 .select2-selection--single .select2-selection__rendered .select2-selection__arrow{display:none}.select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__rendered{display:flex;flex-direction:row;flex-wrap:wrap;padding-left:0;margin:0;list-style:none}.select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__rendered .select2-selection__choice{display:flex;flex-direction:row;align-items:center;padding:.35em .65em;margin-right:.375rem;margin-bottom:.375rem;font-size:1rem;color:#212529;cursor:auto;border:1px solid #ced4da;border-radius:.25rem}.select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__rendered .select2-selection__choice .select2-selection__choice__remove{width:.75rem;height:.75rem;padding:.25em;margin-right:.25rem;overflow:hidden;text-indent:100%;white-space:nowrap;background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23676a6d'%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") 50%/.75rem auto no-repeat;border:0}.select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__rendered .select2-selection__choice .select2-selection__choice__remove:hover{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") 50%/.75rem auto no-repeat}.select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__rendered .select2-selection__choice .select2-selection__choice__remove>span{display:none}.select2-container--bootstrap-5 .select2-selection--multiple .select2-search{display:block;width:100%;height:1.5rem}.select2-container--bootstrap-5 .select2-selection--multiple .select2-search .select2-search__field{width:100%;height:1.5rem;margin-top:0;margin-left:0;font-family:inherit;line-height:1.5;background-color:transparent}.select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__clear{right:.75rem}.select2-container--bootstrap-5.select2-container--disabled .select2-selection,.select2-container--bootstrap-5.select2-container--disabled.select2-container--focus .select2-selection{color:#6c757d;cursor:not-allowed;background-color:#e9ecef;border-color:#ced4da;box-shadow:none}.select2-container--bootstrap-5.select2-container--disabled .select2-selection--multiple .select2-selection__clear,.select2-container--bootstrap-5.select2-container--disabled.select2-container--focus .select2-selection--multiple .select2-selection__clear{display:none}.select2-container--bootstrap-5.select2-container--disabled .select2-selection--multiple .select2-selection__choice,.select2-container--bootstrap-5.select2-container--disabled.select2-container--focus .select2-selection--multiple .select2-selection__choice{cursor:not-allowed}.select2-container--bootstrap-5.select2-container--disabled .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove,.select2-container--bootstrap-5.select2-container--disabled.select2-container--focus .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove{display:none}.select2-container--bootstrap-5.select2-container--disabled .select2-selection--multiple .select2-selection__rendered:not(:empty),.select2-container--bootstrap-5.select2-container--disabled.select2-container--focus .select2-selection--multiple .select2-selection__rendered:not(:empty){padding-bottom:0}.select2-container--bootstrap-5.select2-container--disabled .select2-selection--multiple .select2-selection__rendered:not(:empty)+.select2-search,.select2-container--bootstrap-5.select2-container--disabled.select2-container--focus .select2-selection--multiple .select2-selection__rendered:not(:empty)+.select2-search{display:none}.input-group.has-validation>:nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu).select2-container--bootstrap-5 .select2-selection,.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu).select2-container--bootstrap-5 .select2-selection{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.btn~.select2-container--bootstrap-5 .select2-selection,.input-group>.dropdown-menu~.select2-container--bootstrap-5 .select2-selection,.input-group>.input-group-text~.select2-container--bootstrap-5 .select2-selection{border-top-left-radius:0;border-bottom-left-radius:0}.input-group .select2-container--bootstrap-5{flex-grow:1}.input-group .select2-container--bootstrap-5 .select2-selection{height:100%}.is-valid+.select2-container--bootstrap-5 .select2-selection,.was-validated select:valid+.select2-container--bootstrap-5 .select2-selection{border-color:#198754}.is-valid+.select2-container--bootstrap-5.select2-container--focus .select2-selection,.is-valid+.select2-container--bootstrap-5.select2-container--open .select2-selection,.was-validated select:valid+.select2-container--bootstrap-5.select2-container--focus .select2-selection,.was-validated select:valid+.select2-container--bootstrap-5.select2-container--open .select2-selection{border-color:#198754;box-shadow:0 0 0 .25rem rgba(25,135,84,.25)}.is-valid+.select2-container--bootstrap-5.select2-container--open.select2-container--below .select2-selection,.was-validated select:valid+.select2-container--bootstrap-5.select2-container--open.select2-container--below .select2-selection{border-bottom:0 solid transparent}.is-valid+.select2-container--bootstrap-5.select2-container--open.select2-container--above .select2-selection,.was-validated select:valid+.select2-container--bootstrap-5.select2-container--open.select2-container--above .select2-selection{border-top:0 solid transparent;border-top-left-radius:0;border-top-right-radius:0}.is-invalid+.select2-container--bootstrap-5 .select2-selection,.was-validated select:invalid+.select2-container--bootstrap-5 .select2-selection{border-color:#dc3545}.is-invalid+.select2-container--bootstrap-5.select2-container--focus .select2-selection,.is-invalid+.select2-container--bootstrap-5.select2-container--open .select2-selection,.was-validated select:invalid+.select2-container--bootstrap-5.select2-container--focus .select2-selection,.was-validated select:invalid+.select2-container--bootstrap-5.select2-container--open .select2-selection{border-color:#dc3545;box-shadow:0 0 0 .25rem rgba(220,53,69,.25)}.is-invalid+.select2-container--bootstrap-5.select2-container--open.select2-container--below .select2-selection,.was-validated select:invalid+.select2-container--bootstrap-5.select2-container--open.select2-container--below .select2-selection{border-bottom:0 solid transparent}.is-invalid+.select2-container--bootstrap-5.select2-container--open.select2-container--above .select2-selection,.was-validated select:invalid+.select2-container--bootstrap-5.select2-container--open.select2-container--above .select2-selection{border-top:0 solid transparent;border-top-left-radius:0;border-top-right-radius:0}.select2-container--bootstrap-5 .select2--small.select2-selection{min-height:calc(1.5em + .5rem + 2px);padding:.25rem .5rem;font-size:.875rem;border-radius:.2rem}.select2-container--bootstrap-5 .select2--small.select2-selection--multiple .select2-selection__clear,.select2-container--bootstrap-5 .select2--small.select2-selection--single .select2-selection__clear{width:.5rem;height:.5rem;padding:.125rem;background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23676a6d'%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") 50%/.5rem auto no-repeat}.select2-container--bootstrap-5 .select2--small.select2-selection--multiple .select2-selection__clear:hover,.select2-container--bootstrap-5 .select2--small.select2-selection--single .select2-selection__clear:hover{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") 50%/.5rem auto no-repeat}.select2-container--bootstrap-5 .select2--small.select2-selection--multiple .select2-search,.select2-container--bootstrap-5 .select2--small.select2-selection--multiple .select2-search .select2-search__field,.select2-container--bootstrap-5 .select2--small.select2-selection--single .select2-search,.select2-container--bootstrap-5 .select2--small.select2-selection--single .select2-search .select2-search__field{height:1.5em}.select2-container--bootstrap-5 .select2--small.select2-dropdown{border-radius:.2rem}.select2-container--bootstrap-5 .select2--small.select2-dropdown.select2-dropdown--below{border-top-left-radius:0;border-top-right-radius:0}.select2-container--bootstrap-5 .select2--small.select2-dropdown.select2-dropdown--above{border-bottom-right-radius:0;border-bottom-left-radius:0}.select2-container--bootstrap-5 .select2--small.select2-dropdown .select2-results__options .select2-results__option,.select2-container--bootstrap-5 .select2--small.select2-dropdown .select2-search .select2-search__field{padding:.25rem .5rem;font-size:.875rem}.select2-container--bootstrap-5 .select2--small.select2-dropdown .select2-results__options .select2-results__option[role=group] .select2-results__group{padding:.25rem}.select2-container--bootstrap-5 .select2--small.select2-dropdown .select2-results__options .select2-results__option[role=group] .select2-results__options--nested .select2-results__option{padding:.25rem .5rem}.select2-container--bootstrap-5 .select2--small.select2-selection--single{padding:.25rem 2.25rem .25rem .5rem}.select2-container--bootstrap-5 .select2--small.select2-selection--multiple .select2-selection__rendered .select2-selection__choice{padding:.35em .65em;font-size:.875rem}.select2-container--bootstrap-5 .select2--small.select2-selection--multiple .select2-selection__rendered .select2-selection__choice .select2-selection__choice__remove{width:.5rem;height:.5rem;padding:.125rem;background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23676a6d'%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") 50%/.5rem auto no-repeat}.select2-container--bootstrap-5 .select2--small.select2-selection--multiple .select2-selection__rendered .select2-selection__choice .select2-selection__choice__remove:hover{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") 50%/.5rem auto no-repeat}.select2-container--bootstrap-5 .select2--small.select2-selection--multiple .select2-selection__clear{right:.5rem}.select2-container--bootstrap-5 .select2--large.select2-selection{min-height:calc(1.5em + 1rem + 2px);padding:.5rem 1rem;font-size:1.25rem;border-radius:.3rem}.select2-container--bootstrap-5 .select2--large.select2-selection--multiple .select2-selection__clear,.select2-container--bootstrap-5 .select2--large.select2-selection--single .select2-selection__clear{width:1rem;height:1rem;padding:.5rem;background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23676a6d'%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") 50%/1rem auto no-repeat}.select2-container--bootstrap-5 .select2--large.select2-selection--multiple .select2-selection__clear:hover,.select2-container--bootstrap-5 .select2--large.select2-selection--single .select2-selection__clear:hover{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") 50%/1rem auto no-repeat}.select2-container--bootstrap-5 .select2--large.select2-selection--multiple .select2-search,.select2-container--bootstrap-5 .select2--large.select2-selection--multiple .select2-search .select2-search__field,.select2-container--bootstrap-5 .select2--large.select2-selection--single .select2-search,.select2-container--bootstrap-5 .select2--large.select2-selection--single .select2-search .select2-search__field{height:1.5em}.select2-container--bootstrap-5 .select2--large.select2-dropdown{border-radius:.3rem}.select2-container--bootstrap-5 .select2--large.select2-dropdown.select2-dropdown--below{border-top-left-radius:0;border-top-right-radius:0}.select2-container--bootstrap-5 .select2--large.select2-dropdown.select2-dropdown--above{border-bottom-right-radius:0;border-bottom-left-radius:0}.select2-container--bootstrap-5 .select2--large.select2-dropdown .select2-results__options .select2-results__option,.select2-container--bootstrap-5 .select2--large.select2-dropdown .select2-search .select2-search__field{padding:.5rem 1rem;font-size:1.25rem}.select2-container--bootstrap-5 .select2--large.select2-dropdown .select2-results__options .select2-results__option[role=group] .select2-results__group{padding:.5rem}.select2-container--bootstrap-5 .select2--large.select2-dropdown .select2-results__options .select2-results__option[role=group] .select2-results__options--nested .select2-results__option{padding:.5rem 1rem}.select2-container--bootstrap-5 .select2--large.select2-selection--single{padding:.5rem 2.25rem .5rem 1rem}.select2-container--bootstrap-5 .select2--large.select2-selection--multiple .select2-selection__rendered .select2-selection__choice{padding:.35em .65em;font-size:1.25rem}.select2-container--bootstrap-5 .select2--large.select2-selection--multiple .select2-selection__rendered .select2-selection__choice .select2-selection__choice__remove{width:1rem;height:1rem;padding:.5rem;background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23676a6d'%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") 50%/1rem auto no-repeat}.select2-container--bootstrap-5 .select2--large.select2-selection--multiple .select2-selection__rendered .select2-selection__choice .select2-selection__choice__remove:hover{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") 50%/1rem auto no-repeat}.select2-container--bootstrap-5 .select2--large.select2-selection--multiple .select2-selection__clear{right:1rem}.form-select-sm~.select2-container--bootstrap-5 .select2-selection{min-height:calc(1.5em + .5rem + 2px);padding:.25rem .5rem;font-size:.875rem;border-radius:.2rem}.form-select-sm~.select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__clear,.form-select-sm~.select2-container--bootstrap-5 .select2-selection--single .select2-selection__clear{width:.5rem;height:.5rem;padding:.125rem;background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23676a6d'%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") 50%/.5rem auto no-repeat}.form-select-sm~.select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__clear:hover,.form-select-sm~.select2-container--bootstrap-5 .select2-selection--single .select2-selection__clear:hover{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") 50%/.5rem auto no-repeat}.form-select-sm~.select2-container--bootstrap-5 .select2-selection--multiple .select2-search,.form-select-sm~.select2-container--bootstrap-5 .select2-selection--multiple .select2-search .select2-search__field,.form-select-sm~.select2-container--bootstrap-5 .select2-selection--single .select2-search,.form-select-sm~.select2-container--bootstrap-5 .select2-selection--single .select2-search .select2-search__field{height:1.5em}.form-select-sm~.select2-container--bootstrap-5 .select2-dropdown{border-radius:.2rem}.form-select-sm~.select2-container--bootstrap-5 .select2-dropdown.select2-dropdown--below{border-top-left-radius:0;border-top-right-radius:0}.form-select-sm~.select2-container--bootstrap-5 .select2-dropdown.select2-dropdown--above{border-bottom-right-radius:0;border-bottom-left-radius:0}.form-select-sm~.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option,.form-select-sm~.select2-container--bootstrap-5 .select2-dropdown .select2-search .select2-search__field{padding:.25rem .5rem;font-size:.875rem}.form-select-sm~.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option[role=group] .select2-results__group{padding:.25rem}.form-select-sm~.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option[role=group] .select2-results__options--nested .select2-results__option{padding:.25rem .5rem}.form-select-sm~.select2-container--bootstrap-5 .select2-selection--single{padding:.25rem 2.25rem .25rem .5rem}.form-select-sm~.select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__rendered .select2-selection__choice{padding:.35em .65em;font-size:.875rem}.form-select-sm~.select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__rendered .select2-selection__choice .select2-selection__choice__remove{width:.5rem;height:.5rem;padding:.125rem;background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23676a6d'%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") 50%/.5rem auto no-repeat}.form-select-sm~.select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__rendered .select2-selection__choice .select2-selection__choice__remove:hover{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") 50%/.5rem auto no-repeat}.form-select-sm~.select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__clear{right:.5rem}.form-select-lg~.select2-container--bootstrap-5 .select2-selection{min-height:calc(1.5em + 1rem + 2px);padding:.5rem 1rem;font-size:1.25rem;border-radius:.3rem}.form-select-lg~.select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__clear,.form-select-lg~.select2-container--bootstrap-5 .select2-selection--single .select2-selection__clear{width:1rem;height:1rem;padding:.5rem;background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23676a6d'%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") 50%/1rem auto no-repeat}.form-select-lg~.select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__clear:hover,.form-select-lg~.select2-container--bootstrap-5 .select2-selection--single .select2-selection__clear:hover{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") 50%/1rem auto no-repeat}.form-select-lg~.select2-container--bootstrap-5 .select2-selection--multiple .select2-search,.form-select-lg~.select2-container--bootstrap-5 .select2-selection--multiple .select2-search .select2-search__field,.form-select-lg~.select2-container--bootstrap-5 .select2-selection--single .select2-search,.form-select-lg~.select2-container--bootstrap-5 .select2-selection--single .select2-search .select2-search__field{height:1.5em}.form-select-lg~.select2-container--bootstrap-5 .select2-dropdown{border-radius:.3rem}.form-select-lg~.select2-container--bootstrap-5 .select2-dropdown.select2-dropdown--below{border-top-left-radius:0;border-top-right-radius:0}.form-select-lg~.select2-container--bootstrap-5 .select2-dropdown.select2-dropdown--above{border-bottom-right-radius:0;border-bottom-left-radius:0}.form-select-lg~.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option,.form-select-lg~.select2-container--bootstrap-5 .select2-dropdown .select2-search .select2-search__field{padding:.5rem 1rem;font-size:1.25rem}.form-select-lg~.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option[role=group] .select2-results__group{padding:.5rem}.form-select-lg~.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option[role=group] .select2-results__options--nested .select2-results__option{padding:.5rem 1rem}.form-select-lg~.select2-container--bootstrap-5 .select2-selection--single{padding:.5rem 2.25rem .5rem 1rem}.form-select-lg~.select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__rendered .select2-selection__choice{padding:.35em .65em;font-size:1.25rem}.form-select-lg~.select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__rendered .select2-selection__choice .select2-selection__choice__remove{width:1rem;height:1rem;padding:.5rem;background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23676a6d'%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") 50%/1rem auto no-repeat}.form-select-lg~.select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__rendered .select2-selection__choice .select2-selection__choice__remove:hover{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") 50%/1rem auto no-repeat}.form-select-lg~.select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__clear{right:1rem}
+/*# sourceMappingURL=select2-theme.min.css.map */
diff --git a/dasena-web/public/assets/admin/vendors/css/select2-theme.min.css.map b/dasena-web/public/assets/admin/vendors/css/select2-theme.min.css.map
new file mode 100644
index 0000000..4f18e56
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/css/select2-theme.min.css.map
@@ -0,0 +1 @@
+{"version":3,"sources":["select2-theme.min.css"],"names":[],"mappings":"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","file":"select2-theme.min.css","sourcesContent":[]}
\ No newline at end of file
diff --git a/dasena-web/public/assets/admin/vendors/css/select2.min.css b/dasena-web/public/assets/admin/vendors/css/select2.min.css
new file mode 100644
index 0000000..29dfe1f
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/css/select2.min.css
@@ -0,0 +1,2 @@
+.select2-container{z-index:9999999;box-sizing:border-box;display:inline-block;margin:0;position:relative;vertical-align:middle}.select2-container .select2-selection--single{box-sizing:border-box;cursor:pointer;display:block;height:28px;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--single .select2-selection__rendered{display:block;padding-left:8px;padding-right:20px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-selection--single .select2-selection__clear{position:relative}.select2-container[dir=rtl] .select2-selection--single .select2-selection__rendered{padding-right:8px;padding-left:20px}.select2-container .select2-selection--multiple{box-sizing:border-box;cursor:pointer;display:block;min-height:32px;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--multiple .select2-selection__rendered{display:inline-block;overflow:hidden;padding-left:8px;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-search--inline{float:left}.select2-container .select2-search--inline .select2-search__field{box-sizing:border-box;border:none;font-size:100%;margin-top:5px;padding:0}.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-dropdown{background-color:#fff;border:1px solid #aaa;border-radius:4px;box-sizing:border-box;display:block;position:absolute;left:-100000px;width:100%;z-index:1051}.select2-results{display:block}.select2-results__options{list-style:none;margin:0;padding:0}.select2-results__option{padding:6px;user-select:none;-webkit-user-select:none}.select2-results__option[aria-selected]{cursor:pointer}.select2-container--open .select2-dropdown{left:0}.select2-container--open .select2-dropdown--above{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--open .select2-dropdown--below{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-search--dropdown{display:block;padding:4px}.select2-search--dropdown .select2-search__field{padding:4px;width:100%;box-sizing:border-box}.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-search--dropdown.select2-search--hide{display:none}.select2-close-mask{border:0;margin:0;padding:0;display:block;position:fixed;left:0;top:0;min-height:100%;min-width:100%;height:auto;width:auto;opacity:0;z-index:99;background-color:#fff}.select2-hidden-accessible{border:0!important;clip:rect(0 0 0 0)!important;-webkit-clip-path:inset(50%)!important;clip-path:inset(50%)!important;height:1px!important;overflow:hidden!important;padding:0!important;position:absolute!important;width:1px!important;white-space:nowrap!important}.select2-container--default .select2-selection--single{background-color:#fff;border:1px solid #aaa;border-radius:4px}.select2-container--default .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px}.select2-container--default .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:700}.select2-container--default .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--default .select2-selection--single .select2-selection__arrow{height:26px;position:absolute;top:1px;right:1px;width:20px}.select2-container--default .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__clear{float:left}.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__arrow{left:1px;right:auto}.select2-container--default.select2-container--disabled .select2-selection--single{background-color:#eee;cursor:default}.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear{display:none}.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888 transparent;border-width:0 4px 5px 4px}.select2-container--default .select2-selection--multiple{background-color:#fff;border:1px solid #aaa;border-radius:4px;cursor:text}.select2-container--default .select2-selection--multiple .select2-selection__rendered{box-sizing:border-box;list-style:none;margin:0;padding:0 5px;width:100%}.select2-container--default .select2-selection--multiple .select2-selection__rendered li{list-style:none}.select2-container--default .select2-selection--multiple .select2-selection__clear{cursor:pointer;float:right;font-weight:700;margin-top:5px;margin-right:10px;padding:1px}.select2-container--default .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;cursor:default;float:left;margin-right:5px;margin-top:5px;padding:0 5px}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove{color:#999;cursor:pointer;display:inline-block;font-weight:700;margin-right:2px}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover{color:#333}.select2-container--default[dir=rtl] .select2-selection--multiple .select2-search--inline,.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice{float:right}.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice{margin-left:5px;margin-right:auto}.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove{margin-left:2px;margin-right:auto}.select2-container--default.select2-container--focus .select2-selection--multiple{border:solid #000 1px;outline:0}.select2-container--default.select2-container--disabled .select2-selection--multiple{background-color:#eee;cursor:default}.select2-container--default.select2-container--disabled .select2-selection__choice__remove{display:none}.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple,.select2-container--default.select2-container--open.select2-container--above .select2-selection--single{border-top-left-radius:0;border-top-right-radius:0}.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple,.select2-container--default.select2-container--open.select2-container--below .select2-selection--single{border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--default .select2-search--dropdown .select2-search__field{border:1px solid #aaa}.select2-container--default .select2-search--inline .select2-search__field{background:0 0;border:none;outline:0;box-shadow:none;-webkit-appearance:textfield}.select2-container--default .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--default .select2-results__option[role=group]{padding:0}.select2-container--default .select2-results__option[aria-disabled=true]{color:#999}.select2-container--default .select2-results__option[aria-selected=true]{background-color:#ddd}.select2-container--default .select2-results__option .select2-results__option{padding-left:1em}.select2-container--default .select2-results__option .select2-results__option .select2-results__group{padding-left:0}.select2-container--default .select2-results__option .select2-results__option .select2-results__option{margin-left:-1em;padding-left:2em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-2em;padding-left:3em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-3em;padding-left:4em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-4em;padding-left:5em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-5em;padding-left:6em}.select2-container--default .select2-results__option--highlighted[aria-selected]{background-color:#5897fb;color:#fff}.select2-container--default .select2-results__group{cursor:default;display:block;padding:6px}.select2-container--classic .select2-selection--single{background-color:#f7f7f7;border:1px solid #aaa;border-radius:4px;outline:0;background-image:-webkit-linear-gradient(top,#fff 50%,#eee 100%);background-image:-o-linear-gradient(top,#fff 50%,#eee 100%);background-image:linear-gradient(to bottom,#fff 50%,#eee 100%);background-repeat:repeat-x}.select2-container--classic .select2-selection--single:focus{border:1px solid #5897fb}.select2-container--classic .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px}.select2-container--classic .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:700;margin-right:10px}.select2-container--classic .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--classic .select2-selection--single .select2-selection__arrow{background-color:#ddd;border:none;border-left:1px solid #aaa;border-top-right-radius:4px;border-bottom-right-radius:4px;height:26px;position:absolute;top:1px;right:1px;width:20px;background-image:-webkit-linear-gradient(top,#eee 50%,#ccc 100%);background-image:-o-linear-gradient(top,#eee 50%,#ccc 100%);background-image:linear-gradient(to bottom,#eee 50%,#ccc 100%);background-repeat:repeat-x}.select2-container--classic .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__clear{float:left}.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__arrow{border:none;border-right:1px solid #aaa;border-radius:0;border-top-left-radius:4px;border-bottom-left-radius:4px;left:1px;right:auto}.select2-container--classic.select2-container--open .select2-selection--single{border:1px solid #5897fb}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow{background:0 0;border:none}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888 transparent;border-width:0 4px 5px 4px}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single{border-top:none;border-top-left-radius:0;border-top-right-radius:0;background-image:-webkit-linear-gradient(top,#fff 0,#eee 50%);background-image:-o-linear-gradient(top,#fff 0,#eee 50%);background-image:linear-gradient(to bottom,#fff 0,#eee 50%);background-repeat:repeat-x}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0;background-image:-webkit-linear-gradient(top,#eee 50%,#fff 100%);background-image:-o-linear-gradient(top,#eee 50%,#fff 100%);background-image:linear-gradient(to bottom,#eee 50%,#fff 100%);background-repeat:repeat-x}.select2-container--classic .select2-selection--multiple{background-color:#fff;border:1px solid #aaa;border-radius:4px;cursor:text;outline:0}.select2-container--classic .select2-selection--multiple:focus{border:1px solid #5897fb}.select2-container--classic .select2-selection--multiple .select2-selection__rendered{list-style:none;margin:0;padding:0 5px}.select2-container--classic .select2-selection--multiple .select2-selection__clear{display:none}.select2-container--classic .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;cursor:default;float:left;margin-right:5px;margin-top:5px;padding:0 5px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove{color:#888;cursor:pointer;display:inline-block;font-weight:700;margin-right:2px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover{color:#555}.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice{float:right;margin-left:5px;margin-right:auto}.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove{margin-left:2px;margin-right:auto}.select2-container--classic.select2-container--open .select2-selection--multiple{border:1px solid #5897fb}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--classic .select2-search--dropdown .select2-search__field{border:1px solid #aaa;outline:0}.select2-container--classic .select2-search--inline .select2-search__field{outline:0;box-shadow:none}.select2-container--classic .select2-dropdown{background-color:#fff;border:1px solid transparent}.select2-container--classic .select2-dropdown--above{border-bottom:none}.select2-container--classic .select2-dropdown--below{border-top:none}.select2-container--classic .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--classic .select2-results__option[role=group]{padding:0}.select2-container--classic .select2-results__option[aria-disabled=true]{color:grey}.select2-container--classic .select2-results__option--highlighted[aria-selected]{background-color:#3875d7;color:#fff}.select2-container--classic .select2-results__group{cursor:default;display:block;padding:6px}.select2-container--classic.select2-container--open .select2-dropdown{border-color:#5897fb}
+/*# sourceMappingURL=select2.min.css.map */
diff --git a/dasena-web/public/assets/admin/vendors/css/select2.min.css.map b/dasena-web/public/assets/admin/vendors/css/select2.min.css.map
new file mode 100644
index 0000000..173ad53
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/css/select2.min.css.map
@@ -0,0 +1 @@
+{"version":3,"sources":["select2.min.css"],"names":[],"mappings":"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","file":"select2.min.css","sourcesContent":[]}
\ No newline at end of file
diff --git a/dasena-web/public/assets/admin/vendors/css/sweetalert2.min.css b/dasena-web/public/assets/admin/vendors/css/sweetalert2.min.css
new file mode 100644
index 0000000..1782827
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/css/sweetalert2.min.css
@@ -0,0 +1,2 @@
+.swal2-popup.swal2-toast{flex-direction:row;align-items:center;width:auto;padding:.625em;overflow-y:hidden;background:#fff;box-shadow:0 0 .625em #d9d9d9}.swal2-popup.swal2-toast .swal2-header{flex-direction:row}.swal2-popup.swal2-toast .swal2-title{flex-grow:1;justify-content:flex-start;margin:0 .6em;font-size:1em}.swal2-popup.swal2-toast .swal2-footer{margin:.5em 0 0;padding:.5em 0 0;font-size:.8em}.swal2-popup.swal2-toast .swal2-close{position:static;width:.8em;height:.8em;line-height:.8}.swal2-popup.swal2-toast .swal2-content{justify-content:flex-start;font-size:1em}.swal2-popup.swal2-toast .swal2-icon{width:2em;min-width:2em;height:2em;margin:0}.swal2-popup.swal2-toast .swal2-icon .swal2-icon-content{display:flex;align-items:center;font-size:1.8em;font-weight:700}@media (-ms-high-contrast:active),(-ms-high-contrast:none){.swal2-popup.swal2-toast .swal2-icon .swal2-icon-content{font-size:.25em}}.swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring{width:2em;height:2em}.swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line]{top:.875em;width:1.375em}.swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left]{left:.3125em}.swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right]{right:.3125em}.swal2-popup.swal2-toast .swal2-actions{flex-basis:auto!important;width:auto;height:auto;margin:0 .3125em}.swal2-popup.swal2-toast .swal2-styled{margin:0 .3125em;padding:.3125em .625em;font-size:1em}.swal2-popup.swal2-toast .swal2-styled:focus{box-shadow:0 0 0 1px #fff,0 0 0 3px rgba(50,100,150,.4)}.swal2-popup.swal2-toast .swal2-success{border-color:#a5dc86}.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line]{position:absolute;width:1.6em;height:3em;transform:rotate(45deg);border-radius:50%}.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=left]{top:-.8em;left:-.5em;transform:rotate(-45deg);transform-origin:2em 2em;border-radius:4em 0 0 4em}.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=right]{top:-.25em;left:.9375em;transform-origin:0 1.5em;border-radius:0 4em 4em 0}.swal2-popup.swal2-toast .swal2-success .swal2-success-ring{width:2em;height:2em}.swal2-popup.swal2-toast .swal2-success .swal2-success-fix{top:0;left:.4375em;width:.4375em;height:2.6875em}.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line]{height:.3125em}.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=tip]{top:1.125em;left:.1875em;width:.75em}.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=long]{top:.9375em;right:.1875em;width:1.375em}.swal2-popup.swal2-toast .swal2-success.swal2-icon-show .swal2-success-line-tip{animation:c .75s}.swal2-popup.swal2-toast .swal2-success.swal2-icon-show .swal2-success-line-long{animation:d .75s}.swal2-popup.swal2-toast.swal2-show{animation:a .5s}.swal2-popup.swal2-toast.swal2-hide{animation:b .1s forwards}.swal2-container{display:flex;position:fixed;z-index:5;top:0;right:0;bottom:0;left:0;flex-direction:row;align-items:center;justify-content:center;padding:.625em;overflow-x:hidden;transition:background-color .1s;-webkit-overflow-scrolling:touch}.swal2-container.swal2-backdrop-show{background:rgba(0,0,0,.4)}.swal2-container.swal2-backdrop-hide{background:0 0!important}.swal2-container.swal2-top{align-items:flex-start}.swal2-container.swal2-top-left,.swal2-container.swal2-top-start{align-items:flex-start;justify-content:flex-start}.swal2-container.swal2-top-end,.swal2-container.swal2-top-right{align-items:flex-start;justify-content:flex-end}.swal2-container.swal2-center{align-items:center}.swal2-container.swal2-center-left,.swal2-container.swal2-center-start{align-items:center;justify-content:flex-start}.swal2-container.swal2-center-end,.swal2-container.swal2-center-right{align-items:center;justify-content:flex-end}.swal2-container.swal2-bottom{align-items:flex-end}.swal2-container.swal2-bottom-left,.swal2-container.swal2-bottom-start{align-items:flex-end;justify-content:flex-start}.swal2-container.swal2-bottom-end,.swal2-container.swal2-bottom-right{align-items:flex-end;justify-content:flex-end}.swal2-container.swal2-bottom-end>:first-child,.swal2-container.swal2-bottom-left>:first-child,.swal2-container.swal2-bottom-right>:first-child,.swal2-container.swal2-bottom-start>:first-child,.swal2-container.swal2-bottom>:first-child{margin-top:auto}.swal2-container.swal2-grow-fullscreen>.swal2-modal{display:flex!important;flex:1;align-self:stretch;justify-content:center}.swal2-container.swal2-grow-row>.swal2-modal{display:flex!important;flex:1;align-content:center;justify-content:center}.swal2-container.swal2-grow-column{flex:1;flex-direction:column}.swal2-container.swal2-grow-column.swal2-bottom,.swal2-container.swal2-grow-column.swal2-center,.swal2-container.swal2-grow-column.swal2-top{align-items:center}.swal2-container.swal2-grow-column.swal2-bottom-left,.swal2-container.swal2-grow-column.swal2-bottom-start,.swal2-container.swal2-grow-column.swal2-center-left,.swal2-container.swal2-grow-column.swal2-center-start,.swal2-container.swal2-grow-column.swal2-top-left,.swal2-container.swal2-grow-column.swal2-top-start{align-items:flex-start}.swal2-container.swal2-grow-column.swal2-bottom-end,.swal2-container.swal2-grow-column.swal2-bottom-right,.swal2-container.swal2-grow-column.swal2-center-end,.swal2-container.swal2-grow-column.swal2-center-right,.swal2-container.swal2-grow-column.swal2-top-end,.swal2-container.swal2-grow-column.swal2-top-right{align-items:flex-end}.swal2-container.swal2-grow-column>.swal2-modal{display:flex!important;flex:1;align-content:center;justify-content:center}.swal2-container:not(.swal2-top):not(.swal2-top-start):not(.swal2-top-end):not(.swal2-top-left):not(.swal2-top-right):not(.swal2-center-start):not(.swal2-center-end):not(.swal2-center-left):not(.swal2-center-right):not(.swal2-bottom):not(.swal2-bottom-start):not(.swal2-bottom-end):not(.swal2-bottom-left):not(.swal2-bottom-right):not(.swal2-grow-fullscreen)>.swal2-modal{margin:auto}@media (-ms-high-contrast:active),(-ms-high-contrast:none){.swal2-container .swal2-modal{margin:0!important}}.swal2-popup{display:none;position:relative;box-sizing:border-box;flex-direction:column;justify-content:center;width:32em;max-width:100%;padding:1.25em;border:none;border-radius:.3125em;background:#fff;font-family:inherit;font-size:1rem}.swal2-popup:focus{outline:0}.swal2-popup.swal2-loading{overflow-y:hidden}.swal2-header{display:flex;flex-direction:column;align-items:center}.swal2-title{position:relative;max-width:100%;margin:0 0 .4em;padding:0;color:#595959;font-size:1.875em;font-weight:600;text-align:center;text-transform:none;word-wrap:break-word}.swal2-actions{display:flex;z-index:1;flex-wrap:wrap;align-items:center;justify-content:center;width:100%;margin:1.25em auto 0}.swal2-actions:not(.swal2-loading) .swal2-styled[disabled]{opacity:.4}.swal2-actions:not(.swal2-loading) .swal2-styled:hover{background-image:linear-gradient(rgba(0,0,0,.1),rgba(0,0,0,.1))}.swal2-actions:not(.swal2-loading) .swal2-styled:active{background-image:linear-gradient(rgba(0,0,0,.2),rgba(0,0,0,.2))}.swal2-actions.swal2-loading .swal2-styled.swal2-confirm{box-sizing:border-box;width:2.5em;height:2.5em;margin:.46875em;padding:0;animation:l 1.5s linear 0s infinite normal;border:.25em solid transparent;border-radius:100%;border-color:transparent;background-color:transparent!important;color:transparent;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.swal2-actions.swal2-loading .swal2-styled.swal2-cancel{margin-right:30px;margin-left:30px}.swal2-actions.swal2-loading :not(.swal2-styled).swal2-confirm:after{content:"";display:inline-block;width:15px;height:15px;margin-left:5px;animation:l 1.5s linear 0s infinite normal;border:3px solid #999;border-radius:50%;border-right-color:transparent;box-shadow:1px 1px 1px #fff}.swal2-styled{margin:.3125em;padding:.625em 2em;box-shadow:none;font-weight:500}.swal2-styled:not([disabled]){cursor:pointer}.swal2-styled.swal2-confirm{background:initial;background-color:#3085d6}.swal2-styled.swal2-cancel,.swal2-styled.swal2-confirm{border:0;border-radius:.25em;color:#fff;font-size:1.0625em}.swal2-styled.swal2-cancel{background:initial;background-color:#aaa}.swal2-styled:focus{outline:0;box-shadow:0 0 0 1px #fff,0 0 0 3px rgba(50,100,150,.4)}.swal2-styled::-moz-focus-inner{border:0}.swal2-footer{justify-content:center;margin:1.25em 0 0;padding:1em 0 0;border-top:1px solid #eee;color:#545454;font-size:1em}.swal2-timer-progress-bar{position:absolute;bottom:0;left:0;width:100%;height:.25em;background:rgba(0,0,0,.2)}.swal2-image{max-width:100%;margin:1.25em auto}.swal2-close{position:absolute;z-index:2;top:0;right:0;justify-content:center;width:1.2em;height:1.2em;padding:0;overflow:hidden;transition:color .1s ease-out;border:none;border-radius:0;outline:initial;background:0 0;color:#ccc;font-family:serif;font-size:2.5em;line-height:1.2;cursor:pointer}.swal2-close:hover{transform:none;background:0 0;color:#f27474}.swal2-close::-moz-focus-inner{border:0}.swal2-content{z-index:1;justify-content:center;margin:0;padding:0;color:#545454;font-size:1.125em;font-weight:400;line-height:normal;text-align:center;word-wrap:break-word}.swal2-checkbox,.swal2-file,.swal2-input,.swal2-radio,.swal2-select,.swal2-textarea{margin:1em auto}.swal2-file,.swal2-input,.swal2-textarea{box-sizing:border-box;width:100%;transition:border-color .3s,box-shadow .3s;border:1px solid #d9d9d9;border-radius:.1875em;background:inherit;box-shadow:inset 0 1px 1px rgba(0,0,0,.06);color:inherit;font-size:1.125em}.swal2-file.swal2-inputerror,.swal2-input.swal2-inputerror,.swal2-textarea.swal2-inputerror{border-color:#f27474!important;box-shadow:0 0 2px #f27474!important}.swal2-file:focus,.swal2-input:focus,.swal2-textarea:focus{border:1px solid #b4dbed;outline:0;box-shadow:0 0 3px #c4e6f5}.swal2-file:-ms-input-placeholder,.swal2-file::-ms-input-placeholder,.swal2-input:-ms-input-placeholder,.swal2-input::-ms-input-placeholder,.swal2-textarea:-ms-input-placeholder,.swal2-textarea::-ms-input-placeholder{color:#ccc}.swal2-file::placeholder,.swal2-input::placeholder,.swal2-textarea::placeholder{color:#ccc}.swal2-range{margin:1em auto;background:#fff}.swal2-range input{width:80%}.swal2-range output{width:20%;color:inherit;font-weight:600;text-align:center}.swal2-range input,.swal2-range output{height:2.625em;padding:0;font-size:1.125em;line-height:2.625em}.swal2-input{height:2.625em;padding:0 .75em}.swal2-input[type=number]{max-width:10em}.swal2-file{background:inherit;font-size:1.125em}.swal2-textarea{height:6.75em;padding:.75em}.swal2-select{min-width:50%;max-width:100%;padding:.375em .625em;background:inherit;color:inherit;font-size:1.125em}.swal2-checkbox,.swal2-radio{align-items:center;justify-content:center;background:#fff;color:inherit}.swal2-checkbox label,.swal2-radio label{margin:0 .6em;font-size:1.125em}.swal2-checkbox input,.swal2-radio input{margin:0 .4em}.swal2-validation-message{display:none;align-items:center;justify-content:center;padding:.625em;overflow:hidden;background:#f0f0f0;color:#666;font-size:1em;font-weight:300}.swal2-validation-message:before{content:"!";display:inline-block;width:1.5em;min-width:1.5em;height:1.5em;margin:0 .625em;border-radius:50%;background-color:#f27474;color:#fff;font-weight:600;line-height:1.5em;text-align:center}.swal2-icon{position:relative;box-sizing:content-box;justify-content:center;width:5em;height:5em;margin:1.25em auto 1.875em;border:.25em solid transparent;border-radius:50%;font-family:inherit;line-height:5em;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.swal2-icon .swal2-icon-content{display:flex;align-items:center;font-size:3.75em}.swal2-icon.swal2-error{border-color:#f27474;color:#f27474}.swal2-icon.swal2-error .swal2-x-mark{position:relative;flex-grow:1}.swal2-icon.swal2-error [class^=swal2-x-mark-line]{display:block;position:absolute;top:2.3125em;width:2.9375em;height:.3125em;border-radius:.125em;background-color:#f27474}.swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left]{left:1.0625em;transform:rotate(45deg)}.swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right]{right:1em;transform:rotate(-45deg)}.swal2-icon.swal2-error.swal2-icon-show{animation:k .5s}.swal2-icon.swal2-error.swal2-icon-show .swal2-x-mark{animation:j .5s}.swal2-icon.swal2-warning{border-color:#facea8;color:#f8bb86}.swal2-icon.swal2-info{border-color:#9de0f6;color:#3fc3ee}.swal2-icon.swal2-question{border-color:#c9dae1;color:#87adbd}.swal2-icon.swal2-success{border-color:#a5dc86;color:#a5dc86}.swal2-icon.swal2-success [class^=swal2-success-circular-line]{position:absolute;width:3.75em;height:7.5em;transform:rotate(45deg);border-radius:50%}.swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=left]{top:-.4375em;left:-2.0635em;transform:rotate(-45deg);transform-origin:3.75em 3.75em;border-radius:7.5em 0 0 7.5em}.swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=right]{top:-.6875em;left:1.875em;transform:rotate(-45deg);transform-origin:0 3.75em;border-radius:0 7.5em 7.5em 0}.swal2-icon.swal2-success .swal2-success-ring{position:absolute;z-index:2;top:-.25em;left:-.25em;box-sizing:content-box;width:100%;height:100%;border:.25em solid hsla(98,55%,69%,.3);border-radius:50%}.swal2-icon.swal2-success .swal2-success-fix{position:absolute;z-index:1;top:.5em;left:1.625em;width:.4375em;height:5.625em;transform:rotate(-45deg)}.swal2-icon.swal2-success [class^=swal2-success-line]{display:block;position:absolute;z-index:2;height:.3125em;border-radius:.125em;background-color:#a5dc86}.swal2-icon.swal2-success [class^=swal2-success-line][class$=tip]{top:2.875em;left:.8125em;width:1.5625em;transform:rotate(45deg)}.swal2-icon.swal2-success [class^=swal2-success-line][class$=long]{top:2.375em;right:.5em;width:2.9375em;transform:rotate(-45deg)}.swal2-icon.swal2-success.swal2-icon-show .swal2-success-line-tip{animation:g .75s}.swal2-icon.swal2-success.swal2-icon-show .swal2-success-line-long{animation:h .75s}.swal2-icon.swal2-success.swal2-icon-show .swal2-success-circular-line-right{animation:i 4.25s ease-in}.swal2-progress-steps{align-items:center;margin:0 0 1.25em;padding:0;background:inherit;font-weight:600}.swal2-progress-steps li{display:inline-block;position:relative}.swal2-progress-steps .swal2-progress-step{z-index:4;width:2em;height:2em;border-radius:2em;background:#3085d6;color:#fff;line-height:2em;text-align:center}.swal2-progress-steps .swal2-progress-step.swal2-active-progress-step{background:#3085d6}.swal2-progress-steps .swal2-progress-step.swal2-active-progress-step~.swal2-progress-step{background:#add8e6;color:#fff}.swal2-progress-steps .swal2-progress-step.swal2-active-progress-step~.swal2-progress-step-line{background:#add8e6}.swal2-progress-steps .swal2-progress-step-line{z-index:3;width:2.5em;height:.4em;margin:0 -1px;background:#3085d6}[class^=swal2]{-webkit-tap-highlight-color:transparent}.swal2-show{animation:e .3s}.swal2-hide{animation:f .15s forwards}.swal2-noanimation{transition:none}.swal2-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}.swal2-rtl .swal2-close{right:auto;left:0}.swal2-rtl .swal2-timer-progress-bar{right:0;left:auto}@supports (-ms-accelerator:true){.swal2-range input{width:100%!important}.swal2-range output{display:none}}@media (-ms-high-contrast:active),(-ms-high-contrast:none){.swal2-range input{width:100%!important}.swal2-range output{display:none}}@-moz-document url-prefix(){.swal2-close:focus{outline:2px solid rgba(50,100,150,.4)}}@keyframes a{0%{transform:translateY(-.625em) rotate(2deg)}33%{transform:translateY(0) rotate(-2deg)}66%{transform:translateY(.3125em) rotate(2deg)}to{transform:translateY(0) rotate(0)}}@keyframes b{to{transform:rotate(1deg);opacity:0}}@keyframes c{0%{top:.5625em;left:.0625em;width:0}54%{top:.125em;left:.125em;width:0}70%{top:.625em;left:-.25em;width:1.625em}84%{top:1.0625em;left:.75em;width:.5em}to{top:1.125em;left:.1875em;width:.75em}}@keyframes d{0%{top:1.625em;right:1.375em;width:0}65%{top:1.25em;right:.9375em;width:0}84%{top:.9375em;right:0;width:1.125em}to{top:.9375em;right:.1875em;width:1.375em}}@keyframes e{0%{transform:scale(.7)}45%{transform:scale(1.05)}80%{transform:scale(.95)}to{transform:scale(1)}}@keyframes f{0%{transform:scale(1);opacity:1}to{transform:scale(.5);opacity:0}}@keyframes g{0%{top:1.1875em;left:.0625em;width:0}54%{top:1.0625em;left:.125em;width:0}70%{top:2.1875em;left:-.375em;width:3.125em}84%{top:3em;left:1.3125em;width:1.0625em}to{top:2.8125em;left:.8125em;width:1.5625em}}@keyframes h{0%{top:3.375em;right:2.875em;width:0}65%{top:3.375em;right:2.875em;width:0}84%{top:2.1875em;right:0;width:3.4375em}to{top:2.375em;right:.5em;width:2.9375em}}@keyframes i{0%{transform:rotate(-45deg)}5%{transform:rotate(-45deg)}12%{transform:rotate(-405deg)}to{transform:rotate(-405deg)}}@keyframes j{0%{margin-top:1.625em;transform:scale(.4);opacity:0}50%{margin-top:1.625em;transform:scale(.4);opacity:0}80%{margin-top:-.375em;transform:scale(1.15)}to{margin-top:0;transform:scale(1);opacity:1}}@keyframes k{0%{transform:rotateX(100deg);opacity:0}to{transform:rotateX(0);opacity:1}}@keyframes l{0%{transform:rotate(0)}to{transform:rotate(1turn)}}body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown){overflow:hidden}body.swal2-height-auto{height:auto!important}body.swal2-no-backdrop .swal2-container{top:auto;right:auto;bottom:auto;left:auto;max-width:calc(100% - .625em * 2);background-color:transparent!important}body.swal2-no-backdrop .swal2-container>.swal2-modal{box-shadow:0 0 10px rgba(0,0,0,.4)}body.swal2-no-backdrop .swal2-container.swal2-top{top:0;left:50%;transform:translateX(-50%)}body.swal2-no-backdrop .swal2-container.swal2-top-left,body.swal2-no-backdrop .swal2-container.swal2-top-start{top:0;left:0}body.swal2-no-backdrop .swal2-container.swal2-top-end,body.swal2-no-backdrop .swal2-container.swal2-top-right{top:0;right:0}body.swal2-no-backdrop .swal2-container.swal2-center{top:50%;left:50%;transform:translate(-50%,-50%)}body.swal2-no-backdrop .swal2-container.swal2-center-left,body.swal2-no-backdrop .swal2-container.swal2-center-start{top:50%;left:0;transform:translateY(-50%)}body.swal2-no-backdrop .swal2-container.swal2-center-end,body.swal2-no-backdrop .swal2-container.swal2-center-right{top:50%;right:0;transform:translateY(-50%)}body.swal2-no-backdrop .swal2-container.swal2-bottom{bottom:0;left:50%;transform:translateX(-50%)}body.swal2-no-backdrop .swal2-container.swal2-bottom-left,body.swal2-no-backdrop .swal2-container.swal2-bottom-start{bottom:0;left:0}body.swal2-no-backdrop .swal2-container.swal2-bottom-end,body.swal2-no-backdrop .swal2-container.swal2-bottom-right{right:0;bottom:0}@media print{body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown){overflow-y:scroll!important}body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown)>[aria-hidden=true]{display:none}body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) .swal2-container{position:static!important}}body.swal2-toast-shown .swal2-container{background-color:transparent}body.swal2-toast-shown .swal2-container.swal2-top{top:0;right:auto;bottom:auto;left:50%;transform:translateX(-50%)}body.swal2-toast-shown .swal2-container.swal2-top-end,body.swal2-toast-shown .swal2-container.swal2-top-right{top:0;right:0;bottom:auto;left:auto}body.swal2-toast-shown .swal2-container.swal2-top-left,body.swal2-toast-shown .swal2-container.swal2-top-start{top:0;right:auto;bottom:auto;left:0}body.swal2-toast-shown .swal2-container.swal2-center-left,body.swal2-toast-shown .swal2-container.swal2-center-start{top:50%;right:auto;bottom:auto;left:0;transform:translateY(-50%)}body.swal2-toast-shown .swal2-container.swal2-center{top:50%;right:auto;bottom:auto;left:50%;transform:translate(-50%,-50%)}body.swal2-toast-shown .swal2-container.swal2-center-end,body.swal2-toast-shown .swal2-container.swal2-center-right{top:50%;right:0;bottom:auto;left:auto;transform:translateY(-50%)}body.swal2-toast-shown .swal2-container.swal2-bottom-left,body.swal2-toast-shown .swal2-container.swal2-bottom-start{top:auto;right:auto;bottom:0;left:0}body.swal2-toast-shown .swal2-container.swal2-bottom{top:auto;right:auto;bottom:0;left:50%;transform:translateX(-50%)}body.swal2-toast-shown .swal2-container.swal2-bottom-end,body.swal2-toast-shown .swal2-container.swal2-bottom-right{top:auto;right:0;bottom:0;left:auto}body.swal2-toast-column .swal2-toast{flex-direction:column;align-items:stretch}body.swal2-toast-column .swal2-toast .swal2-actions{flex:1;align-self:stretch;height:2.2em;margin-top:.3125em}body.swal2-toast-column .swal2-toast .swal2-loading{justify-content:center}body.swal2-toast-column .swal2-toast .swal2-input{height:2em;margin:.3125em auto;font-size:1em}body.swal2-toast-column .swal2-toast .swal2-validation-message{font-size:1em}
+/*# sourceMappingURL=sweetalert2.min.css.map */
diff --git a/dasena-web/public/assets/admin/vendors/css/sweetalert2.min.css.map b/dasena-web/public/assets/admin/vendors/css/sweetalert2.min.css.map
new file mode 100644
index 0000000..cbce873
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/css/sweetalert2.min.css.map
@@ -0,0 +1 @@
+{"version":3,"sources":["sweetalert2.min.css"],"names":[],"mappings":"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","file":"sweetalert2.min.css","sourcesContent":[]}
\ No newline at end of file
diff --git a/dasena-web/public/assets/admin/vendors/css/tagify-data.min.css b/dasena-web/public/assets/admin/vendors/css/tagify-data.min.css
new file mode 100644
index 0000000..a8ff760
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/css/tagify-data.min.css
@@ -0,0 +1,2 @@
+.tagify{width:100%;max-width:100%;background:rgba(255,255,255,.8)}.tagify__dropdown.users-list .tagify__dropdown__item{padding:12px 25px;border-bottom:1px solid #e5e7eb;display:grid;grid-template-columns:auto 1fr;gap:0 1em;grid-template-areas:"avatar name" "avatar email"}.tagify__dropdown.users-list .tagify__dropdown__item:last-child{border-bottom:none}.tagify__dropdown.users-list .tagify__dropdown__item:hover .tagify__dropdown__item__avatar-wrap{transform:scale(1.2)}.tagify__dropdown.users-list .tagify__dropdown__item__avatar-wrap{grid-area:avatar;width:36px;height:36px;border-radius:50%;overflow:hidden;background:#eee;transition:.1s ease-out}.tagify__dropdown.users-list img{width:100%;vertical-align:top}.tagify__dropdown.users-list strong{grid-area:name;width:100%;align-self:center;font-weight:600;color:#283c50}.tagify__dropdown.users-list span{grid-area:email;width:100%;font-size:12px;color:#7587a7}.tagify__dropdown.users-list .tagify__dropdown__item__addAll{border-bottom:1px solid #e5e7eb;gap:0}.tagify__tag{white-space:nowrap}.tagify__tag:hover .tagify__tag__avatar-wrap{transform:scale(1.2) translateX(-2%)}.tagify__tag .tagify__tag__avatar-wrap{width:16px;height:16px;white-space:normal;background:silver;border-radius:50%;margin-right:10px;transition:.12s ease-out}.tagify__tag img{width:100%;vertical-align:top}.tagify__dropdown{transform:translateY(2px)}.tagify__dropdown[placement=top]{transform:translateY(-101%)}.tagify__dropdown__wrapper{border-color:#e5e7eb}.tagify__dropdown__item--active{color:#3454d1;background:#eeeef5}
+/*# sourceMappingURL=tagify-data.min.css.map */
diff --git a/dasena-web/public/assets/admin/vendors/css/tagify-data.min.css.map b/dasena-web/public/assets/admin/vendors/css/tagify-data.min.css.map
new file mode 100644
index 0000000..ec6256d
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/css/tagify-data.min.css.map
@@ -0,0 +1 @@
+{"version":3,"sources":["tagify-data.min.css"],"names":[],"mappings":"AAAA,QACC,MAAO,KACP,UAAW,KACX,WAAY,qBAGb,qDACC,QAAS,KAAK,KACd,cAAe,IAAI,MAAM,QACzB,QAAS,KACT,sBAAuB,KAAK,IAC5B,IAAK,EAAE,IACP,oBAAqB,cAAc,eAEpC,gEACC,cAAe,KAEhB,gGACC,UAAW,WAEZ,kEACC,UAAW,OACX,MAAO,KACP,OAAQ,KACR,cAAe,IACf,SAAU,OACV,WAAY,KACZ,WAAY,IAAK,SAElB,iCACC,MAAO,KACP,eAAgB,IAEjB,oCACC,UAAW,KACX,MAAO,KACP,WAAY,OACZ,YAAa,IACb,MAAO,QAER,kCACC,UAAW,MACX,MAAO,KACP,UAAW,KAEX,MAAO,QAER,6DACC,cAAe,IAAI,MAAM,QACzB,IAAK,EAIN,aACC,YAAa,OAEd,6CACC,UAAW,WAAW,gBAEvB,uCACC,MAAO,KACP,OAAQ,KACR,YAAa,OACb,WAAY,OACZ,cAAe,IACf,aAAc,KACd,WAAY,KAAM,SAEnB,iBACC,MAAO,KACP,eAAgB,IAEjB,kBACC,UAAW,gBAEZ,iCACC,UAAW,kBAEZ,2BACC,aAAc,QAEf,gCACC,MAAO,QACP,WAAY","file":"tagify-data.min.css","sourcesContent":[]}
\ No newline at end of file
diff --git a/dasena-web/public/assets/admin/vendors/css/tagify.min.css b/dasena-web/public/assets/admin/vendors/css/tagify.min.css
new file mode 100644
index 0000000..1daf6d9
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/css/tagify.min.css
@@ -0,0 +1,2 @@
+@charset "UTF-8";:root{--tagify-dd-color-primary:rgb(53, 149, 246);--tagify-dd-bg-color:white}.tagify{--tags-disabled-bg:#f1f1f1;--tags-border-color:#ddd;--tags-hover-border-color:#ccc;--tags-focus-border-color:#3595f6;--tag-bg:#eeeef5;--tag-hover:#d3e2e2;--tag-text-color:black;--tag-text-color--edit:black;--tag-pad:0.3em 0.5em;--tag-inset-shadow-size:1.1em;--tag-invalid-color:#d39494;--tag-invalid-bg:rgba(211, 148, 148, 0.5);--tag-remove-bg:rgba(211, 148, 148, 0.3);--tag-remove-btn-color:black;--tag-remove-btn-bg:none;--tag-remove-btn-bg--hover:#c77777;--input-color:inherit;--tag--min-width:1ch;--tag--max-width:auto;--tag-hide-transition:0.3s;--placeholder-color:rgba(0, 0, 0, 0.4);--placeholder-color-focus:rgba(0, 0, 0, 0.25);--loader-size:0.8em;--readonly-striped:1;display:flex;align-items:flex-start;flex-wrap:wrap;border:1px solid #ddd;border:1px solid var(--tags-border-color);padding:0;line-height:0;cursor:text;outline:0;position:relative;box-sizing:border-box;transition:.1s}@keyframes tags--bump{30%{transform:scale(1.2)}}@keyframes rotateLoader{to{transform:rotate(1turn)}}.tagify[disabled]{background:var(--tags-disabled-bg);filter:saturate(0);opacity:.5;pointer-events:none}.tagify[disabled].tagify--select,.tagify[readonly].tagify--select{pointer-events:none}.tagify[disabled]:not(.tagify--mix):not(.tagify--select),.tagify[readonly]:not(.tagify--mix):not(.tagify--select){cursor:default}.tagify[disabled]:not(.tagify--mix):not(.tagify--select)>.tagify__input,.tagify[readonly]:not(.tagify--mix):not(.tagify--select)>.tagify__input{visibility:hidden;width:0;margin:5px 0}.tagify[disabled]:not(.tagify--mix):not(.tagify--select) .tagify__tag>div,.tagify[readonly]:not(.tagify--mix):not(.tagify--select) .tagify__tag>div{padding:.3em .5em;padding:var(--tag-pad)}.tagify[disabled]:not(.tagify--mix):not(.tagify--select) .tagify__tag>div::before,.tagify[readonly]:not(.tagify--mix):not(.tagify--select) .tagify__tag>div::before{animation:readonlyStyles 1s calc(-1s * (var(--readonly-striped) - 1)) paused}@keyframes readonlyStyles{0%{background:linear-gradient(45deg,var(--tag-bg) 25%,transparent 25%,transparent 50%,var(--tag-bg) 50%,var(--tag-bg) 75%,transparent 75%,transparent) 0/5px 5px;box-shadow:none;filter:brightness(.95)}}.tagify[disabled] .tagify__tag__removeBtn,.tagify[readonly] .tagify__tag__removeBtn{display:none}.tagify--loading .tagify__input>br:last-child{display:none}.tagify--loading .tagify__input::before{content:none}.tagify--loading .tagify__input::after{content:"";vertical-align:middle;opacity:1;width:.7em;height:.7em;width:var(--loader-size);height:var(--loader-size);border:3px solid;border-color:#eee #bbb #888 transparent;border-radius:50%;animation:rotateLoader .4s infinite linear;content:""!important;margin:-2px 0 -2px .5em}.tagify--loading .tagify__input:empty::after{margin-left:0}.tagify+input,.tagify+textarea{position:absolute!important;left:-9999em!important;transform:scale(0)!important}.tagify__tag{display:inline-flex;align-items:center;margin:5px 0 5px 5px;position:relative;z-index:0;outline:0;line-height:normal;cursor:default;transition:.13s ease-out}.tagify__tag>div{vertical-align:top;box-sizing:border-box;max-width:100%;padding:.3em .5em;padding:var(--tag-pad,.3em .5em);color:#000;color:var(--tag-text-color,#000);line-height:inherit;border-radius:3px;white-space:nowrap;transition:.13s ease-out}.tagify__tag>div>*{white-space:pre-wrap;overflow:hidden;text-overflow:ellipsis;display:inline-block;vertical-align:top;min-width:1ch;max-width:auto;min-width:var(--tag--min-width,1ch);max-width:var(--tag--max-width,auto);transition:.8s ease,.1s color}.tagify__tag>div>[contenteditable]{outline:0;-webkit-user-select:text;user-select:text;cursor:text;margin:-2px;padding:2px;max-width:350px}.tagify__tag>div::before{content:"";position:absolute;border-radius:inherit;left:0;top:0;right:0;bottom:0;z-index:-1;pointer-events:none;transition:120ms ease;background-color:#eeeef5;animation:tags--bump .3s ease-out 1;box-shadow:0 0 0 1.1em #e5e5e5 inset;box-shadow:0 0 0 var(--tag-inset-shadow-size,1.1em) var(--tag-bg,#e5e5e5) inset}.tagify__tag:focus div::before,.tagify__tag:hover:not([readonly]) div::before{top:0;right:0;bottom:0;left:0;background-color:#eeeef5;box-shadow:0 0 0 1.1em #d3e2e2 inset;box-shadow:0 0 0 var(--tag-inset-shadow-size,1.1em) var(--tag-hover,#d3e2e2) inset}.tagify__tag--loading{pointer-events:none}.tagify__tag--loading .tagify__tag__removeBtn{display:none}.tagify__tag--loading::after{--loader-size:0.4em;content:"";vertical-align:middle;opacity:1;width:.7em;height:.7em;width:var(--loader-size);height:var(--loader-size);border:3px solid;border-color:#eee #bbb #888 transparent;border-radius:50%;animation:rotateLoader .4s infinite linear;margin:0 .5em 0 -.1em}.tagify__tag--flash div::before{animation:none}.tagify__tag--hide{width:0!important;padding-left:0;padding-right:0;margin-left:0;margin-right:0;opacity:0;transform:scale(0);transition:.3s;transition:var(--tag-hide-transition,.3s);pointer-events:none}.tagify__tag--hide>div>*{white-space:nowrap}.tagify__tag.tagify--noAnim>div::before{animation:none}.tagify__tag.tagify--notAllowed:not(.tagify__tag--editable) div>span{color:#8e99a7}.tagify__tag.tagify--notAllowed:not(.tagify__tag--editable) div::before{box-shadow:0 0 0 1.1em rgba(211,148,148,.5) inset!important;box-shadow:0 0 0 var(--tag-inset-shadow-size,1.1em) var(--tag-invalid-bg,rgba(211,148,148,.5)) inset!important;transition:.2s}.tagify__tag[readonly] .tagify__tag__removeBtn{display:none}.tagify__tag[readonly]>div::before{animation:readonlyStyles 1s calc(-1s * (var(--readonly-striped) - 1)) paused}@keyframes readonlyStyles{0%{background:linear-gradient(45deg,var(--tag-bg) 25%,transparent 25%,transparent 50%,var(--tag-bg) 50%,var(--tag-bg) 75%,transparent 75%,transparent) 0/5px 5px;box-shadow:none;filter:brightness(.95)}}.tagify__tag--editable>div{color:#000;color:var(--tag-text-color--edit,#000)}.tagify__tag--editable>div::before{box-shadow:0 0 0 2px #d3e2e2 inset!important;box-shadow:0 0 0 2px var(--tag-hover,#d3e2e2) inset!important}.tagify__tag--editable>.tagify__tag__removeBtn{pointer-events:none}.tagify__tag--editable>.tagify__tag__removeBtn::after{opacity:0;transform:translateX(100%) translateX(5px)}.tagify__tag--editable.tagify--invalid>div::before{box-shadow:0 0 0 2px #d39494 inset!important;box-shadow:0 0 0 2px var(--tag-invalid-color,#d39494) inset!important}.tagify__tag__removeBtn{order:5;display:inline-flex;align-items:center;justify-content:center;border-radius:50px;cursor:pointer;font:14px/1 Arial;background:0 0;background:var(--tag-remove-btn-bg,none);color:#000;color:var(--tag-remove-btn-color,#000);width:14px;height:14px;margin-right:4.6666666667px;margin-left:auto;overflow:hidden;transition:.2s ease-out}.tagify__tag__removeBtn::after{content:"×";transition:.3s,color 0s}.tagify__tag__removeBtn:hover{color:#fff;background:#c77777;background:var(--tag-remove-btn-bg--hover,#c77777)}.tagify__tag__removeBtn:hover+div>span{color:#8e99a7}.tagify__tag__removeBtn:hover+div::before{box-shadow:0 0 0 1.1em rgba(211,148,148,.3) inset!important;box-shadow:0 0 0 var(--tag-inset-shadow-size,1.1em) var(--tag-remove-bg,rgba(211,148,148,.3)) inset!important;transition:box-shadow .2s}.tagify:not(.tagify--mix) .tagify__input br{display:none}.tagify:not(.tagify--mix) .tagify__input *{display:inline;white-space:nowrap}.tagify__input{flex-grow:1;display:inline-block;min-width:110px;margin:5px;padding:.3em .5em;padding:var(--tag-pad,.3em .5em);line-height:normal;position:relative;white-space:pre-wrap;color:inherit;color:var(--input-color,inherit);box-sizing:inherit}.tagify__input:focus{outline:0}.tagify__input:focus::before{transition:.2s ease-out;opacity:0;transform:translatex(6px)}@supports (-ms-ime-align:auto){.tagify__input:focus::before{display:none}}.tagify__input:focus:empty::before{transition:.2s ease-out;opacity:1;transform:none;color:rgba(0,0,0,.25);color:var(--placeholder-color-focus)}@-moz-document url-prefix(){.tagify__input:focus:empty::after{display:none}}.tagify__input::before{content:attr(data-placeholder);height:1em;line-height:1em;margin:auto 0;z-index:1;color:rgba(0,0,0,.4);color:var(--placeholder-color);white-space:nowrap;pointer-events:none;opacity:0;position:absolute}.tagify__input::after{content:attr(data-suggest);display:inline-block;white-space:pre;color:#8e99a7 pointer-events: none;max-width:100px}.tagify__input .tagify__tag{margin:0 1px}.tagify--mix{display:block}.tagify--mix .tagify__input{padding:5px;margin:0;width:100%;height:100%;line-height:1.5;display:block}.tagify--mix .tagify__input::before{height:auto;display:none;line-height:inherit}.tagify--mix .tagify__input::after{content:none}.tagify--select::after{content:">";color:#8e99a7 position: absolute;top:50%;right:0;bottom:0;font:16px monospace;line-height:8px;height:8px;pointer-events:none;transform:translate(-150%,-50%) scaleX(1.2) rotate(90deg);transition:.2s ease-in-out}.tagify--select[aria-expanded=true]::after{transform:translate(-150%,-50%) rotate(270deg) scaleY(1.2)}.tagify--select .tagify__tag{position:absolute;top:0;right:1.8em;bottom:0}.tagify--select .tagify__tag div{display:none}.tagify--select .tagify__input{width:100%}.tagify--empty .tagify__input::before{transition:.2s ease-out;opacity:1;transform:none;display:inline-block;width:auto}.tagify--mix .tagify--empty .tagify__input::before{display:inline-block}.tagify--invalid{--tags-border-color:#d39494}.tagify__dropdown{position:absolute;z-index:999999;transform:translateY(1px);overflow:hidden}.tagify__dropdown[placement=top]{margin-top:0;transform:translateY(-100%)}.tagify__dropdown[placement=top] .tagify__dropdown__wrapper{border-top-width:1.1px;border-bottom-width:0}.tagify__dropdown[position=text]{box-shadow:0 0 0 3px rgba(var(--tagify-dd-color-primary),.1);font-size:.9em}.tagify__dropdown[position=text] .tagify__dropdown__wrapper{border-width:1px}.tagify__dropdown__wrapper{max-height:300px;overflow:auto;background:#fff;background:var(--tagify-dd-bg-color);border:1px solid #3595f6;border-color:var(--tagify-dd-color-primary);border-bottom-width:1.33px;border-top-width:0;box-shadow:0 2px 4px -2px rgba(0,0,0,.2);transition:.25s cubic-bezier(0,1,.5,1)}.tagify__dropdown__header:empty{display:none}.tagify__dropdown__footer{display:inline-block;margin-top:.5em;padding:.3em .5em;font-size:.7em;font-style:italic;color:#8e99a7}.tagify__dropdown__footer:empty{display:none}.tagify__dropdown--initial .tagify__dropdown__wrapper{max-height:20px;transform:translateY(-1em)}.tagify__dropdown--initial[placement=top] .tagify__dropdown__wrapper{transform:translateY(2em)}.tagify__dropdown__item{box-sizing:inherit;padding:.3em .5em;margin:1px;cursor:pointer;border-radius:2px;position:relative;outline:0}.tagify__dropdown__item--active{background:#3595f6;background:var(--tagify-dd-color-primary);color:#fff}.tagify__dropdown__item:active{filter:brightness(105%)}
+/*# sourceMappingURL=tagify.min.css.map */
diff --git a/dasena-web/public/assets/admin/vendors/css/tagify.min.css.map b/dasena-web/public/assets/admin/vendors/css/tagify.min.css.map
new file mode 100644
index 0000000..b2ed0d4
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/css/tagify.min.css.map
@@ -0,0 +1 @@
+{"version":3,"sources":["tagify.min.css"],"names":[],"mappings":"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","file":"tagify.min.css","sourcesContent":[]}
\ No newline at end of file
diff --git a/dasena-web/public/assets/admin/vendors/css/tui-calendar.min.css b/dasena-web/public/assets/admin/vendors/css/tui-calendar.min.css
new file mode 100644
index 0000000..4f9efd9
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/css/tui-calendar.min.css
@@ -0,0 +1,7 @@
+/*!
+ * TOAST UI Calendar
+ * @version 1.15.3 | Thu Feb 17 2022
+ * @author NHN FE Development Lab
+ * @license MIT
+ */.tui-full-calendar-layout{height:100%;position:relative;box-sizing:border-box}.tui-full-calendar-layout *{box-sizing:border-box}.tui-full-calendar-dragging{cursor:move}.tui-full-calendar-resizing{cursor:row-resize}.tui-full-calendar-resizing-x{cursor:col-resize}.tui-full-calendar-hidden{display:none!important}.tui-full-calendar-invisible span{visibility:hidden}.tui-full-calendar-clear:after{content:"";display:block;clear:both}.tui-full-calendar-scroll-y{overflow-y:scroll}.tui-full-calendar-dot{display:inline-block;position:relative;top:-1px;content:"";width:7px;height:7px;border-radius:50%}.tui-full-calendar-holiday{color:red}.tui-full-calendar-today{background:rgba(218,229,249,.3)}.handle-x{background-position:center center;background-repeat:no-repeat;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAECAMAAACEE47CAAAACVBMVEX///////////+OSuX+AAAAA3RSTlMrQJG5H4EIAAAAEUlEQVR4AWNgYoRABhjEFAEAArQAIcHQcPsAAAAASUVORK5CYII=)}.handle-y{background-position:center center;background-repeat:no-repeat;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAICAMAAADp7a43AAAACVBMVEX///////////+OSuX+AAAAA3RSTlMrQJG5H4EIAAAAEUlEQVR4AWNgYmRiZABB/CwAAtgAIUTUNkMAAAAASUVORK5CYII=)}@media only screen and (-moz-min-device-pixel-ratio:1.5),only screen and (-o-min-device-pixel-ratio:3/2),only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (min-devicepixel-ratio:1.5),only screen and (min-resolution:1.5dppx){.handle-x{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAICAMAAADHqI+lAAAACVBMVEX///////////+OSuX+AAAAA3RSTlMZK5EY+QKaAAAAGUlEQVR4AWNgYmJAwegCIMDIiIwxBKhhBgAcSABh8gN42gAAAABJRU5ErkJggg==);background-size:8px 4px}.handle-y{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAQCAMAAAAcVM5PAAAACVBMVEX///////////+OSuX+AAAAA3RSTlMEK5EMBzK5AAAAGElEQVR4AWNgYmIAYxgDBBgZQRjOoKcaABzQAGGjsIM/AAAAAElFTkSuQmCC);background-size:4px 8px}}.tui-full-calendar-month-week-item .tui-full-calendar-weekday-grid{overflow-y:hidden}.tui-full-calendar-month-week-item .tui-full-calendar-weekday-schedules{overflow-y:visible;height:0}.tui-full-calendar-month-week-item .tui-full-calendar-weekday-schedule{margin:0 10px;padding:0 5px}.tui-full-calendar-month-week-item .tui-full-calendar-today{background:0 0}.tui-full-calendar-month-week-item .tui-full-calendar-today .tui-full-calendar-weekday-grid-date-decorator{display:inline-block;width:27px;height:27px;line-height:27px;text-align:center;background:#3454d1;border-radius:50%;color:#fff;font-weight:700;margin-left:2px}.tui-full-calendar-weekday-grid,.tui-full-calendar-weekday-grid-line{height:100%;min-height:inherit}.tui-full-calendar-weekday-grid{position:absolute;width:100%;overflow-y:scroll}.tui-full-calendar-weekday-border{border-top:1px solid #e5e7eb}.tui-full-calendar-weekday-grid-line{position:absolute;padding:3px}.tui-full-calendar-weekday-grid-line .tui-full-calendar-weekday-grid-footer{position:absolute;bottom:4px}.tui-full-calendar-weekday-grid-line .tui-full-calendar-weekday-grid-date{display:inline-block;width:27px;height:27px;line-height:27px;text-align:center}.tui-full-calendar-weekday-grid-line .tui-full-calendar-weekday-grid-more-schedules{display:inline-block;height:27px;line-height:27px;padding:0 5px;text-align:center;font-size:11px;font-weight:700;color:#283c50}.tui-full-calendar-weekday-creation{top:0;left:0;width:100%;height:100%;position:absolute;overflow-y:scroll}.tui-full-calendar-weekday-schedules{top:0;left:0;width:100%;height:100%;position:absolute;font-size:12px;overflow-y:scroll}.tui-full-calendar-weekday-schedule-block{position:absolute}.tui-full-calendar-weekday-schedule-block-dragging-dim{opacity:.3}.tui-full-calendar-weekday-schedule{position:relative;margin:0 10px 0 1px;cursor:pointer;border-left-style:solid;border-left-width:3px}.tui-full-calendar-weekday-schedule.tui-full-calendar-weekday-schedule-time{border-left-width:0}.tui-full-calendar-weekday-schedule.tui-full-calendar-weekday-schedule-time .tui-full-calendar-weekday-schedule-title{padding-left:9px}.tui-full-calendar-weekday-schedule-bullet{position:absolute;padding:0;width:5px;height:5px;left:5px;top:10px!important;border-radius:50%}.tui-full-calendar-weekday-schedule-bullet-focused{left:10px;background:#fff}.tui-full-calendar-weekday-schedule-title{display:block;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;padding-left:3px;font-weight:500}.tui-full-calendar-weekday-schedule-title-focused{padding-left:16px}.tui-full-calendar-weekday-schedule-cover{position:absolute;top:0;width:100%;height:100%;background-color:rgba(0,0,0,.2);box-shadow:0 2px 6px 0 rgba(0,0,0,.1)}.tui-full-calendar-weekday-exceed-left .tui-full-calendar-weekday-schedule{margin-left:0;border-left-width:0}.tui-full-calendar-weekday-exceed-right .tui-full-calendar-weekday-schedule{margin-right:0}.tui-full-calendar-weekday-exceed-right .tui-full-calendar-weekday-resize-handle{display:none}.tui-full-calendar-weekday-exceed-in-month{cursor:pointer}.tui-full-calendar-weekday-exceed-in-month:hover{background-color:#f0f1f5}.tui-full-calendar-weekday-collapse-btn,.tui-full-calendar-weekday-exceed-in-week{position:absolute;bottom:5px;margin-right:5px;font-size:12px;line-height:14px;cursor:pointer;padding:1px 5px;background-color:#fff;border:1px solid #e5e7eb;color:#000}.tui-full-calendar-weekday-resize-handle{position:absolute;top:0;right:0;width:6px;background-position:3px center;cursor:col-resize;line-height:18px}.tui-full-calendar-weekday-filled{background-color:#e8e8e8!important}.tui-full-calendar-left{height:100%;float:left;box-sizing:border-box;display:table}.tui-full-calendar-left-content{display:table-cell;vertical-align:middle;text-align:right;font-size:11px}.tui-full-calendar-right{height:100%;overflow-y:scroll;position:relative}.tui-full-calendar-week-container{width:100%;height:inherit;display:inline-block;font-size:10px;min-height:600px}.tui-full-calendar-week-container .tui-full-calendar-today{background:0 0}.tui-full-calendar-dayname{position:absolute;margin-left:-1px;height:100%;overflow:hidden}.tui-full-calendar-dayname.tui-full-calendar-today{font-weight:700}.tui-full-calendar-dayname-container{overflow-y:scroll}.tui-full-calendar-dayname-leftmargin{position:relative;height:100%}.tui-full-calendar-dayname-date{font-size:26px}.tui-full-calendar-dayname-name{font-weight:700;font-size:12px}.tui-full-calendar-daygrid-layout{height:100%}.tui-full-calendar-daygrid-layout .tui-full-calendar-right{overflow-y:hidden}.tui-full-calendar-daygrid-guide-creation-block{position:absolute;top:0;bottom:0;z-index:1}.tui-full-calendar-timegrid-container{height:100%;position:relative;overflow:hidden;overflow-y:scroll}.tui-full-calendar-timegrid-container-split{height:100%;position:relative;overflow:hidden}.tui-full-calendar-timegrid-left{position:absolute}.tui-full-calendar-timegrid-hour{position:relative;color:#283c50;box-sizing:border-box}.tui-full-calendar-timegrid-hour:first-child span{display:none}.tui-full-calendar-timegrid-hour:last-child{border-bottom:none}.tui-full-calendar-timegrid-hour span{position:absolute;top:-11px;left:0;right:5px;text-align:right;line-height:25px}.tui-full-calendar-timegrid-right{position:relative}.tui-full-calendar-timegrid-gridline{border-bottom:1px solid #e5e7eb;box-sizing:border-box}.tui-full-calendar-timegrid-gridline:last-child{border-bottom:none}.tui-full-calendar-timegrid-schedules{position:absolute;width:100%;height:100%;top:0;left:0;cursor:pointer}.tui-full-calendar-timegrid-hourmarker{position:absolute;width:100%;display:table}.tui-full-calendar-timegrid-hourmarker-line-left{position:absolute;min-height:1px;left:0}.tui-full-calendar-timegrid-hourmarker-line-today{position:absolute;min-height:1px}.tui-full-calendar-timegrid-hourmarker-line-right{position:absolute;min-height:1px;right:0}.tui-full-calendar-timegrid-hourmarker-time{padding-right:5px;line-height:12px;text-align:right;display:table-cell;vertical-align:bottom}.tui-full-calendar-timegrid-todaymarker{position:absolute;text-indent:-9999px;width:9px;height:9px;background-color:#3454d1;margin:-4px 0 0 -5px;border-radius:50%}.tui-full-calendar-timegrid-sticky-container{position:absolute;top:0}.tui-full-calendar-timegrid-timezone-label-container{position:absolute}.tui-full-calendar-timegrid-timezone-label-cell{display:table}.tui-full-calendar-timegrid-timezone-label{display:table-cell;vertical-align:middle;padding-right:5px;text-align:right}.tui-full-calendar-timegrid-timezone-close-btn{cursor:pointer;position:absolute;text-align:center;background-color:#fff}.tui-full-calendar-timegrid-timezone-close-btn .tui-full-calendar-icon{width:5px;height:10px}.tui-full-calendar-time-date{position:absolute;height:100%;margin-left:-1px;box-sizing:content-box}.tui-full-calendar-time-date:last-child{border-right:none;margin:0}.tui-full-calendar-time-date:last-child .tui-full-calendar-time-guide-creation,.tui-full-calendar-time-date:last-child .tui-full-calendar-time-schedule{left:0}.tui-full-calendar-time-date-schedule-block-wrap{position:relative;height:100%}.tui-full-calendar-time-date-schedule-block{position:absolute;right:0}.tui-full-calendar-time-date-schedule-block-pending{opacity:.7}.tui-full-calendar-time-date-schedule-block-dragging-dim{opacity:.3}.tui-full-calendar-time-date-schedule-block-focused{box-shadow:0 0 8px 0 rgba(0,0,0,.2)}.tui-full-calendar-time-date-schedule-block-cover{position:absolute;top:0;width:100%;height:100%;background-color:rgba(0,0,0,.2);box-shadow:0 2px 6px 0 rgba(0,0,0,.1)}.tui-full-calendar-time-schedule{position:relative;left:1px;height:100%;overflow:hidden;font-size:12px;font-weight:700}.tui-full-calendar-time-schedule-content{overflow:hidden;border-left-width:3px;border-left-style:solid;padding:1px 0 0 3px}.tui-full-calendar-time-schedule-content-travel-time{font-weight:400;font-size:11px}.tui-full-calendar-time-resize-handle{position:absolute;right:0;bottom:0;left:0;height:5px;text-align:center;color:#fff;cursor:row-resize;background-position:center top}.tui-full-calendar-time-guide-creation{position:absolute;right:10px;left:1px;padding:3px}.tui-full-calendar-time-guide-move .tui-full-calendar-time-resize-handle,.tui-full-calendar-time-guide-move .tui-full-calendar-time-schedule,.tui-full-calendar-time-guide-resize .tui-full-calendar-time-resize-handle,.tui-full-calendar-time-guide-resize .tui-full-calendar-time-schedule{opacity:.8;z-index:97}.tui-full-calendar-time-guide-creation-label{cursor:default}.tui-full-calendar-time-guide-bottom{position:absolute;bottom:3px}.tui-full-calendar-month{height:100%;min-height:600px}.tui-full-calendar-month-dayname{width:100%;position:absolute;font-size:13px}.tui-full-calendar-month-dayname-item{height:100%;font-weight:700}.tui-full-calendar-month-week-item{position:relative}.tui-full-calendar-month-week-item>div{height:100%}.tui-full-calendar-month-more{height:inherit;min-width:280px;min-height:150px}.tui-full-calendar-month-more-title{position:relative}.tui-full-calendar-month-more-title-day{font-size:23px;color:#283c50}.tui-full-calendar-month-more-title-day-label{font-size:12px;color:#283c50}.tui-full-calendar-month-more-close{position:absolute;right:0;outline:0;background:0 0;border:0;font-size:14px;line-height:28px;padding:0 7px;cursor:pointer}.tui-full-calendar-month-more-list{overflow-y:auto}.tui-full-calendar-month-more-schedule{cursor:pointer;display:block;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;font-size:12px}.tui-full-calendar-month-guide-block{position:absolute}.tui-full-calendar-month-weekday-schedule{margin-top:2px}.tui-full-calendar-month-creation-guide{top:0;bottom:-1px;left:-1px;right:0;position:absolute;z-index:20}.tui-full-calendar-month-guide-focused{box-shadow:0 0 8px 0 rgba(0,0,0,.2)}.tui-full-calendar-month-guide{position:relative;padding-left:3px;line-height:18px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.tui-full-calendar-month-guide-cover{width:100%;position:absolute;top:-50%;left:-50%;background-color:rgba(0,0,0,.2);box-shadow:0 2px 6px 0 rgba(0,0,0,.1)}.tui-full-calendar-month-exceed-left .tui-full-calendar-month-guide{margin-left:0}.tui-full-calendar-month-exceed-right .tui-full-calendar-month-guide{margin-right:0}.tui-full-calendar-month-exceed-right .tui-full-calendar-month-guide-handle{display:none}.tui-full-calendar-month-guide-handle{position:absolute;top:0;right:3px;width:6px;background-position:3px center;cursor:col-resize}.tui-full-calendar-vlayout-container{position:relative}.tui-full-calendar-splitter{clear:left;cursor:row-resize}.tui-full-calendar-splitter:hover{border-color:#999}.tui-full-calendar-splitter-focused{background-color:#e5e7eb;border:none}.tui-full-calendar-splitter-guide{position:absolute;width:100%;height:3px;border:none;background-color:#e8e8e8}.tui-full-calendar-popup{position:absolute;font-weight:2.5;box-shadow:0 2px 6px 0 rgba(0,0,0,.1);clear:both}.tui-full-calendar-popup-container{min-width:474px;box-shadow:0 2px 6px 0 rgba(0,0,0,.1);background-color:#fff;border:solid 1px #d5d5d5;padding:17px;border-radius:2px}.tui-full-calendar-popup-section{font-size:0;min-height:40px}.tui-full-calendar-section-calendar{width:176px}.tui-full-calendar-section-calendar.tui-full-calendar-hide{height:21px;visibility:hidden}.tui-full-calendar-section-title{width:calc(100% - 36px);padding-right:4px}.tui-full-calendar-section-title input{width:365px}.tui-full-calendar-button.tui-full-calendar-section-private{height:32px;padding:8px;font-size:0;margin-left:4px}.tui-full-calendar-section-private.tui-full-calendar-public .tui-full-calendar-ic-private{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAYAAAAfSC3RAAAAAXNSR0IArs4c6QAAAKdJREFUKBVjYCATMKLri46Olvn9+3fX////HUByjIyMB1hZWcuWLl36BFktikaQpl+/fl0EKhBCVgRkv2NjY9NH1syErABkE1TTdqBCWRAG8reDxKBycOUoGmHOA2pIA5kOwiA2SDVMDq4TmREaGvofhJHFcLHhfgwLC9sKNNULl0KQODCgtq1atcobxIY7lZAmkGJkNXCNIAlSwIjSCApqIgJnK0wNALoOPwSpOcq0AAAAAElFTkSuQmCC) no-repeat}.tui-full-calendar-section-end-date,.tui-full-calendar-section-start-date{width:176px}.tui-full-calendar-section-end-date input,.tui-full-calendar-section-start-date input{width:139px}.tui-full-calendar-section-end-date:focus .tui-datepicker,.tui-full-calendar-section-end-date:focus .tui-full-calendar-popup-section-item,.tui-full-calendar-section-end-date:hover .tui-datepicker,.tui-full-calendar-section-end-date:hover .tui-full-calendar-popup-section-item,.tui-full-calendar-section-start-date:focus .tui-datepicker,.tui-full-calendar-section-start-date:focus .tui-full-calendar-popup-section-item,.tui-full-calendar-section-start-date:hover .tui-datepicker,.tui-full-calendar-section-start-date:hover .tui-full-calendar-popup-section-item{border-color:#e5e7eb}.tui-full-calendar-popup-section-item:focus{border-color:#e5e7eb}.tui-full-calendar-section-date-dash{font-size:12px;color:#d5d5d5;height:32px;padding:0 4px;vertical-align:middle}.tui-full-calendar-popup-section-item.tui-full-calendar-section-allday{border:none;padding:0 0 0 8px;cursor:pointer}.tui-full-calendar-popup-section-item.tui-full-calendar-section-location{display:block}.tui-full-calendar-popup-section-item.tui-full-calendar-section-location input{width:400px}.tui-full-calendar-section-allday .tui-full-calendar-icon.tui-full-calendar-ic-checkbox{margin:0}.tui-full-calendar-popup-section-item.tui-full-calendar-section-allday .tui-full-calendar-content{padding-left:4px}.tui-full-calendar-section-state{width:109px}.tui-full-calendar-section-state .tui-full-calendar-content{width:58px;text-overflow:ellipsis;overflow:hidden}.tui-full-calendar-popup-section-item{height:32px;padding:0 9px 0 12px;border:1px solid #d5d5d5;display:inline-block;font-size:0;border-radius:2px}.tui-full-calendar-popup-section-item:hover{border-color:#e5e7eb}.tui-full-calendar-popup-section-item:focus{border-color:#e5e7eb}.tui-full-calendar-popup-section-item .tui-full-calendar-icon{position:relative}.tui-full-calendar-popup-section-item .tui-full-calendar-content{color:#283c50;text-align:left;display:inline-block;font-size:12px;vertical-align:middle;position:relative;padding-left:8px}.tui-full-calendar-section-calendar .tui-full-calendar-dropdown-button .tui-full-calendar-content{width:125px;text-overflow:ellipsis;overflow:hidden;top:1px}.tui-full-calendar-popup-section-item input{border:none;height:30px;outline:0;display:inline-block}.tui-full-calendar-popup-section-item input::placeholder{color:#e5e7eb;font-weight:300}.tui-full-calendar-dropdown{position:relative}.tui-full-calendar-dropdown:hover .tui-full-calendar-dropdown-button{border:1px solid #e5e7eb}.tui-full-calendar-dropdown-button.tui-full-calendar-popup-section-item{height:32px;font-size:0;top:-1px}.tui-full-calendar-dropdown-menu{position:absolute;top:31px;padding:4px 0;background-color:#fff;border:1px solid #d5d5d5;border-top:none;border-radius:0 0 2px 2px;width:100%;display:none}.tui-full-calendar-dropdown:hover .tui-full-calendar-dropdown-menu{border:1px solid #e5e7eb;border-top:none}.tui-full-calendar-open .tui-full-calendar-dropdown-menu{display:block}.tui-full-calendar-dropdown-menu-item{height:30px;border:none;cursor:pointer}.tui-full-calendar-dropdown-menu-item:hover{background-color:rgba(81,92,230,.05)}.tui-full-calendar-dropdown-menu-item .tui-full-calendar-content{line-height:30px}.tui-full-calendar-button.tui-full-calendar-popup-close{position:absolute;top:10px;right:10px;background-color:#fff;padding:2px;border:none}.tui-full-calendar-section-button-save{height:36px}.tui-full-calendar-popup-save{float:right}.tui-full-calendar-popup-arrow-border,.tui-full-calendar-popup-arrow-fill{position:absolute}.tui-full-calendar-arrow-top .tui-full-calendar-popup-arrow-border{border-top:none;border-right:8px solid transparent;border-bottom:8px solid #d5d5d5;border-left:8px solid transparent;left:calc(50% - 8px);top:-7px}.tui-full-calendar-arrow-right .tui-full-calendar-popup-arrow-border{border-top:8px solid transparent;border-right:none;border-bottom:8px solid transparent;border-left:8px solid #d5d5d5;top:calc(50% - 8px);right:-7px}.tui-full-calendar-arrow-bottom .tui-full-calendar-popup-arrow-border{border-top:8px solid #d5d5d5;border-right:8px solid transparent;border-bottom:none;border-left:8px solid transparent;left:calc(50% - 8px);bottom:-7px}.tui-full-calendar-arrow-left .tui-full-calendar-popup-arrow-border{border-top:8px solid transparent;border-right:8px solid #d5d5d5;border-bottom:8px solid transparent;border-left:none;top:calc(50% - 8px);left:-7px}.tui-full-calendar-arrow-top .tui-full-calendar-popup-arrow-fill{border-top:none;border-right:7px solid transparent;border-bottom:7px solid #fff;border-left:7px solid transparent;left:-7px;top:1px}.tui-full-calendar-arrow-right .tui-full-calendar-popup-arrow-fill{border-top:7px solid transparent;border-right:none;border-bottom:7px solid transparent;border-left:7px solid #fff;top:-7px;right:1px}.tui-full-calendar-arrow-bottom .tui-full-calendar-popup-arrow-fill{border-top:7px solid #fff;border-right:7px solid transparent;border-bottom:none;border-left:7px solid transparent;left:-7px;bottom:1px}.tui-full-calendar-arrow-left .tui-full-calendar-popup-arrow-fill{border-top:7px solid transparent;border-right:7px solid #fff;border-bottom:7px solid transparent;border-left:none;top:-7px;left:1px}.tui-full-calendar-button{background:#fff;border:1px solid #d5d5d5;border-radius:2px;text-align:center;outline:0;font-size:12px;cursor:pointer;color:#283c50}.tui-full-calendar-button:hover{border-color:#e5e7eb;color:#283c50}.tui-full-calendar-button:active{background:#f9f9f9;color:#283c50}.tui-full-calendar-button .round{border-radius:25px}.tui-full-calendar-confirm{width:96px;height:36px;border-radius:40px;background-color:#ff6618;font-size:12px;font-weight:700;color:#fff;border:none}.tui-full-calendar-confirm:hover{background-color:#e55b15;color:#fff}.tui-full-calendar-confirm:active{background-color:#d95614;color:#fff}.tui-full-calendar-icon.tui-full-calendar-right{float:right;top:1px}.tui-full-calendar-icon .tui-full-calendar-none{display:none}.tui-full-calendar-icon.tui-full-calendar-calendar-dot{border-radius:8px;width:10px;height:10px;margin:1px}input[type=checkbox].tui-full-calendar-checkbox-square{display:none}input[type=checkbox].tui-full-calendar-checkbox-square+span{display:inline-block;cursor:pointer;line-height:14px;margin-right:8px;width:14px;height:14px;background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAYAAAAfSC3RAAAAAXNSR0IArs4c6QAAADpJREFUKBVjPHfu3O5///65MJAAmJiY9jCcOXPmP6kApIeJBItQlI5qRAkOVM5o4KCGBwqPkcxEvhsAbzRE+Jhb9IwAAAAASUVORK5CYII=) no-repeat;vertical-align:middle}input[type=checkbox].tui-full-calendar-checkbox-square:checked+span{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAYAAAAfSC3RAAAAAXNSR0IArs4c6QAAAMBJREFUKBWVkjEOwjAMRe2WgZW7IIHEDdhghhuwcQ42rlJugAQS54Cxa5cq1QM5TUpByZfS2j9+dlJVt/tX5ZxbS4ZU9VLkQvSHKTIGRaVJYFmKrBbTCJxE2UgCdDzMZDkHrOV6b95V0US6UmgKodujEZbJg0B0ZgEModO5lrY1TMQf1TpyJGBEjD+E2NPN7ukIUDiF/BfEXgRiGEw8NgkffYGYwCi808fpn/6OvfUfsDr/Vc1IfRf8sKnFVqeiVQfDu0tf/nWH9gAAAABJRU5ErkJggg==) no-repeat}input[type=checkbox].tui-full-calendar-checkbox-round{display:none}input[type=checkbox].tui-full-calendar-checkbox-round+span{display:inline-block;cursor:pointer;width:14px;height:14px;line-height:14px;vertical-align:middle;margin-right:8px;border-radius:8px;border:solid 2px;background:0 0}.tui-full-calendar-popup-top-line{position:absolute;border-radius:2px 2px 0 0;width:100%;height:4px;border:none;top:0}.tui-full-calendar-popup-detail .tui-full-calendar-popup-container{width:301px;min-width:301px;padding-bottom:0}.tui-full-calendar-popup-detail .tui-full-calendar-icon{width:12px;height:12px;background-size:12px;position:relative;margin-right:8px}.tui-full-calendar-popup-detail .tui-full-calendar-icon.tui-full-calendar-ic-location-b{top:-2px}.tui-full-calendar-popup-detail .tui-full-calendar-icon.tui-full-calendar-ic-user-b{top:-2px}.tui-full-calendar-popup-detail .tui-full-calendar-icon.tui-full-calendar-ic-state-b{top:-1px}.tui-full-calendar-popup-detail .tui-full-calendar-icon.tui-full-calendar-calendar-dot{width:10px;height:10px;margin-right:8px;top:-1px}.tui-full-calendar-popup-detail .tui-full-calendar-content{line-height:24px;height:24px;font-size:12px;line-height:2}.tui-full-calendar-popup-detail .tui-full-calendar-section-header{margin-bottom:6px}.tui-full-calendar-popup-detail .tui-full-calendar-popup-detail-item-separate{margin-top:4px}.tui-full-calendar-popup-detail .tui-full-calendar-popup-detail-item-indent{text-indent:-20px;padding-left:20px}.tui-full-calendar-popup-detail .tui-full-calendar-schedule-title{font-size:15px;font-weight:700;line-height:1.6;word-break:break-all}.tui-full-calendar-popup-detail .tui-full-calendar-schedule-private{display:none;width:16px;height:16px;background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAYAAAAfSC3RAAAAAXNSR0IArs4c6QAAAKpJREFUKBVjYCATMKLri46Olvn9+3fX////HUByjIyMB1hZWcuWLl36BFktikaQpl+/fl0EKhBCVgRkv2NjY9NH1syErABkE1TTdqBCWRAG8reDxKBycOUoGmHOA2pIA5kOwiA2SDVMDqYTRSNQUBIkgewkJDZYDqYR7sewsLCtQFO9YBLYaGBAbVu1apU3SA5uIyFNIMXIauAaQRKkgBGlERTURATOVpgaABRQQOK46wEAAAAAAElFTkSuQmCC) no-repeat 16px}.tui-full-calendar-popup-detail .tui-full-calendar-schedule-private .tui-full-calendar-ic-private{display:block}.tui-full-calendar-popup-detail .tui-full-calendar-section-detail{margin-bottom:16px}.tui-full-calendar-popup-detail .tui-full-calendar-section-button{border-top:1px solid #e5e5e5;font-size:0}.tui-full-calendar-section-button .tui-full-calendar-content{position:relative;top:2px}.tui-full-calendar-popup-delete,.tui-full-calendar-popup-edit{display:inline-block;padding:7px 9px 11px 9px;width:calc(50% - 1px);outline:0;background:0 0;border:none;cursor:pointer}.tui-full-calendar-popup-vertical-line{background:#e5e5e5;width:1px;height:14px;vertical-align:middle;display:inline-block;margin-top:-7px}.tui-datepicker{left:-12px;z-index:1;border-color:#d5d5d5}.tui-full-calendar-icon{width:14px;height:14px;display:inline-block;vertical-align:middle}.tui-full-calendar-icon.tui-full-calendar-ic-title{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAYAAAAfSC3RAAAAAXNSR0IArs4c6QAAAO5JREFUKBVjYCATMOLSFxkZqfHnz5+1QHktNDVbV69e7cOCJgjmQjXtB3IksMh7g8SY0CXQNTEyMlYD1fBCabhyFI3omkCq/v//PwnotC8gGq4LyIBrxKYJpBBoU15oaCgPiEbWCPYjUEIFGBBY/QS0qRWooRVIg/UBDXgMYoBtBHJSgWxsAQFWjET8BBqQBuLDNM4Can6GpAAb8ydQMADo3x0gSbDGlStX3gVqdMSjGUUTSCNKAggPD1cDOmU/EEuBJKEAQxNIHEUjSABNM1ZNIHXMIAIZXL169a2+vv5moK18QKeXAv20B1meYjYAr7xrljpOzc0AAAAASUVORK5CYII=) no-repeat}.tui-full-calendar-icon.tui-full-calendar-ic-location{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAYAAAAfSC3RAAAAAXNSR0IArs4c6QAAAR1JREFUKBWdUTtPg1AUBiT8CydHJtv/0MTJRWAgcTK1bq0/pO3k4E4IYLo2Me46tS4wumjSpV07kAb6HXLPzaGPRZLL+c73uE/D+OdnHuaCIOhVVTUEf620pWVZ0yRJ3qW3FfR9f1zX9UgaGJumOUnT9Fn3DDzPuwPOuD9TvSzL3kizhOFJ4LnjOJc0wM0FP2Asgx0mEehHUfRHgzDzqF3GOogzbJg8V6XHFqYv4Cvqy7J8DcOwWYmw8Hwy1kHMRjcaKuEGgV82caWbZay3indagJyxcKLOlKeRdJA627YfUVaN0v6tlKbZVjCO4zW2cw91px3AxJEmOONCNoTzPP9xXZfOd6u0Bzz60RGOgmQuiuIb4S3gB0IvaoJW2QMDs1bBoH1CAQAAAABJRU5ErkJggg==) no-repeat}.tui-full-calendar-icon.tui-full-calendar-ic-date{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAYAAAAfSC3RAAAAAXNSR0IArs4c6QAAAGpJREFUKBVjYKAGCA0N/Q/C6GZhE2cEKQoLC9v6//9/L3QN2PiMjIzbVq1a5c0EkiRWE7JasEZsJhMSI1sjC7LJq1evBvsZWQyZjRxwZNs4hDSiBA6y55EDBRsb7EdQasAmiUNsKw5x4oQBkUAeDPJ53KsAAAAASUVORK5CYII=) no-repeat}.tui-full-calendar-icon.tui-full-calendar-ic-state{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAYAAAAfSC3RAAAAAXNSR0IArs4c6QAAAIxJREFUKBVjYCATMKLrCw8P9/z3798soLgMVO4JExNT2sqVK7cjq2VC5oDYME2MjIyNIAwUkoGKoShlQeFBOGCbVq1a1QDihoaG1gMpmO0gITAAOzUsLGzr////vWCC+GigK7YBDfUGO5VYTSADYWox/IjPNmS5UY3IoYHGBgcOKG7QxPFxt+KTJCgHAGcZJbGLRuJ2AAAAAElFTkSuQmCC) no-repeat}.tui-full-calendar-icon.tui-full-calendar-ic-private{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAYAAAAfSC3RAAAAAXNSR0IArs4c6QAAAKpJREFUKBVjYCATMKLri46Olvn9+3fX////HUByjIyMB1hZWcuWLl36BFktikaQpl+/fl0EKhBCVgRkv2NjY9NH1syErABkE1TTdqBCWRAG8reDxKBycOUoGmHOA2pIA5kOwiA2SDVMDqYTRSNQUBIkgewkJDZYDqYR7sewsLCtQFO9YBLYaGBAbVu1apU3SA5uIyFNIMXIauAaQRKkgBGlERTURATOVpgaABRQQOK46wEAAAAAAElFTkSuQmCC) no-repeat}.tui-full-calendar-icon.tui-full-calendar-ic-close{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAYAAAAfSC3RAAAAAXNSR0IArs4c6QAAAJRJREFUKBXFkNERhCAMREUbuEKohzq0Eq2DDq6Da4B60KezDORkxj+ZwchmX0IYhtdWCGFl9y5g82NtzDnPdzAaudo76ZBS+nrvPxiInMkJcs5tMcZFfqcfxdqIRiELof+BiIJPg+mExmpmvKRn3zKj7OrG9Y79szPL14A1xEP0Hgy4gBZS5R7czHj3ehSgOzkVeyfuGrBw/WLm0hsAAAAASUVORK5CYII=) no-repeat}.tui-full-calendar-ic-location-b{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAYAAABWdVznAAAAAXNSR0IArs4c6QAAAOZJREFUKBWVUT0KwjAUbkzGTuJWPYNDpV0cXD2ETuIRBK+gs4ubp3BwcXBp6eINBKWDgydoid9X8oKCggYe5e7eb/7S9IGwZ9LverTNO3Wdb2y1o6IK6WOWutFlmU30XmDE58hbgvpTA+Y+mJqCemS20jdG2N6LPYMICc6b5BrIG3ONBZ7CoVj7w0cfllGRDj+gKQpjt/iPU0ye/LkROcNANaoCUzjqqquIsBuHddAWoiyLO9RFHUwJ4JxR/qmKIqdYG9vCMNwCeIiJHuHecj/B0GSJBng7ifO+ErDPM8L4b7ucRzPWJ8ET1E7YC7tmi9qAAAAAElFTkSuQmCC)}.tui-full-calendar-ic-state-b{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAYAAABWdVznAAAAAXNSR0IArs4c6QAAAHlJREFUKBVjYCARMCKrNzEx8QTyZ/3//18GJM7IyPgESKWdOXNmO4gPAkwQCk6CFQMVNoIwVOMsuCw6w9jY+D8Iw8TR+SBxsJOATtkKNM0LphAbDbRxG9Bp3mAnEVIMMgCmBt0P2AxHERusGkAhgOJQ7Jyt2IUJiAIAwwIn24FgmhkAAAAASUVORK5CYII=)}.tui-full-calendar-icon.tui-full-calendar-ic-user-b{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAYAAABWdVznAAAAAXNSR0IArs4c6QAAAJpJREFUKBVjYKA1YES3wMTExBMoNgsqnnbmzJntyGqYkDlQ9qz////LgDCQD9MIV4ZNA1wSGwObhjRGRsYnIAzUkIZNE0licE+bm5tr/fnzJx1osjPQBFmoKY+BftnLwsIy8+TJk9dAYmANxsbGoUD2YiBmBwliAT+BYrFnz55dDfNDO1AAl2KQfpAcSA0DTIMyiEMAEKMG0wgAolIjcM7Tjm8AAAAASUVORK5CYII=)}.tui-full-calendar-icon.tui-full-calendar-ic-edit{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAYAAABWdVznAAAAAXNSR0IArs4c6QAAAMdJREFUKBVjYCARMOJTb2xsLMfIyBjLysq64Pjx409BapnwaQDKzf7//3/L79+/D1tbW0uB1LJg02BmZqYIVPgdKBf/79+//UC2xs+fP8OB/H4MG0CK//79ewCkEGQYExOTI5DawMnJuQTER/EDTDFQXA4kCQQ3QBpOnz79AsJF8gMWxTA1KDTYBhyKMUwH6WSysrKSB7kZyIY5AySOVTFIggno+5VAmijFYA1AwhzEgAKcJsMUwIMVGKPH2NnZ7ZFDBKYImQYAuO5YIMgk39gAAAAASUVORK5CYII=)}.tui-full-calendar-icon.tui-full-calendar-ic-delete{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAYAAABWdVznAAAAAXNSR0IArs4c6QAAAFhJREFUKBVjYCARMKKrNzEx2fr//38vkDgjI+O2M2fOeCOrAWtAVoQsicyGaWZCFsTHBtr6H588Tjm4H4yNjfGacPbsWbBaop0Es3JYaQBFDMxjWOitMDEA3EEZfFEISwUAAAAASUVORK5CYII=)}.tui-full-calendar-icon.tui-full-calendar-ic-arrow-solid-top{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAYAAAAfSC3RAAAAAXNSR0IArs4c6QAAAIFJREFUKBVjYBj+gBmXF2NiYiTV1dV5rl279gWbGiZsgg0NDSw/f/5cCZRbBWJjU4PVRjExsR6g4nAgln/z5g3v1atXd6JrxtAYHh4e+v///z4khZa6urrXgJqvIYkxMCJzgJo0//37dwooxoMsDmR/YWJiMlu5cuV1NPFRLrYQAADMVCaUtbG7XwAAAABJRU5ErkJggg==) no-repeat}.tui-full-calendar-icon.tui-full-calendar-ic-milestone{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAYAAABWdVznAAAAAXNSR0IArs4c6QAAAGFJREFUKBVjYCARMILU/3dw+I+hj5FxG+P+/d7o4rg1IKtE0syELI6T/f+/F0yOOA0w1UCa9hpYkGxjYDxwABwIILH/jo5bGWBuZ2TcClOHogEmCKKxBSlInPZ+ANlCEgAA37EU4AHbBQUAAAAASUVORK5CYII=) no-repeat}.tui-full-calendar-icon.tui-full-calendar-ic-arrow-left{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAHCAYAAAAvZezQAAAAAXNSR0IArs4c6QAAAFZJREFUCB1jZICCyspK83///hUxgvhVVVV6f//+3c3ExJTMVFNTowqU2cHMzJzf3t6+hen379/zgIp2t7W1rQCpZmJlZU0C0q5AbREgAQwzwAIgGZgtADMCJqH/QyvhAAAAAElFTkSuQmCC) no-repeat}.tui-full-calendar-icon.tui-full-calendar-ic-arrow-right{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAHCAYAAAAvZezQAAAAAXNSR0IArs4c6QAAAFxJREFUCB1jKC8vX1lZWWnOAAVMQLD4379/m6qqqvRAYowgAsiJAAr2sbCw2IMFQIIVFRUL////r8SCpMKVlZXVnhFooA9Q+VxmZmbXtra2S0xATizQYD8QB6QaAJMLJ9BqE9yTAAAAAElFTkSuQmCC) no-repeat}.tui-full-calendar-ic-repeat-b{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAYAAABWdVznAAAAAXNSR0IArs4c6QAAAQpJREFUKBVjYCARMCKrNzU1tf/3718lUMwQiP8yMjKeYWJi6j516tRhExOThjNnzjTANQAFqv///98CVHQPSO8A0ixATa5AtjyQPgDETmfPngULMpiZmbn//fu3BSg4B6ggCyjxG8hm8PT0ZH/9+vUJoJgTiA8CTCACqDgXaOJ9Xl7eTJhikDhQcSVQsQGITT8A9rSxsfF/mJVApzWCQgPGd3BwYPny5cstoNOuAZ3rAwoJOAAqviAqKtoOEwAaxPr58+dpQL4iEGeAxJFt2AfkOwA1PQTSu4Em/gGyPYC0EpCuAdraCtIADiWgQCPQOmdmZmYHoNgVoCJfIB0CpG8DI84BphgoRjoAAAzgdELI91E5AAAAAElFTkSuQmCC)}
+/*# sourceMappingURL=tui-calendar.min.css.map */
diff --git a/dasena-web/public/assets/admin/vendors/css/tui-calendar.min.css.map b/dasena-web/public/assets/admin/vendors/css/tui-calendar.min.css.map
new file mode 100644
index 0000000..ceac444
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/css/tui-calendar.min.css.map
@@ -0,0 +1 @@
+{"version":3,"sources":["tui-calendar.min.css"],"names":[],"mappings":"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","file":"tui-calendar.min.css","sourcesContent":[]}
\ No newline at end of file
diff --git a/dasena-web/public/assets/admin/vendors/css/tui-date-picker.min.css b/dasena-web/public/assets/admin/vendors/css/tui-date-picker.min.css
new file mode 100644
index 0000000..da0af81
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/css/tui-date-picker.min.css
@@ -0,0 +1,7 @@
+@charset "utf-8";/*!
+ * TOAST UI Date Picker
+ * @version 4.3.1
+ * @author NHN. FE Development Lab
+ * @license MIT
+ */.tui-calendar{position:relative;background-color:#fff;border:1px solid #e5e7eb;width:274px}.tui-calendar *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.tui-calendar div{text-align:center}.tui-calendar caption{padding:0}.tui-calendar caption span{overflow:hidden;position:absolute;clip:rect(0 0 0 0);width:1px;height:1px;margin:-1px;padding:0}.tui-calendar button,.tui-datepicker-dropdown button,.tui-datepicker-selector button{-webkit-appearance:none;-moz-appearance:none;appearance:none}.tui-datepicker-dropdown .tui-ico-check,.tui-ico-caret,.tui-ico-date,.tui-ico-time{overflow:hidden;display:inline-block;width:1px;height:1px;line-height:300px;background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAC8AAAA+CAYAAAC7rUKSAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpERjdGMzkzODVEQkRFNjExQkVCMjlDOUFDNzZDM0E5NCIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo1ODVCRTc4NkM2QkQxMUU2OTgzMzhGQjZFMjcyMTQ1RSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo1ODVCRTc4NUM2QkQxMUU2OTgzMzhGQjZFMjcyMTQ1RSIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M2IChXaW5kb3dzKSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjFERENDMTc0QjlDNkU2MTE5OTc0QjIwOTY3QkQzNjZBIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkRGN0YzOTM4NURCREU2MTFCRUIyOUM5QUM3NkMzQTk0Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+ClaYfwAACcFJREFUeNrEWgtwVOUVPnt37+4mmyUhkSQLGEigQ4uRQiEITe0U0Djio61ArNqpQguWdtrKtNqKM9W2Y6sOHaWdUaEvmVZtQaYjg8ZHU6zFApX4GAGdiYaHQmISks1r2Ueyt+fcPXdz9+69d/+72dQz883e+z92v/+/5z//95+7rsWLF4PB1jBu5vtvIn6IWIXoNDbetGkTfSjgzFxm/RRFgXA4DNFoFOLxuFrm9XrB5/PB1KlTweVyZXyJx4T4nxDNurI/IhYhXuUBnIFJsOHhYejp6YHy8nIoLS1VSZPRIBKJBJw8eRIqKyuhpKTElPwNTPxGxAv6CUF8D/Eg4l88gI5CEh8aGoKRkRGora3NqvN4UhRpQJ2dnerTCQaDapmkI76LibeYfD8N4C7En/kJzDNzBUFkEY9EIlBdXZ1zkKFQSB0kPSWN/GYm3mxBXG8/5QEcRMye6Iwnk0no7e2Fqqoq4T40yO7ubvUJEPnLERcQ5wT6Xoz4KmIP4nSOtopuQSpmi5oWJy1Ep0bror+/XyVPUeVeRCuiwaZPLfv8c4jv5hFhsiwWi6UXphOjPtRXW7CPISKIFxHXs1vojXz8ZXaZe0TDocV12iiS5Eue+kq6sl3s//sRV+jK5yNeQewQIB7mJ1Kqu7Z0m4maMc7/jf3/NsQ/NBdD/Arxm0L/uDaDWjgUNe2JmfXax9DsoIkbWVmZxbWp29DOSUSKi4sdk6e+Ur6zdvToURUm0SUX0kaRpq+vz/FvUx/qa0V+A+JNxHQHi9MJUp1Qq9CW39XVJUycdlnqQ30lC+K0m/6Vw+d0mARbsmSJ+klaJRAICA2A2lB7Td94LIiv5E2rF/FP3X2W7dy5My9Vqb8hrUIz2dHRARUVFSDLcoYwI5Cr2AkzI3GyP/Cn7QAKYdqM0s45MDCQIYn9fr8q2qwksRlx+D8MICsKOZELHiZ+Zw5iIgNwCf5mwTYrD2ubVQIzqg2AjkD3FeLHr32s0zh4Ogx9R3JBY1mxW3X6cGQsnlTgNbx8FLFXP3iPQQqA4ACczLDLcG0qFBFPz50mN61ZGICGWX7wy6mm0YTiff10dMXet0ZWvN+ToCd/E6JbJV9XVwefsFUgXkPS825dNgUkw/BoEJfPLYLGOUWw6/DgShwEHYYaEecl1jAhwR/awPLZycYFVqcoth3XXRqYt355JvGhWFKFZlRHbagtq2DVbZ7WLcTOHMTv4vXh1FWs3GZZZdC9Zv3yYLrgRFccdhwchA96Eur9nGky3P6FKTC/OhX3N2DbI6ei67qHxpZJ7MfbeADTBYifLaDL3HZtfQC87tSYiPDWZ/vSxM3KZGz7lQUBulwv6RbiNgs54IS4latYuc0VS2f70jdPHBmC0WR2JKWyXVin2aKL1T5f8phEklZd6HRCPJ/4XVM9ZZzCic64ZcPjurqqoFs9T3ssQmEr53A25NpVOeOWMattbW2i5MeSSUXWViq5RGzUfA5kt8u4HUqSRSwnF7plsvUMWvvp/tFxpVnjs1ahuroPU33aJZvN6LMOiNudUbUzbdZhhvJEh09G02XfuCwIZUXZlKiM6jTjPi2efPImeeyyYT4WDhjqf7//WGQLRg856JcAwyY8svYi+MvrQ/D2R3G188KZXvh6QxAuKnGn4n80CfveiVDo+Z3e5ymQfpu333ouO8b7wOMkrZ2oQ5MnETa227851I76Zvu21vCP7l1drro+kbxjRZl5hg2/8detYRiJJbfr3WYG4gjrnK2844b4+kqum5HHjIuU/6TtTOy5nz/fB4PRpOUXUh21OYptqY+2w3o5V/MM4n5DnwOMezhTdhkluvLR6XYRB/FlJPXAxqd6frD6kmJ52Ww/VE1JucnHg2Nw+FQUnj8eSfCM3819VPK3Iz4yIa63+5k4yeHf5pAF+RiRuRPJPb7njeFvIZrwfibXEbeXaH3Qhmum57eakDESeRjxSwvyZpFEyNDv9bcf8MzeLXoY+Rz9nkiqBlJvSCbqJpOW7rNzBbpPGNMXJu+00mkNp08GxZfyzrk4dA2Ogk9OxZJYIgkkIS6d7iWF6TKSf4N+jxem3Uw2cOiEHFJgJa+jG3OUpQ1PS8pL70YgitJg0UwfXFNfnJYDiTEFTp0fhbYPY4ADU66aXwxFciqNIHEc3yLwlLZwWztbyefMJ3KUZRB/5s1hNb6vW1QCn6qUM3QMXVMZ1dEmthfbUh+NPKWua3Kkr6luFre1slUcbikAtNiUZbjmgfYLUFMuw+fr/KBPy9BTiOpEGtVRG2r7SvsFta+H4/Y1HOuXIh5B/Jf7LOUZp8GttonxRHIPi7kWm7LM9B3GcDwRwS0NReO5SPT3V9+PQs+QGsphGs72F+f6IcTSubHOh/JhWO2r7bBnOY7Taeoh2hsYD7E8Xmqj5682IXl1LuJk730chwW4ED0siYnw39+KpImblbmx7cIZXni3K/PNCGmX7bwwSxgNXBYXSZsLlmVI29kVcvr+P6gWk4piomkUOKRTn+Q6Z8Oj4KHc4ASthWeYZrqZsxFmZVlGCrFUJ4E7B8Ysf+Scri7od8FwLJkx86Rxvo84RN/LOMRlXoEB0KLcrUtimZVlGHmLfqbdNq86jHUKjL8BL4SqfEFH9kqbsrSVFrmhb2RcSc4qt94z9XX9kaTaVzKoyut5sxpm0PV1XEeq0ic4gM05ytKEOs6Pb9rLa/1QLGfvj1RGdZp19CbUvpIDVXmGVWUuCUBkbxAog/khLxxHOYCbDvuyBM2LS+Az1TIEfRKUIOiayqiONzU4hn0uCXknR1WKGp5NXZ+u9iovvxcBSj7RRkSEV80zfztIy4PaYh+1r1QAVUkRpUmgzFSUNdb51Rce+4+NpJ+AhYxQ21Bb6gO6BSuSEchSldohmjVPU44y6zx9fcBVHnDDk3jwpnhOp6cIkiXQNZVRHbWhtgVTlZD6v8LNTPYmPvWYldkazWZ9yKtQopW0yzBniMmNanBxrkVhhntCliTWVOWBCahKxwNobm52fKjZvXt35j5RQFX5IpPUu4tZWcFM0qnKtYhnESsQAQZd0/8Q1uVQlca14hcoE8lA0KAP2pGfqKrUjGb2KXaVfTZlokZu+jW7lKPHRFVuz+MJNpn4dpOTBWuwBbynnOUsnjl5emWeTypDt8NOhPhaJkd/PNX+s0bu9STLllsRfXZuI/T3EhvbaEJyo+CMz+ETF/13TXst+QDnSh9ml7VNfbgsiIrmYtYJlpkZ/dGU0tQ/RvwbUv+oIgn+tolksVywZZ9gEomSpvdB6l0Y6aYoL/CckU1bsAM8gLAocScpPQH7GR9+foG4A3FCpNP/BBgAdZ3B2yZg0vUAAAAASUVORK5CYII=) no-repeat}.tui-ico-date{width:12px;height:12px;background-position:-17px 0}.tui-ico-time{width:12px;height:12px;background-position:0 -30px}.tui-ico-caret{width:7px;height:4px;background-position:0 -58px}.tui-calendar-month,.tui-calendar-year{width:202px}.tui-calendar-month .tui-calendar-body,.tui-calendar-year .tui-calendar-body{width:202px;margin:0 auto}.tui-calendar .tui-calendar-header{position:relative;border-bottom:1px solid #efefef}.tui-calendar .tui-calendar-header-inner{padding:17px 50px 15px;height:50px}.tui-calendar .tui-calendar-title-today{height:30px;margin:0;font-size:12px;line-height:34px;color:#7587a7;background-color:#f4f4f4}.tui-calendar .tui-calendar-title-today:hover{color:#283c50;background-color:#edf4fc;cursor:pointer}.tui-calendar .tui-calendar-title{display:inline-block;font-size:18px;font-weight:400;font-style:normal;line-height:1;color:#283c50;cursor:default;vertical-align:top}.tui-calendar-btn{overflow:hidden;position:absolute;top:0;width:32px;height:50px;line-height:400px;z-index:10;cursor:pointer;border:none;background-color:#fff}.tui-calendar .tui-calendar-btn-prev-month{left:0}.tui-calendar .tui-calendar-btn-next-month{right:0}.tui-calendar .tui-calendar-btn-prev-year{left:0}.tui-calendar .tui-calendar-btn-next-year{right:0}.tui-calendar .tui-calendar-btn-next-month:after,.tui-calendar .tui-calendar-btn-next-year:after,.tui-calendar .tui-calendar-btn-prev-month:after,.tui-calendar .tui-calendar-btn-prev-year:after{overflow:hidden;position:absolute;top:50%;margin-top:-5px;line-height:400px;background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAC8AAAA+CAYAAAC7rUKSAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpERjdGMzkzODVEQkRFNjExQkVCMjlDOUFDNzZDM0E5NCIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo1ODVCRTc4NkM2QkQxMUU2OTgzMzhGQjZFMjcyMTQ1RSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo1ODVCRTc4NUM2QkQxMUU2OTgzMzhGQjZFMjcyMTQ1RSIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M2IChXaW5kb3dzKSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjFERENDMTc0QjlDNkU2MTE5OTc0QjIwOTY3QkQzNjZBIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkRGN0YzOTM4NURCREU2MTFCRUIyOUM5QUM3NkMzQTk0Ii8+IDwvcmRmOkRlc2NyaXB0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) no-repeat;content:""}.tui-calendar .tui-calendar-btn-prev-month:after,.tui-calendar.tui-calendar-month .tui-calendar-btn-prev-year:after{width:6px;height:11px;left:50%;margin-left:-3px;background-position:0 0}.tui-calendar .tui-calendar-btn-next-month:after,.tui-calendar.tui-calendar-month .tui-calendar-btn-next-year:after{width:6px;height:11px;right:50%;margin-right:-3px;background-position:-8px 0}.tui-calendar .tui-calendar-btn-prev-year:after{width:11px;height:10px;left:50%;margin-left:-6px;background-position:-16px -36px}.tui-calendar .tui-calendar-btn-next-year:after{width:11px;height:10px;right:50%;margin-right:-6px;background-position:-16px -49px}.tui-calendar.tui-calendar-month .tui-calendar-btn-next-year,.tui-calendar.tui-calendar-month .tui-calendar-btn-prev-year{width:50px}.tui-calendar .tui-calendar-has-btns .tui-calendar-btn-prev-year{left:10px}.tui-calendar .tui-calendar-has-btns .tui-calendar-btn-next-year{right:10px}.tui-calendar .tui-calendar-has-btns .tui-calendar-btn-prev-month{left:44px}.tui-calendar .tui-calendar-has-btns .tui-calendar-btn-next-month{right:44px}.tui-calendar .tui-calendar-body-header th{color:#7587a7}.tui-calendar .tui-calendar-body-inner{width:100%;margin:0 auto;table-layout:fixed;border-collapse:collapse;text-align:center;font-size:12px}.tui-calendar th{font-weight:400;cursor:default}.tui-calendar td,.tui-calendar th{height:39px;text-align:center;color:#999}.tui-calendar .tui-is-blocked:hover{cursor:default}.tui-calendar .tui-calendar-month{width:25%;height:50px}.tui-calendar .tui-calendar-today{color:#3454d1}.tui-calendar .tui-calendar-next-month,.tui-calendar .tui-calendar-prev-month{color:#ccc}.tui-calendar .tui-calendar-next-month.tui-calendar-date,.tui-calendar .tui-calendar-prev-month.tui-calendar-date{visibility:hidden}.tui-calendar .tui-calendar-btn-choice{background-color:#3454d1}.tui-calendar .tui-calendar-btn-close{background-color:#7587a7}.tui-calendar .tui-calendar-year{width:25%;height:50px}.tui-calendar.tui-calendar-year .tui-calendar-btn-prev-year:after{width:6px;height:11px;left:50%;margin-left:-3px;background-position:0 0}.tui-calendar.tui-calendar-year .tui-calendar-btn-next-year:after{width:6px;height:11px;right:50%;margin-right:-3px;background-position:-8px 0}.tui-calendar.tui-calendar-year .tui-calendar-btn-next-year,.tui-calendar.tui-calendar-year .tui-calendar-btn-prev-year{width:50px}.tui-datepicker{border:1px solid #e5e7eb;background-color:#fff;position:absolute}.tui-datepicker *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.tui-datepicker-type-date{width:274px}.tui-datepicker-body .tui-calendar-month,.tui-datepicker-body .tui-calendar-year{width:auto}.tui-datepicker .tui-calendar{border:0}.tui-datepicker .tui-calendar-title{cursor:pointer}.tui-datepicker .tui-calendar-title.tui-calendar-title-year-to-year{cursor:auto}.tui-datepicker-body .tui-timepicker,.tui-datepicker-footer .tui-timepicker{width:274px;position:static;padding:20px 46px 20px 47px;border:0}.tui-datepicker-footer .tui-timepicker{border-top:1px solid #e5e7eb}.tui-datepicker-selector{padding:10px;font-size:0;text-align:center;border-bottom:1px solid #e5e7eb}.tui-datepicker-selector-button{width:50%;height:26px;font-size:12px;line-height:23px;border:1px solid #e5e7eb;background-color:#fff;color:#7587a7;outline:0;cursor:pointer}.tui-datepicker-selector-button.tui-is-checked{background-color:#e5e7eb;color:#283c50}.tui-datepicker-selector-button+.tui-datepicker-selector-button{margin-left:-1px}.tui-datepicker-selector-button [class^=tui-ico-]{margin:5px 9px 0 0;vertical-align:top}.tui-datepicker-input.tui-has-focus .tui-ico-date,.tui-datepicker-selector-button.tui-is-checked .tui-ico-date{background-position:-17px -14px}.tui-datepicker-selector-button.tui-is-checked .tui-ico-time{background-position:0 -44px}.tui-datepicker-area{position:relative}.tui-datepicker-input{position:relative;display:inline-block;width:120px;height:28px;vertical-align:top;border:1px solid #e5e7eb}.tui-datepicker-input *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.tui-datepicker-input>input{width:100%;height:100%;padding:6px 27px 6px 10px;font-size:12px;line-height:14px;vertical-align:top;border:0;color:#283c50}.tui-datepicker-input>.tui-ico-date{position:absolute;top:50%;right:8px;margin:-6px 0 0 0}.tui-datepicker-input.tui-has-focus{border-color:#e5e7eb}.tui-datetime-input{width:170px}.tui-datepicker .tui-is-blocked{cursor:default;color:#e5e7eb}.tui-datepicker .tui-is-valid{color:#999}.tui-datepicker .tui-is-selectable:hover{background-color:#edf4fc;cursor:pointer}.tui-datepicker .tui-is-selectable.tui-is-selected,.tui-datepicker.tui-rangepicker .tui-is-selectable.tui-is-selected{background-color:#3454d1;color:#fff}.tui-datepicker.tui-rangepicker .tui-is-selected-range{background-color:#edf4fc}.tui-datepicker-dropdown{display:inline-block;width:120px}.tui-datepicker-dropdown .tui-dropdown-button{width:100%;height:28px;padding:0 10px;font-size:12px;line-height:20px;border:1px solid #e5e7eb;padding:0 30px 0 10px;text-align:left;background:#fff;cursor:pointer}.tui-datepicker-dropdown{position:relative}.tui-datepicker-dropdown .tui-ico-caret{position:absolute;top:12px;right:10px}.tui-datepicker-dropdown .tui-dropdown-menu{display:none;position:absolute;top:27px;left:0;right:0;width:100%;padding:5px 0;margin:0;overflow-y:auto;min-width:0;max-height:198px;font-size:12px;border:1px solid #e5e7eb;border-top-color:#fff;z-index:10;box-sizing:border-box;box-shadow:none;border-radius:0}.tui-datepicker-dropdown.tui-is-open .tui-dropdown-button{display:block}.tui-datepicker-dropdown.tui-is-open .tui-dropdown-button,.tui-datepicker-dropdown.tui-is-open .tui-dropdown-menu{display:block;border-color:#e5e7eb}.tui-datepicker-dropdown.tui-is-open .tui-ico-caret{background-position:-21px -28px}.tui-datepicker-dropdown .tui-menu-item{position:relative;overflow:hidden;position:relative;height:28px;line-height:28px;background-color:#fff;z-index:10}.tui-datepicker-dropdown .tui-menu-item-btn{position:relative;width:100%;font-size:12px;font-weight:400;line-height:28px;padding:0 10px 0 30px;text-align:left;color:#283c50;background-color:#fff;border:0;cursor:pointer;z-index:9}.tui-datepicker-dropdown .tui-menu-item-btn:hover,.tui-menu-item-btn:active,.tui-menu-item-btn:focus{color:#283c50;background-color:#f4f4f4}.tui-datepicker-dropdown .tui-menu-item .tui-ico-check{display:none;overflow:hidden;position:absolute;width:10px;height:8px;top:10px;left:10px;background-position:-31px -54px;z-index:10;content:"aaa"}.tui-datepicker-dropdown .tui-menu-item.tui-is-selected .tui-ico-check{display:block}.tui-datepicker-dropdown .tui-menu-item.tui-is-selected .tui-menu-item-btn{font-weight:700}.tui-dropdown-area{font-size:0}.tui-dropdown-area .tui-datepicker-dropdown+.tui-datepicker-dropdown{margin-left:5px}.tui-hidden{display:none}
+/*# sourceMappingURL=tui-date-picker.min.css.map */
diff --git a/dasena-web/public/assets/admin/vendors/css/tui-date-picker.min.css.map b/dasena-web/public/assets/admin/vendors/css/tui-date-picker.min.css.map
new file mode 100644
index 0000000..f3fef83
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/css/tui-date-picker.min.css.map
@@ -0,0 +1 @@
+{"version":3,"sources":["tui-date-picker.min.css"],"names":[],"mappings":"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","file":"tui-date-picker.min.css","sourcesContent":[]}
\ No newline at end of file
diff --git a/dasena-web/public/assets/admin/vendors/css/tui-theme.min.css b/dasena-web/public/assets/admin/vendors/css/tui-theme.min.css
new file mode 100644
index 0000000..244d210
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/css/tui-theme.min.css
@@ -0,0 +1,2 @@
+.calendar-icon{width:20px;height:14px}.calendar-icon span{font-weight:600}#top{height:49px;padding:16px;font-size:10px;border-bottom:1px solid #e5e7eb}#lnb{top:49px;bottom:0;width:200px;padding:12px 10px;position:absolute;background:#fafafa;border-right:1px solid #e5e7eb}#right{position:absolute;left:200px;top:49px;right:0;bottom:0}#lnb label{margin-bottom:0;cursor:pointer}.lnb-new-schedule{padding-bottom:12px;border-bottom:1px solid #e5e7eb}.lnb-new-schedule-btn{border:0;height:100%;font-size:14px;color:#fff;font-weight:700;padding:10px 20px;border-radius:25px;background-color:#ff6618}.lnb-new-schedule-btn:hover{border:0;height:100%;font-size:14px;color:#fff;font-weight:700;padding:10px 20px;border-radius:25px;background-color:#3454d1}.lnb-new-schedule-btn:active{border:0;height:100%;font-size:14px;color:#fff;font-weight:700;padding:10px 20px;border-radius:25px;background-color:#3454d1}.lnb-calendars>div{padding:25px 30px;border-bottom:1px solid #e5e7eb}.lnb-calendars-d1{padding-left:10px}.lnb-calendars-item{cursor:pointer;padding:10px 0}.lnb-calendars-item label{cursor:pointer}.lnb-footer{bottom:12px;color:#283c50;font-size:11px;position:absolute;padding-left:16px}#renderRange{color:#283c50;font-size:16px;font-weight:700;margin-right:10px}.calendar-bar{width:16px;height:16px;margin-right:5px;display:inline-block;vertical-align:middle;border:1px solid #e5e7eb}.calendar-name{font-size:14px;font-weight:700;vertical-align:middle}.schedule-time{color:#3454d1}#calendar{position:absolute;left:0;right:0;bottom:5px;top:64px}.weekday-grid-more-schedules{height:18px;float:right;color:#283c50;padding:0 5px;font-size:12px;margin-top:4px;line-height:17px;margin-right:6px;text-align:center;border-radius:3px;border:1px solid #e5e7eb}[data-auto-height=true]{height:calc(100vh + 220px)!important}.lnb-calendars-item label{display:flex;cursor:pointer;color:#283c50;font-weight:600;align-items:center}input[type=checkbox].tui-full-calendar-checkbox-round+span{width:18px;height:18px;border:solid 2px;margin-right:12px;border-radius:3px;position:relative}input[type=checkbox].tui-full-calendar-checkbox-round+span:before{top:.5px;left:1.5px;color:#fff;font-size:10px;content:"\f272";position:absolute;font-family:bootstrap-icons!important}.tui-full-calendar-popup{box-shadow:0 0 25px 0 rgb(0 0 0 / 10%)}.tui-full-calendar-dayname-container,.tui-full-calendar-month-dayname{border-top:none!important}.tui-full-calendar-popup-container{padding:20px;min-width:475px;border-radius:3px;box-shadow:none!important;border:solid 1px #e5e7eb}.tui-full-calendar-button{color:#283c50;border-radius:3px;border:1px solid #e5e7eb}.tui-full-calendar-section-title{width:calc(100% - 50px)}.tui-full-calendar-dropdown-menu{top:39px;padding:5px 0;border-radius:3px;border:1px solid #e5e7eb}.tui-full-calendar-popup-section{display:flex;margin:20px 0;align-items:center;justify-content:space-between}.tui-full-calendar-section-title input{width:350px}.tui-full-calendar-button.tui-full-calendar-section-private{height:40px;padding:12px;line-height:1;margin-left:15px}.tui-full-calendar-popup-section .tui-full-calendar-popup-section-item{height:35px;line-height:1;border-radius:3px;padding:5px 12px 5px 12px;border:1px solid #e5e7eb;display:flex;align-items:center}.tui-full-calendar-section-calendar{width:220px}.tui-full-calendar-dropdown-button.tui-full-calendar-popup-section-item{height:40px;width:215px}.tui-full-calendar-section-calendar .tui-full-calendar-dropdown-button .tui-full-calendar-content,.tui-full-calendar-section-state .tui-full-calendar-content{width:170px!important}.tui-full-calendar-section-state{top:20px;right:15px;width:220px!important;position:absolute!important}.tui-full-calendar-dropdown:hover .tui-full-calendar-dropdown-menu{border-top:1px solid}.tui-full-calendar-popup-section-item .tui-full-calendar-content{font-weight:600}.tui-full-calendar-dropdown .tui-full-calendar-dropdown-menu .tui-full-calendar-popup-section-item{border:none}.tui-full-calendar-section-end-date input,.tui-full-calendar-section-start-date input{width:138px!important}.tui-full-calendar-button:hover,.tui-full-calendar-dropdown:hover .tui-full-calendar-dropdown-button,.tui-full-calendar-dropdown:hover .tui-full-calendar-dropdown-menu,.tui-full-calendar-popup-section-item:focus{border-color:#e5e7eb}.tui-full-calendar-icon.tui-full-calendar-ic-date,.tui-full-calendar-icon.tui-full-calendar-ic-location,.tui-full-calendar-icon.tui-full-calendar-ic-private,.tui-full-calendar-icon.tui-full-calendar-ic-state,.tui-full-calendar-icon.tui-full-calendar-ic-title,.tui-full-calendar-section-private.tui-full-calendar-public .tui-full-calendar-ic-private{background:0 0;height:100%;display:flex;font-size:15px;align-items:center;justify-content:center;padding:20px 18px 20px 5px;font-family:feather!important;border-right:1px solid #e5e7eb}.tui-full-calendar-icon.tui-full-calendar-ic-delete,.tui-full-calendar-icon.tui-full-calendar-ic-edit,.tui-full-calendar-icon.tui-full-calendar-ic-location-b,.tui-full-calendar-icon.tui-full-calendar-ic-repeat-b,.tui-full-calendar-icon.tui-full-calendar-ic-state-b,.tui-full-calendar-icon.tui-full-calendar-ic-user-b{font-size:12px;background:0 0;font-family:feather!important}.tui-full-calendar-icon.tui-full-calendar-ic-title:before{content:"\e9e7"}.tui-full-calendar-icon.tui-full-calendar-ic-location-b:before,.tui-full-calendar-icon.tui-full-calendar-ic-location:before{content:"\e994"}.tui-full-calendar-icon.tui-full-calendar-ic-private:before{content:"\e98f"}.tui-full-calendar-icon.tui-full-calendar-ic-date:before{content:"\e927"}.tui-full-calendar-icon.tui-full-calendar-ic-state-b:before,.tui-full-calendar-icon.tui-full-calendar-ic-state:before{content:"\e9e3"}.tui-full-calendar-icon.tui-full-calendar-ic-private{padding:0 0!important}.tui-full-calendar-icon.tui-full-calendar-ic-repeat-b:before{content:"\e9c5"}.tui-full-calendar-icon.tui-full-calendar-ic-user-b:before{right:-30px;content:"\ea05";position:relative}.tui-full-calendar-icon.tui-full-calendar-ic-edit:before{content:"\e95b"}.tui-full-calendar-icon.tui-full-calendar-ic-delete:before{content:"\e9f1"}.tui-full-calendar-public .tui-full-calendar-icon.tui-full-calendar-ic-private:before{content:"\e9fd"}.tui-full-calendar-startpicker-container{top:20px;left:-150px;margin-left:auto;position:relative}.tui-datepicker{top:19px;left:-163px;border-radius:3px!important;border:1px solid #e5e7eb!important}.tui-calendar .tui-calendar-title{color:#283c50!important;font-size:16px!important;font-weight:600!important;text-transform:uppercase;line-height:1.5!important}.tui-calendar .tui-calendar-title-today{height:100%!important;display:flex;font-size:8px!important;font-weight:700;letter-spacing:1px;color:#283c50!important;align-items:center;justify-content:center;text-transform:uppercase;background-color:#f1f1f7}.tui-calendar .tui-calendar-body-header th{color:#283c50!important;font-weight:600;font-size:10px;text-transform:uppercase}.tui-calendar td,.tui-calendar th{font-weight:400;color:#fff}.tui-datepicker .tui-is-selectable:hover,.tui-datepicker.tui-rangepicker .tui-is-selected-range{background-color:#f1f1f7}.tui-datepicker .tui-is-selectable.tui-is-selected,.tui-datepicker.tui-rangepicker .tui-is-selectable.tui-is-selected{border-radius:3px}.tui-datepicker-footer .tui-timepicker{border-top:1px solid #e5e7eb!important}.tui-datepicker-body .tui-timepicker,.tui-datepicker-footer .tui-timepicker{padding:20px 20px!important}.tui-timepicker-select{width:105px!important;color:#6c757d!important;padding:5px 10px!important;border:1px solid #e5e7eb!important}.tui-full-calendar-popup-section-item.tui-full-calendar-section-allday .tui-full-calendar-content{padding:0!important;display:none!important}.tui-full-calendar-confirm,.tui-full-calendar-popup-save{width:100%}.tui-full-calendar-popup-detail .tui-full-calendar-icon{margin-right:10px}.tui-full-calendar-popup-detail .tui-full-calendar-popup-container{padding:0 0;width:350px;min-width:350px}.tui-full-calendar-popup-detail .tui-full-calendar-section-detail{margin:0 0;color:#6c757d;font-weight:400;padding:0 20px 25px}.tui-full-calendar-popup-detail .tui-full-calendar-section-header{margin:0 0;display:flex;align-items:center;flex-direction:column;justify-content:center;padding:25px 20px 15px}.tui-full-calendar-popup-detail .tui-full-calendar-section-header div{width:100%;display:flex}.tui-full-calendar-content.tui-full-calendar-popup-detail-date{width:100%;display:flex;color:#789;font-weight:500;align-items:center;text-transform:uppercase;height:auto!important;font-size:10px!important}.tui-full-calendar-popup-detail .tui-full-calendar-schedule-private{display:none}.tui-full-calendar-popup-detail .tui-full-calendar-icon.tui-full-calendar-ic-location-b,.tui-full-calendar-popup-detail .tui-full-calendar-icon.tui-full-calendar-ic-state-b{top:-4px}.tui-full-calendar-popup-detail .tui-full-calendar-icon.tui-full-calendar-ic-repeat-b{top:-5px}.tui-full-calendar-popup-detail .tui-full-calendar-icon.tui-full-calendar-calendar-dot{margin-top:2px;margin-left:3px;margin-right:10px}.tui-full-calendar-popup-detail .tui-full-calendar-popup-detail-item-indent{text-indent:-29px;padding-left:29px}.tui-full-calendar-popup-detail .tui-full-calendar-section-button{border-top:1px solid #e5e7eb}.tui-full-calendar-popup-delete,.tui-full-calendar-popup-edit{display:inline;color:#283c50;font-weight:500;line-height:.85;padding:10px 12px;text-transform:uppercase}.calendar-font-icon.ic-location-b,.calendar-font-icon.ic-lock-b,.calendar-font-icon.ic-milestone-b,.calendar-font-icon.ic-readonly-b,.calendar-font-icon.ic-repeat-b,.calendar-font-icon.ic-user-b{background:0 0;font-size:12px;font-weight:400;font-family:feather!important}.calendar-font-icon.ic-user-b:before{content:"\ea05"}.calendar-font-icon.ic-lock-b:before{content:"\e98f"}.calendar-font-icon.ic-repeat-b:before{content:"\e9c5"}.calendar-font-icon.ic-readonly-b:before{content:"\e9db"}.calendar-font-icon.ic-location-b:before{content:"\e994"}.calendar-font-icon.ic-milestone-b:before{content:"\e96b"}.tui-full-calendar-section-button .tui-full-calendar-content{top:0}
+/*# sourceMappingURL=tui-theme.min.css.map */
diff --git a/dasena-web/public/assets/admin/vendors/css/tui-theme.min.css.map b/dasena-web/public/assets/admin/vendors/css/tui-theme.min.css.map
new file mode 100644
index 0000000..07e1bf0
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/css/tui-theme.min.css.map
@@ -0,0 +1 @@
+{"version":3,"sources":["tui-theme.min.css"],"names":[],"mappings":"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","file":"tui-theme.min.css","sourcesContent":[]}
\ No newline at end of file
diff --git a/dasena-web/public/assets/admin/vendors/css/tui-time-picker.min.css b/dasena-web/public/assets/admin/vendors/css/tui-time-picker.min.css
new file mode 100644
index 0000000..bec877c
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/css/tui-time-picker.min.css
@@ -0,0 +1,7 @@
+@charset 'utf-8';/*!
+ * TOAST UI Time Picker
+ * @version 2.1.4
+ * @author NHN FE Development Lab
+ * @license MIT
+ */.tui-timepicker *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.tui-timepicker button{border-radius:0}.tui-timepicker input,.tui-timepicker select{font-weight:400}.tui-ico-colon,.tui-ico-t-btn,.tui-ico-time,.tui-timepicker-input-radio{overflow:hidden;display:inline-block;width:1px;height:1px;line-height:300px;background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAC8AAAA+CAYAAAC7rUKSAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpERjdGMzkzODVEQkRFNjExQkVCMjlDOUFDNzZDM0E5NCIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo1ODVCRTc4NkM2QkQxMUU2OTgzMzhGQjZFMjcyMTQ1RSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo1ODVCRTc4NUM2QkQxMUU2OTgzMzhGQjZFMjcyMTQ1RSIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M2IChXaW5kb3dzKSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjFERENDMTc0QjlDNkU2MTE5OTc0QjIwOTY3QkQzNjZBIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkRGN0YzOTM4NURCREU2MTFCRUIyOUM5QUM3NkMzQTk0Ii8+IDwvcmRmOkRlc2NyaXB0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) no-repeat}.tui-timepicker .tui-timepicker-select{-webkit-appearance:none;-moz-appearance:none;-o-appearance:none;appearance:none;border-radius:0}.tui-timepicker .tui-timepicker-select::-ms-expand{display:none}.tui-calendar-select-content .tui-timepicker{border:0;margin:0 auto}.tui-timepicker input{font-size:16px;text-align:center;font-weight:400}.tui-timepicker{position:relative;top:-1px;padding:30px 20px;font-weight:700;border:1px solid #7587a7;background:#fff;text-align:center}.tui-timepicker-row{width:100%;font-size:0}.tui-timepicker-column{display:inline-block;vertical-align:middle}.tui-timepicker-btn-area{position:relative;height:88px;padding:19px 0}.tui-timepicker-spinbox{width:52px}.tui-timepicker-selectbox+.tui-timepicker-selectbox{padding-left:5px}.tui-timepicker-btn-area .tui-timepicker-spinbox-input{width:100%;height:100%;line-height:46px;border:1px solid #e5e7eb}.tui-timepicker-btn{position:absolute;left:0;width:100%;height:20px;background-color:transparent;border:1px solid #e5e7eb;cursor:pointer}.tui-timepicker-btn:active,.tui-timepicker-btn:focus,.tui-timepicker-btn:hover{background-color:#f4f4f4}.tui-timepicker-btn-up{top:0}.tui-timepicker-btn-down{bottom:0}.tui-timepicker-btn .tui-ico-t-btn{width:13px;height:7px}.tui-timepicker-btn-up .tui-ico-t-btn{background-position:0 -12px}.tui-timepicker-btn-down .tui-ico-t-btn{background-position:0 -21px}.tui-timepicker-colon{width:22px}.tui-timepicker-body .tui-timepicker-colon,.tui-timepicker-footer .tui-timepicker-colon{width:18px}.tui-ico-colon{width:2px;height:7px;background-position:-17px -28px}.tui-timepicker-select{width:52px;height:28px;padding:5px 0 5px 9px;font-size:12px;border:1px solid #e5e7eb;background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAECAYAAACHtL/sAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6Mzk1NDA2RTVCREIxMTFFNjhENTJFMjdDNDQ3RDJCMTEiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6Mzk1NDA2RTZCREIxMTFFNjhENTJFMjdDNDQ3RDJCMTEiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDozOTU0MDZFM0JEQjExMUU2OEQ1MkUyN0M0NDdEMkIxMSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDozOTU0MDZFNEJEQjExMUU2OEQ1MkUyN0M0NDdEMkIxMSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PpZ5HPgAAAAxSURBVHjaYjQ2Nv7PgBswgogzZ87gVMAEU4RLMyHABKUFyNGMbMBHJEOI1gwCAAEGAPSlBRrNcMApAAAAAElFTkSuQmCC) no-repeat;background-position:100% 50%;cursor:pointer}.tui-timepicker-check-lst{list-style:none;padding:0;margin:0}.tui-timepicker-check{margin-top:11px}.tui-timepicker-check:first-child{margin-top:0}.tui-timepicker-checkbox{padding-left:16px}.tui-timepicker-radio{overflow:hidden;position:relative;text-align:left}.tui-timepicker-radio input{position:absolute;left:-9999px;width:1px;height:1px}.tui-timepicker-radio-label{display:inline-block;padding-left:20px;font-size:12px;line-height:16px;vertical-align:top;color:#7587a7;cursor:pointer}.tui-timepicker-input-radio{position:absolute;display:inline-block;top:0;left:0;width:16px;height:16px;vertical-align:middle;background-position:-31px 0}.tui-timepicker-radio .tui-timepicker-meridiem-checked+.tui-timepicker-radio-label .tui-timepicker-input-radio{background-position:-31px -18px}.tui-timepicker-radio input:disabled+.tui-timepicker-radio-label .tui-timepicker-input-radio{background-position:-31px -36px}.tui-ico-time{width:12px;height:12px;background-position:0 -30px}.tui-timepicker-area{position:relative}.tui-time-input{position:relative;display:inline-block;width:120px;height:28px;border:1px solid #e5e7eb}.tui-time-input input{width:100%;height:100%;padding:0 27px 0 10px;font-size:12px;border:0;color:#283c50;box-sizing:border-box}.tui-time-input .tui-ico-time{position:absolute;top:50%;right:8px;margin:-6px 0 0 0}.tui-time-input.tui-has-focus{border-color:#7587a7}.tui-time-input .tui-ico-time{background-position:0 -30px}.tui-time-input.tui-has-focus .tui-ico-time{background-position:0 -44px}.tui-has-left .tui-timepicker-row,.tui-has-left.tui-timepicker-body{position:relative}.tui-has-left .tui-timepicker-row:after{display:block;clear:both;content:""}.tui-has-left .tui-is-add-picker{float:left;padding:0 5px 0 0}.tui-has-left .tui-timepicker-checkbox{float:left;margin-top:23px;padding:0 16px 0 0}.tui-hidden{display:none}
+/*# sourceMappingURL=tui-time-picker.min.css.map */
diff --git a/dasena-web/public/assets/admin/vendors/css/tui-time-picker.min.css.map b/dasena-web/public/assets/admin/vendors/css/tui-time-picker.min.css.map
new file mode 100644
index 0000000..8211348
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/css/tui-time-picker.min.css.map
@@ -0,0 +1 @@
+{"version":3,"sources":["tui-time-picker.min.css"],"names":[],"mappings":"iBAAA;;;;;AAOA,kBACC,mBAAoB,WACpB,gBAAiB,WACjB,WAAY,WAGb,uBACC,cAAe,EAGhB,sBACA,uBACC,YAAa,IAKd,eAFA,eAGA,cAFA,4BAGC,SAAU,OACV,QAAS,aACT,MAAO,IACP,OAAQ,IACR,YAAa,MACb,WAAY,ojJAAojJ,UAGjkJ,uCACC,mBAAoB,KACpB,gBAAiB,KACjB,cAAe,KACf,WAAY,KACZ,cAAe,EAGhB,mDACC,QAAS,KAGV,6CACC,OAAQ,EACR,OAAQ,EAAE,KAGX,sBACC,UAAW,KACX,WAAY,OACZ,YAAa,IAGd,gBACC,SAAU,SACV,IAAK,KACL,QAAS,KAAK,KACd,YAAa,IACb,OAAQ,IAAI,MAAM,QAClB,WAAY,KACZ,WAAY,OAGb,oBACC,MAAO,KACP,UAAW,EAGZ,uBACC,QAAS,aACT,eAAgB,OAGjB,yBACC,SAAU,SACV,OAAQ,KACR,QAAS,KAAK,EAGf,wBACC,MAAO,KAGR,oDACC,aAAc,IAGf,uDACC,MAAO,KACP,OAAQ,KACR,YAAa,KACb,OAAQ,IAAI,MAAM,QAGnB,oBACC,SAAU,SACV,KAAM,EACN,MAAO,KACP,OAAQ,KACR,iBAAkB,YAClB,OAAQ,IAAI,MAAM,QAClB,OAAQ,QAKT,2BADA,0BADA,0BAGC,iBAAkB,QAGnB,uBACC,IAAK,EAGN,yBACC,OAAQ,EAGT,mCACC,MAAO,KACP,OAAQ,IAGT,sCACC,oBAAqB,EAAE,MAGxB,wCACC,oBAAqB,EAAE,MAGxB,sBACC,MAAO,KAGR,2CACA,6CACC,MAAO,KAGR,eACC,MAAO,IACP,OAAQ,IACR,oBAAqB,MAAM,MAG5B,uBACC,MAAO,KACP,OAAQ,KACR,QAAS,IAAI,EAAE,IAAI,IACnB,UAAW,KACX,OAAQ,IAAI,MAAM,QAClB,WAAY,wxCAAwxC,UACpyC,oBAAqB,KAAK,IAC1B,OAAQ,QAGT,0BACC,WAAY,KACZ,QAAS,EACT,OAAQ,EAGT,sBACC,WAAY,KAGb,kCACC,WAAY,EAGb,yBACC,aAAc,KAGf,sBACC,SAAU,OACV,SAAU,SACV,WAAY,KAGb,4BACC,SAAU,SACV,KAAM,QACN,MAAO,IACP,OAAQ,IAGT,4BACC,QAAS,aACT,aAAc,KACd,UAAW,KACX,YAAa,KACb,eAAgB,IAChB,MAAO,QACP,OAAQ,QAGT,4BACC,SAAU,SACV,QAAS,aACT,IAAK,EACL,KAAM,EACN,MAAO,KACP,OAAQ,KACR,eAAgB,OAChB,oBAAqB,MAAM,EAG5B,+GACC,oBAAqB,MAAM,MAG5B,6FACC,oBAAqB,MAAM,MAG5B,cACC,MAAO,KACP,OAAQ,KACR,oBAAqB,EAAE,MAGxB,qBACC,SAAU,SAGX,gBACC,SAAU,SACV,QAAS,aACT,MAAO,MACP,OAAQ,KACR,OAAQ,IAAI,MAAM,QAGnB,sBACC,MAAO,KACP,OAAQ,KACR,QAAS,EAAE,KAAK,EAAE,KAClB,UAAW,KACX,OAAQ,EACR,MAAO,QACP,WAAY,WAGb,8BACC,SAAU,SACV,IAAK,IACL,MAAO,IACP,OAAQ,KAAK,EAAE,EAAE,EAGlB,8BACC,aAAc,QAGf,8BACC,oBAAqB,EAAE,MAGxB,4CACC,oBAAqB,EAAE,MAIxB,kCADA,kCAEC,SAAU,SAGX,wCACC,QAAS,MACT,MAAO,KACP,QAAS,GAGV,iCACC,MAAO,KACP,QAAS,EAAE,IAAI,EAAE,EAGlB,uCACC,MAAO,KACP,WAAY,KACZ,QAAS,EAAE,KAAK,EAAE,EAGnB,YACC,QAAS","file":"tui-time-picker.min.css","sourcesContent":[]}
\ No newline at end of file
diff --git a/dasena-web/public/assets/admin/vendors/css/vendors.min.css b/dasena-web/public/assets/admin/vendors/css/vendors.min.css
new file mode 100644
index 0000000..7ef8424
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/css/vendors.min.css
@@ -0,0 +1,17 @@
+/*!
+ * animate.css -https://daneden.github.io/animate.css/
+ * Version - 3.7.2
+ * Licensed under the MIT license - http://opensource.org/licenses/MIT
+ *
+ * Copyright (c) 2019 Daniel Eden
+ */@keyframes d{0%,20%,53%,80%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1);transform:translateZ(0)}40%,43%{animation-timing-function:cubic-bezier(.755,.05,.855,.06);transform:translate3d(0,-30px,0)}70%{animation-timing-function:cubic-bezier(.755,.05,.855,.06);transform:translate3d(0,-15px,0)}90%{transform:translate3d(0,-4px,0)}}.bounce{animation-name:d;transform-origin:center bottom}@keyframes e{0%,50%,to{opacity:1}25%,75%{opacity:0}}.flash{animation-name:e}@keyframes f{0%{transform:scaleX(1)}50%{transform:scale3d(1.05,1.05,1.05)}to{transform:scaleX(1)}}.pulse{animation-name:f}@keyframes g{0%{transform:scaleX(1)}30%{transform:scale3d(1.25,.75,1)}40%{transform:scale3d(.75,1.25,1)}50%{transform:scale3d(1.15,.85,1)}65%{transform:scale3d(.95,1.05,1)}75%{transform:scale3d(1.05,.95,1)}to{transform:scaleX(1)}}.rubberBand{animation-name:g}@keyframes h{0%,to{transform:translateZ(0)}10%,30%,50%,70%,90%{transform:translate3d(-10px,0,0)}20%,40%,60%,80%{transform:translate3d(10px,0,0)}}.shake{animation-name:h}@keyframes i{0%{transform:translateX(0)}6.5%{transform:translateX(-6px) rotateY(-9deg)}18.5%{transform:translateX(5px) rotateY(7deg)}31.5%{transform:translateX(-3px) rotateY(-5deg)}43.5%{transform:translateX(2px) rotateY(3deg)}50%{transform:translateX(0)}}.headShake{animation-timing-function:ease-in-out;animation-name:i}@keyframes j{20%{transform:rotate(15deg)}40%{transform:rotate(-10deg)}60%{transform:rotate(5deg)}80%{transform:rotate(-5deg)}to{transform:rotate(0)}}.swing{transform-origin:top center;animation-name:j}@keyframes k{0%{transform:scaleX(1)}10%,20%{transform:scale3d(.9,.9,.9) rotate(-3deg)}30%,50%,70%,90%{transform:scale3d(1.1,1.1,1.1) rotate(3deg)}40%,60%,80%{transform:scale3d(1.1,1.1,1.1) rotate(-3deg)}to{transform:scaleX(1)}}.tada{animation-name:k}@keyframes l{0%{transform:translateZ(0)}15%{transform:translate3d(-25%,0,0) rotate(-5deg)}30%{transform:translate3d(20%,0,0) rotate(3deg)}45%{transform:translate3d(-15%,0,0) rotate(-3deg)}60%{transform:translate3d(10%,0,0) rotate(2deg)}75%{transform:translate3d(-5%,0,0) rotate(-1deg)}to{transform:translateZ(0)}}.wobble{animation-name:l}@keyframes m{0%,11.1%,to{transform:translateZ(0)}22.2%{transform:skewX(-12.5deg) skewY(-12.5deg)}33.3%{transform:skewX(6.25deg) skewY(6.25deg)}44.4%{transform:skewX(-3.125deg) skewY(-3.125deg)}55.5%{transform:skewX(1.5625deg) skewY(1.5625deg)}66.6%{transform:skewX(-.78125deg) skewY(-.78125deg)}77.7%{transform:skewX(.390625deg) skewY(.390625deg)}88.8%{transform:skewX(-.1953125deg) skewY(-.1953125deg)}}.jello{animation-name:m;transform-origin:center}@keyframes n{0%{transform:scale(1)}14%{transform:scale(1.3)}28%{transform:scale(1)}42%{transform:scale(1.3)}70%{transform:scale(1)}}.heartBeat{animation-name:n;animation-duration:1.3s;animation-timing-function:ease-in-out}@keyframes o{0%,20%,40%,60%,80%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:scale3d(.3,.3,.3)}20%{transform:scale3d(1.1,1.1,1.1)}40%{transform:scale3d(.9,.9,.9)}60%{opacity:1;transform:scale3d(1.03,1.03,1.03)}80%{transform:scale3d(.97,.97,.97)}to{opacity:1;transform:scaleX(1)}}.bounceIn{animation-duration:.75s;animation-name:o}@keyframes p{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(0,-3000px,0)}60%{opacity:1;transform:translate3d(0,25px,0)}75%{transform:translate3d(0,-10px,0)}90%{transform:translate3d(0,5px,0)}to{transform:translateZ(0)}}.bounceInDown{animation-name:p}@keyframes q{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(-3000px,0,0)}60%{opacity:1;transform:translate3d(25px,0,0)}75%{transform:translate3d(-10px,0,0)}90%{transform:translate3d(5px,0,0)}to{transform:translateZ(0)}}.bounceInLeft{animation-name:q}@keyframes r{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(3000px,0,0)}60%{opacity:1;transform:translate3d(-25px,0,0)}75%{transform:translate3d(10px,0,0)}90%{transform:translate3d(-5px,0,0)}to{transform:translateZ(0)}}.bounceInRight{animation-name:r}@keyframes s{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(0,3000px,0)}60%{opacity:1;transform:translate3d(0,-20px,0)}75%{transform:translate3d(0,10px,0)}90%{transform:translate3d(0,-5px,0)}to{transform:translateZ(0)}}.bounceInUp{animation-name:s}@keyframes t{20%{transform:scale3d(.9,.9,.9)}50%,55%{opacity:1;transform:scale3d(1.1,1.1,1.1)}to{opacity:0;transform:scale3d(.3,.3,.3)}}.bounceOut{animation-duration:.75s;animation-name:t}@keyframes u{20%{transform:translate3d(0,10px,0)}40%,45%{opacity:1;transform:translate3d(0,-20px,0)}to{opacity:0;transform:translate3d(0,2000px,0)}}.bounceOutDown{animation-name:u}@keyframes v{20%{opacity:1;transform:translate3d(20px,0,0)}to{opacity:0;transform:translate3d(-2000px,0,0)}}.bounceOutLeft{animation-name:v}@keyframes w{20%{opacity:1;transform:translate3d(-20px,0,0)}to{opacity:0;transform:translate3d(2000px,0,0)}}.bounceOutRight{animation-name:w}@keyframes x{20%{transform:translate3d(0,-10px,0)}40%,45%{opacity:1;transform:translate3d(0,20px,0)}to{opacity:0;transform:translate3d(0,-2000px,0)}}.bounceOutUp{animation-name:x}@keyframes y{0%{opacity:0}to{opacity:1}}.fadeIn{animation-name:y}@keyframes z{0%{opacity:0;transform:translate3d(0,-100%,0)}to{opacity:1;transform:translateZ(0)}}.fadeInDown{animation-name:z}@keyframes A{0%{opacity:0;transform:translate3d(0,-2000px,0)}to{opacity:1;transform:translateZ(0)}}.fadeInDownBig{animation-name:A}@keyframes B{0%{opacity:0;transform:translate3d(-100%,0,0)}to{opacity:1;transform:translateZ(0)}}.fadeInLeft{animation-name:B}@keyframes C{0%{opacity:0;transform:translate3d(-2000px,0,0)}to{opacity:1;transform:translateZ(0)}}.fadeInLeftBig{animation-name:C}@keyframes D{0%{opacity:0;transform:translate3d(100%,0,0)}to{opacity:1;transform:translateZ(0)}}.fadeInRight{animation-name:D}@keyframes E{0%{opacity:0;transform:translate3d(2000px,0,0)}to{opacity:1;transform:translateZ(0)}}.fadeInRightBig{animation-name:E}@keyframes F{0%{opacity:0;transform:translate3d(0,100%,0)}to{opacity:1;transform:translateZ(0)}}.fadeInUp{animation-name:F}@keyframes G{0%{opacity:0;transform:translate3d(0,2000px,0)}to{opacity:1;transform:translateZ(0)}}.fadeInUpBig{animation-name:G}@keyframes H{0%{opacity:1}to{opacity:0}}.fadeOut{animation-name:H}@keyframes I{0%{opacity:1}to{opacity:0;transform:translate3d(0,100%,0)}}.fadeOutDown{animation-name:I}@keyframes J{0%{opacity:1}to{opacity:0;transform:translate3d(0,2000px,0)}}.fadeOutDownBig{animation-name:J}@keyframes K{0%{opacity:1}to{opacity:0;transform:translate3d(-100%,0,0)}}.fadeOutLeft{animation-name:K}@keyframes L{0%{opacity:1}to{opacity:0;transform:translate3d(-2000px,0,0)}}.fadeOutLeftBig{animation-name:L}@keyframes M{0%{opacity:1}to{opacity:0;transform:translate3d(100%,0,0)}}.fadeOutRight{animation-name:M}@keyframes N{0%{opacity:1}to{opacity:0;transform:translate3d(2000px,0,0)}}.fadeOutRightBig{animation-name:N}@keyframes O{0%{opacity:1}to{opacity:0;transform:translate3d(0,-100%,0)}}.fadeOutUp{animation-name:O}@keyframes P{0%{opacity:1}to{opacity:0;transform:translate3d(0,-2000px,0)}}.fadeOutUpBig{animation-name:P}@keyframes Q{0%{transform:perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);animation-timing-function:ease-out}40%{transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);animation-timing-function:ease-out}50%{transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);animation-timing-function:ease-in}80%{transform:perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0);animation-timing-function:ease-in}to{transform:perspective(400px) scaleX(1) translateZ(0) rotateY(0);animation-timing-function:ease-in}}.animated.flip{-webkit-backface-visibility:visible;backface-visibility:visible;animation-name:Q}@keyframes R{0%{transform:perspective(400px) rotateX(90deg);animation-timing-function:ease-in;opacity:0}40%{transform:perspective(400px) rotateX(-20deg);animation-timing-function:ease-in}60%{transform:perspective(400px) rotateX(10deg);opacity:1}80%{transform:perspective(400px) rotateX(-5deg)}to{transform:perspective(400px)}}.flipInX{-webkit-backface-visibility:visible!important;backface-visibility:visible!important;animation-name:R}@keyframes S{0%{transform:perspective(400px) rotateY(90deg);animation-timing-function:ease-in;opacity:0}40%{transform:perspective(400px) rotateY(-20deg);animation-timing-function:ease-in}60%{transform:perspective(400px) rotateY(10deg);opacity:1}80%{transform:perspective(400px) rotateY(-5deg)}to{transform:perspective(400px)}}.flipInY{-webkit-backface-visibility:visible!important;backface-visibility:visible!important;animation-name:S}@keyframes T{0%{transform:perspective(400px)}30%{transform:perspective(400px) rotateX(-20deg);opacity:1}to{transform:perspective(400px) rotateX(90deg);opacity:0}}.flipOutX{animation-duration:.75s;animation-name:T;-webkit-backface-visibility:visible!important;backface-visibility:visible!important}@keyframes U{0%{transform:perspective(400px)}30%{transform:perspective(400px) rotateY(-15deg);opacity:1}to{transform:perspective(400px) rotateY(90deg);opacity:0}}.flipOutY{animation-duration:.75s;-webkit-backface-visibility:visible!important;backface-visibility:visible!important;animation-name:U}@keyframes V{0%{transform:translate3d(100%,0,0) skewX(-30deg);opacity:0}60%{transform:skewX(20deg);opacity:1}80%{transform:skewX(-5deg)}to{transform:translateZ(0)}}.lightSpeedIn{animation-name:V;animation-timing-function:ease-out}@keyframes W{0%{opacity:1}to{transform:translate3d(100%,0,0) skewX(30deg);opacity:0}}.lightSpeedOut{animation-name:W;animation-timing-function:ease-in}@keyframes X{0%{transform-origin:center;transform:rotate(-200deg);opacity:0}to{transform-origin:center;transform:translateZ(0);opacity:1}}.rotateIn{animation-name:X}@keyframes Y{0%{transform-origin:left bottom;transform:rotate(-45deg);opacity:0}to{transform-origin:left bottom;transform:translateZ(0);opacity:1}}.rotateInDownLeft{animation-name:Y}@keyframes Z{0%{transform-origin:right bottom;transform:rotate(45deg);opacity:0}to{transform-origin:right bottom;transform:translateZ(0);opacity:1}}.rotateInDownRight{animation-name:Z}@keyframes ab{0%{transform-origin:left bottom;transform:rotate(45deg);opacity:0}to{transform-origin:left bottom;transform:translateZ(0);opacity:1}}.rotateInUpLeft{animation-name:ab}@keyframes bb{0%{transform-origin:right bottom;transform:rotate(-90deg);opacity:0}to{transform-origin:right bottom;transform:translateZ(0);opacity:1}}.rotateInUpRight{animation-name:bb}@keyframes cb{0%{transform-origin:center;opacity:1}to{transform-origin:center;transform:rotate(200deg);opacity:0}}.rotateOut{animation-name:cb}@keyframes db{0%{transform-origin:left bottom;opacity:1}to{transform-origin:left bottom;transform:rotate(45deg);opacity:0}}.rotateOutDownLeft{animation-name:db}@keyframes eb{0%{transform-origin:right bottom;opacity:1}to{transform-origin:right bottom;transform:rotate(-45deg);opacity:0}}.rotateOutDownRight{animation-name:eb}@keyframes fb{0%{transform-origin:left bottom;opacity:1}to{transform-origin:left bottom;transform:rotate(-45deg);opacity:0}}.rotateOutUpLeft{animation-name:fb}@keyframes gb{0%{transform-origin:right bottom;opacity:1}to{transform-origin:right bottom;transform:rotate(90deg);opacity:0}}.rotateOutUpRight{animation-name:gb}@keyframes hb{0%{transform-origin:top left;animation-timing-function:ease-in-out}20%,60%{transform:rotate(80deg);transform-origin:top left;animation-timing-function:ease-in-out}40%,80%{transform:rotate(60deg);transform-origin:top left;animation-timing-function:ease-in-out;opacity:1}to{transform:translate3d(0,700px,0);opacity:0}}.hinge{animation-duration:2s;animation-name:hb}@keyframes ib{0%{opacity:0;transform:scale(.1) rotate(30deg);transform-origin:center bottom}50%{transform:rotate(-10deg)}70%{transform:rotate(3deg)}to{opacity:1;transform:scale(1)}}.jackInTheBox{animation-name:ib}@keyframes jb{0%{opacity:0;transform:translate3d(-100%,0,0) rotate(-120deg)}to{opacity:1;transform:translateZ(0)}}.rollIn{animation-name:jb}@keyframes kb{0%{opacity:1}to{opacity:0;transform:translate3d(100%,0,0) rotate(120deg)}}.rollOut{animation-name:kb}@keyframes lb{0%{opacity:0;transform:scale3d(.3,.3,.3)}50%{opacity:1}}.zoomIn{animation-name:lb}@keyframes mb{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,60px,0);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.zoomInDown{animation-name:mb}@keyframes nb{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(10px,0,0);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.zoomInLeft{animation-name:nb}@keyframes ob{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.zoomInRight{animation-name:ob}@keyframes pb{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.zoomInUp{animation-name:pb}@keyframes qb{0%{opacity:1}50%{opacity:0;transform:scale3d(.3,.3,.3)}to{opacity:0}}.zoomOut{animation-name:qb}@keyframes rb{40%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);transform-origin:center bottom;animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.zoomOutDown{animation-name:rb}@keyframes sb{40%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(42px,0,0)}to{opacity:0;transform:scale(.1) translate3d(-2000px,0,0);transform-origin:left center}}.zoomOutLeft{animation-name:sb}@keyframes tb{40%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(-42px,0,0)}to{opacity:0;transform:scale(.1) translate3d(2000px,0,0);transform-origin:right center}}.zoomOutRight{animation-name:tb}@keyframes ub{40%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,60px,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);transform-origin:center bottom;animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.zoomOutUp{animation-name:ub}@keyframes vb{0%{transform:translate3d(0,-100%,0);visibility:visible}to{transform:translateZ(0)}}.slideInDown{animation-name:vb}@keyframes wb{0%{transform:translate3d(-100%,0,0);visibility:visible}to{transform:translateZ(0)}}.slideInLeft{animation-name:wb}@keyframes xb{0%{transform:translate3d(100%,0,0);visibility:visible}to{transform:translateZ(0)}}.slideInRight{animation-name:xb}@keyframes yb{0%{transform:translate3d(0,100%,0);visibility:visible}to{transform:translateZ(0)}}.slideInUp{animation-name:yb}@keyframes zb{0%{transform:translateZ(0)}to{visibility:hidden;transform:translate3d(0,100%,0)}}.slideOutDown{animation-name:zb}@keyframes Ab{0%{transform:translateZ(0)}to{visibility:hidden;transform:translate3d(-100%,0,0)}}.slideOutLeft{animation-name:Ab}@keyframes Bb{0%{transform:translateZ(0)}to{visibility:hidden;transform:translate3d(100%,0,0)}}.slideOutRight{animation-name:Bb}@keyframes Cb{0%{transform:translateZ(0)}to{visibility:hidden;transform:translate3d(0,-100%,0)}}.slideOutUp{animation-name:Cb}.animated{animation-duration:1s;animation-fill-mode:both}.animated.infinite{animation-iteration-count:infinite}.animated.delay-1s{animation-delay:1s}.animated.delay-2s{animation-delay:2s}.animated.delay-3s{animation-delay:3s}.animated.delay-4s{animation-delay:4s}.animated.delay-5s{animation-delay:5s}.animated.fast{animation-duration:.8s}.animated.faster{animation-duration:.5s}.animated.slow{animation-duration:2s}.animated.slower{animation-duration:3s}@media (prefers-reduced-motion:reduce),(print){.animated{animation-duration:1ms!important;transition-duration:1ms!important;animation-iteration-count:1!important}}.ps{overflow:hidden!important;overflow-anchor:none;-ms-overflow-style:none;touch-action:auto;-ms-touch-action:auto}.ps__rail-x{height:15px;bottom:0}.ps__rail-x,.ps__rail-y{display:none;opacity:0;transition:background-color .2s linear,opacity .2s linear;-webkit-transition:background-color .2s linear,opacity .2s linear;position:absolute}.ps__rail-y{width:15px;right:0}.ps--active-x>.ps__rail-x,.ps--active-y>.ps__rail-y{display:block;background-color:transparent}.ps--focus>.ps__rail-x,.ps--focus>.ps__rail-y,.ps--scrolling-x>.ps__rail-x,.ps--scrolling-y>.ps__rail-y,.ps:hover>.ps__rail-x,.ps:hover>.ps__rail-y{opacity:.5}.ps .ps__rail-x.ps--clicking,.ps .ps__rail-x:focus,.ps .ps__rail-x:hover,.ps .ps__rail-y.ps--clicking,.ps .ps__rail-y:focus,.ps .ps__rail-y:hover{background-color:#eee;opacity:.9}.ps__thumb-x{transition:background-color .2s linear,height .2s ease-in-out;-webkit-transition:background-color .2s linear,height .2s ease-in-out;height:6px;bottom:2px}.ps__thumb-x,.ps__thumb-y{background-color:#aaa;border-radius:6px;position:absolute}.ps__thumb-y{transition:background-color .2s linear,width .2s ease-in-out;-webkit-transition:background-color .2s linear,width .2s ease-in-out;width:5px;right:2px}.ps__rail-x.ps--clicking .ps__thumb-x,.ps__rail-x:focus>.ps__thumb-x,.ps__rail-x:hover>.ps__thumb-x{background-color:#999;height:11px}.ps__rail-y.ps--clicking .ps__thumb-y,.ps__rail-y:focus>.ps__thumb-y,.ps__rail-y:hover>.ps__thumb-y{background-color:#999;width:11px}@supports (-ms-overflow-style:none){.ps{overflow:auto!important}}@media (-ms-high-contrast:none),screen and (-ms-high-contrast:active){.ps{overflow:auto!important}}
+@font-face{font-display:block;font-family:bootstrap-icons;src:url(../fonts/bootstrap-icons.woff2?8d200481aa7f02a2d63a331fc782cfaf) format("woff2"),url(../fonts/bootstrap-icons.woff?8d200481aa7f02a2d63a331fc782cfaf) format("woff")}.bi::before,[class*=" bi-"]::before,[class^=bi-]::before{display:inline-block;font-family:bootstrap-icons!important;font-style:normal;font-weight:400!important;font-variant:normal;text-transform:none;line-height:1;vertical-align:-.125em;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.bi-123::before{content:"\f67f"}.bi-alarm-fill::before{content:"\f101"}.bi-alarm::before{content:"\f102"}.bi-align-bottom::before{content:"\f103"}.bi-align-center::before{content:"\f104"}.bi-align-end::before{content:"\f105"}.bi-align-middle::before{content:"\f106"}.bi-align-start::before{content:"\f107"}.bi-align-top::before{content:"\f108"}.bi-alt::before{content:"\f109"}.bi-app-indicator::before{content:"\f10a"}.bi-app::before{content:"\f10b"}.bi-archive-fill::before{content:"\f10c"}.bi-archive::before{content:"\f10d"}.bi-arrow-90deg-down::before{content:"\f10e"}.bi-arrow-90deg-left::before{content:"\f10f"}.bi-arrow-90deg-right::before{content:"\f110"}.bi-arrow-90deg-up::before{content:"\f111"}.bi-arrow-bar-down::before{content:"\f112"}.bi-arrow-bar-left::before{content:"\f113"}.bi-arrow-bar-right::before{content:"\f114"}.bi-arrow-bar-up::before{content:"\f115"}.bi-arrow-clockwise::before{content:"\f116"}.bi-arrow-counterclockwise::before{content:"\f117"}.bi-arrow-down-circle-fill::before{content:"\f118"}.bi-arrow-down-circle::before{content:"\f119"}.bi-arrow-down-left-circle-fill::before{content:"\f11a"}.bi-arrow-down-left-circle::before{content:"\f11b"}.bi-arrow-down-left-square-fill::before{content:"\f11c"}.bi-arrow-down-left-square::before{content:"\f11d"}.bi-arrow-down-left::before{content:"\f11e"}.bi-arrow-down-right-circle-fill::before{content:"\f11f"}.bi-arrow-down-right-circle::before{content:"\f120"}.bi-arrow-down-right-square-fill::before{content:"\f121"}.bi-arrow-down-right-square::before{content:"\f122"}.bi-arrow-down-right::before{content:"\f123"}.bi-arrow-down-short::before{content:"\f124"}.bi-arrow-down-square-fill::before{content:"\f125"}.bi-arrow-down-square::before{content:"\f126"}.bi-arrow-down-up::before{content:"\f127"}.bi-arrow-down::before{content:"\f128"}.bi-arrow-left-circle-fill::before{content:"\f129"}.bi-arrow-left-circle::before{content:"\f12a"}.bi-arrow-left-right::before{content:"\f12b"}.bi-arrow-left-short::before{content:"\f12c"}.bi-arrow-left-square-fill::before{content:"\f12d"}.bi-arrow-left-square::before{content:"\f12e"}.bi-arrow-left::before{content:"\f12f"}.bi-arrow-repeat::before{content:"\f130"}.bi-arrow-return-left::before{content:"\f131"}.bi-arrow-return-right::before{content:"\f132"}.bi-arrow-right-circle-fill::before{content:"\f133"}.bi-arrow-right-circle::before{content:"\f134"}.bi-arrow-right-short::before{content:"\f135"}.bi-arrow-right-square-fill::before{content:"\f136"}.bi-arrow-right-square::before{content:"\f137"}.bi-arrow-right::before{content:"\f138"}.bi-arrow-up-circle-fill::before{content:"\f139"}.bi-arrow-up-circle::before{content:"\f13a"}.bi-arrow-up-left-circle-fill::before{content:"\f13b"}.bi-arrow-up-left-circle::before{content:"\f13c"}.bi-arrow-up-left-square-fill::before{content:"\f13d"}.bi-arrow-up-left-square::before{content:"\f13e"}.bi-arrow-up-left::before{content:"\f13f"}.bi-arrow-up-right-circle-fill::before{content:"\f140"}.bi-arrow-up-right-circle::before{content:"\f141"}.bi-arrow-up-right-square-fill::before{content:"\f142"}.bi-arrow-up-right-square::before{content:"\f143"}.bi-arrow-up-right::before{content:"\f144"}.bi-arrow-up-short::before{content:"\f145"}.bi-arrow-up-square-fill::before{content:"\f146"}.bi-arrow-up-square::before{content:"\f147"}.bi-arrow-up::before{content:"\f148"}.bi-arrows-angle-contract::before{content:"\f149"}.bi-arrows-angle-expand::before{content:"\f14a"}.bi-arrows-collapse::before{content:"\f14b"}.bi-arrows-expand::before{content:"\f14c"}.bi-arrows-fullscreen::before{content:"\f14d"}.bi-arrows-move::before{content:"\f14e"}.bi-aspect-ratio-fill::before{content:"\f14f"}.bi-aspect-ratio::before{content:"\f150"}.bi-asterisk::before{content:"\f151"}.bi-at::before{content:"\f152"}.bi-award-fill::before{content:"\f153"}.bi-award::before{content:"\f154"}.bi-back::before{content:"\f155"}.bi-backspace-fill::before{content:"\f156"}.bi-backspace-reverse-fill::before{content:"\f157"}.bi-backspace-reverse::before{content:"\f158"}.bi-backspace::before{content:"\f159"}.bi-badge-3d-fill::before{content:"\f15a"}.bi-badge-3d::before{content:"\f15b"}.bi-badge-4k-fill::before{content:"\f15c"}.bi-badge-4k::before{content:"\f15d"}.bi-badge-8k-fill::before{content:"\f15e"}.bi-badge-8k::before{content:"\f15f"}.bi-badge-ad-fill::before{content:"\f160"}.bi-badge-ad::before{content:"\f161"}.bi-badge-ar-fill::before{content:"\f162"}.bi-badge-ar::before{content:"\f163"}.bi-badge-cc-fill::before{content:"\f164"}.bi-badge-cc::before{content:"\f165"}.bi-badge-hd-fill::before{content:"\f166"}.bi-badge-hd::before{content:"\f167"}.bi-badge-tm-fill::before{content:"\f168"}.bi-badge-tm::before{content:"\f169"}.bi-badge-vo-fill::before{content:"\f16a"}.bi-badge-vo::before{content:"\f16b"}.bi-badge-vr-fill::before{content:"\f16c"}.bi-badge-vr::before{content:"\f16d"}.bi-badge-wc-fill::before{content:"\f16e"}.bi-badge-wc::before{content:"\f16f"}.bi-bag-check-fill::before{content:"\f170"}.bi-bag-check::before{content:"\f171"}.bi-bag-dash-fill::before{content:"\f172"}.bi-bag-dash::before{content:"\f173"}.bi-bag-fill::before{content:"\f174"}.bi-bag-plus-fill::before{content:"\f175"}.bi-bag-plus::before{content:"\f176"}.bi-bag-x-fill::before{content:"\f177"}.bi-bag-x::before{content:"\f178"}.bi-bag::before{content:"\f179"}.bi-bar-chart-fill::before{content:"\f17a"}.bi-bar-chart-line-fill::before{content:"\f17b"}.bi-bar-chart-line::before{content:"\f17c"}.bi-bar-chart-steps::before{content:"\f17d"}.bi-bar-chart::before{content:"\f17e"}.bi-basket-fill::before{content:"\f17f"}.bi-basket::before{content:"\f180"}.bi-basket2-fill::before{content:"\f181"}.bi-basket2::before{content:"\f182"}.bi-basket3-fill::before{content:"\f183"}.bi-basket3::before{content:"\f184"}.bi-battery-charging::before{content:"\f185"}.bi-battery-full::before{content:"\f186"}.bi-battery-half::before{content:"\f187"}.bi-battery::before{content:"\f188"}.bi-bell-fill::before{content:"\f189"}.bi-bell::before{content:"\f18a"}.bi-bezier::before{content:"\f18b"}.bi-bezier2::before{content:"\f18c"}.bi-bicycle::before{content:"\f18d"}.bi-binoculars-fill::before{content:"\f18e"}.bi-binoculars::before{content:"\f18f"}.bi-blockquote-left::before{content:"\f190"}.bi-blockquote-right::before{content:"\f191"}.bi-book-fill::before{content:"\f192"}.bi-book-half::before{content:"\f193"}.bi-book::before{content:"\f194"}.bi-bookmark-check-fill::before{content:"\f195"}.bi-bookmark-check::before{content:"\f196"}.bi-bookmark-dash-fill::before{content:"\f197"}.bi-bookmark-dash::before{content:"\f198"}.bi-bookmark-fill::before{content:"\f199"}.bi-bookmark-heart-fill::before{content:"\f19a"}.bi-bookmark-heart::before{content:"\f19b"}.bi-bookmark-plus-fill::before{content:"\f19c"}.bi-bookmark-plus::before{content:"\f19d"}.bi-bookmark-star-fill::before{content:"\f19e"}.bi-bookmark-star::before{content:"\f19f"}.bi-bookmark-x-fill::before{content:"\f1a0"}.bi-bookmark-x::before{content:"\f1a1"}.bi-bookmark::before{content:"\f1a2"}.bi-bookmarks-fill::before{content:"\f1a3"}.bi-bookmarks::before{content:"\f1a4"}.bi-bookshelf::before{content:"\f1a5"}.bi-bootstrap-fill::before{content:"\f1a6"}.bi-bootstrap-reboot::before{content:"\f1a7"}.bi-bootstrap::before{content:"\f1a8"}.bi-border-all::before{content:"\f1a9"}.bi-border-bottom::before{content:"\f1aa"}.bi-border-center::before{content:"\f1ab"}.bi-border-inner::before{content:"\f1ac"}.bi-border-left::before{content:"\f1ad"}.bi-border-middle::before{content:"\f1ae"}.bi-border-outer::before{content:"\f1af"}.bi-border-right::before{content:"\f1b0"}.bi-border-style::before{content:"\f1b1"}.bi-border-top::before{content:"\f1b2"}.bi-border-width::before{content:"\f1b3"}.bi-border::before{content:"\f1b4"}.bi-bounding-box-circles::before{content:"\f1b5"}.bi-bounding-box::before{content:"\f1b6"}.bi-box-arrow-down-left::before{content:"\f1b7"}.bi-box-arrow-down-right::before{content:"\f1b8"}.bi-box-arrow-down::before{content:"\f1b9"}.bi-box-arrow-in-down-left::before{content:"\f1ba"}.bi-box-arrow-in-down-right::before{content:"\f1bb"}.bi-box-arrow-in-down::before{content:"\f1bc"}.bi-box-arrow-in-left::before{content:"\f1bd"}.bi-box-arrow-in-right::before{content:"\f1be"}.bi-box-arrow-in-up-left::before{content:"\f1bf"}.bi-box-arrow-in-up-right::before{content:"\f1c0"}.bi-box-arrow-in-up::before{content:"\f1c1"}.bi-box-arrow-left::before{content:"\f1c2"}.bi-box-arrow-right::before{content:"\f1c3"}.bi-box-arrow-up-left::before{content:"\f1c4"}.bi-box-arrow-up-right::before{content:"\f1c5"}.bi-box-arrow-up::before{content:"\f1c6"}.bi-box-seam::before{content:"\f1c7"}.bi-box::before{content:"\f1c8"}.bi-braces::before{content:"\f1c9"}.bi-bricks::before{content:"\f1ca"}.bi-briefcase-fill::before{content:"\f1cb"}.bi-briefcase::before{content:"\f1cc"}.bi-brightness-alt-high-fill::before{content:"\f1cd"}.bi-brightness-alt-high::before{content:"\f1ce"}.bi-brightness-alt-low-fill::before{content:"\f1cf"}.bi-brightness-alt-low::before{content:"\f1d0"}.bi-brightness-high-fill::before{content:"\f1d1"}.bi-brightness-high::before{content:"\f1d2"}.bi-brightness-low-fill::before{content:"\f1d3"}.bi-brightness-low::before{content:"\f1d4"}.bi-broadcast-pin::before{content:"\f1d5"}.bi-broadcast::before{content:"\f1d6"}.bi-brush-fill::before{content:"\f1d7"}.bi-brush::before{content:"\f1d8"}.bi-bucket-fill::before{content:"\f1d9"}.bi-bucket::before{content:"\f1da"}.bi-bug-fill::before{content:"\f1db"}.bi-bug::before{content:"\f1dc"}.bi-building::before{content:"\f1dd"}.bi-bullseye::before{content:"\f1de"}.bi-calculator-fill::before{content:"\f1df"}.bi-calculator::before{content:"\f1e0"}.bi-calendar-check-fill::before{content:"\f1e1"}.bi-calendar-check::before{content:"\f1e2"}.bi-calendar-date-fill::before{content:"\f1e3"}.bi-calendar-date::before{content:"\f1e4"}.bi-calendar-day-fill::before{content:"\f1e5"}.bi-calendar-day::before{content:"\f1e6"}.bi-calendar-event-fill::before{content:"\f1e7"}.bi-calendar-event::before{content:"\f1e8"}.bi-calendar-fill::before{content:"\f1e9"}.bi-calendar-minus-fill::before{content:"\f1ea"}.bi-calendar-minus::before{content:"\f1eb"}.bi-calendar-month-fill::before{content:"\f1ec"}.bi-calendar-month::before{content:"\f1ed"}.bi-calendar-plus-fill::before{content:"\f1ee"}.bi-calendar-plus::before{content:"\f1ef"}.bi-calendar-range-fill::before{content:"\f1f0"}.bi-calendar-range::before{content:"\f1f1"}.bi-calendar-week-fill::before{content:"\f1f2"}.bi-calendar-week::before{content:"\f1f3"}.bi-calendar-x-fill::before{content:"\f1f4"}.bi-calendar-x::before{content:"\f1f5"}.bi-calendar::before{content:"\f1f6"}.bi-calendar2-check-fill::before{content:"\f1f7"}.bi-calendar2-check::before{content:"\f1f8"}.bi-calendar2-date-fill::before{content:"\f1f9"}.bi-calendar2-date::before{content:"\f1fa"}.bi-calendar2-day-fill::before{content:"\f1fb"}.bi-calendar2-day::before{content:"\f1fc"}.bi-calendar2-event-fill::before{content:"\f1fd"}.bi-calendar2-event::before{content:"\f1fe"}.bi-calendar2-fill::before{content:"\f1ff"}.bi-calendar2-minus-fill::before{content:"\f200"}.bi-calendar2-minus::before{content:"\f201"}.bi-calendar2-month-fill::before{content:"\f202"}.bi-calendar2-month::before{content:"\f203"}.bi-calendar2-plus-fill::before{content:"\f204"}.bi-calendar2-plus::before{content:"\f205"}.bi-calendar2-range-fill::before{content:"\f206"}.bi-calendar2-range::before{content:"\f207"}.bi-calendar2-week-fill::before{content:"\f208"}.bi-calendar2-week::before{content:"\f209"}.bi-calendar2-x-fill::before{content:"\f20a"}.bi-calendar2-x::before{content:"\f20b"}.bi-calendar2::before{content:"\f20c"}.bi-calendar3-event-fill::before{content:"\f20d"}.bi-calendar3-event::before{content:"\f20e"}.bi-calendar3-fill::before{content:"\f20f"}.bi-calendar3-range-fill::before{content:"\f210"}.bi-calendar3-range::before{content:"\f211"}.bi-calendar3-week-fill::before{content:"\f212"}.bi-calendar3-week::before{content:"\f213"}.bi-calendar3::before{content:"\f214"}.bi-calendar4-event::before{content:"\f215"}.bi-calendar4-range::before{content:"\f216"}.bi-calendar4-week::before{content:"\f217"}.bi-calendar4::before{content:"\f218"}.bi-camera-fill::before{content:"\f219"}.bi-camera-reels-fill::before{content:"\f21a"}.bi-camera-reels::before{content:"\f21b"}.bi-camera-video-fill::before{content:"\f21c"}.bi-camera-video-off-fill::before{content:"\f21d"}.bi-camera-video-off::before{content:"\f21e"}.bi-camera-video::before{content:"\f21f"}.bi-camera::before{content:"\f220"}.bi-camera2::before{content:"\f221"}.bi-capslock-fill::before{content:"\f222"}.bi-capslock::before{content:"\f223"}.bi-card-checklist::before{content:"\f224"}.bi-card-heading::before{content:"\f225"}.bi-card-image::before{content:"\f226"}.bi-card-list::before{content:"\f227"}.bi-card-text::before{content:"\f228"}.bi-caret-down-fill::before{content:"\f229"}.bi-caret-down-square-fill::before{content:"\f22a"}.bi-caret-down-square::before{content:"\f22b"}.bi-caret-down::before{content:"\f22c"}.bi-caret-left-fill::before{content:"\f22d"}.bi-caret-left-square-fill::before{content:"\f22e"}.bi-caret-left-square::before{content:"\f22f"}.bi-caret-left::before{content:"\f230"}.bi-caret-right-fill::before{content:"\f231"}.bi-caret-right-square-fill::before{content:"\f232"}.bi-caret-right-square::before{content:"\f233"}.bi-caret-right::before{content:"\f234"}.bi-caret-up-fill::before{content:"\f235"}.bi-caret-up-square-fill::before{content:"\f236"}.bi-caret-up-square::before{content:"\f237"}.bi-caret-up::before{content:"\f238"}.bi-cart-check-fill::before{content:"\f239"}.bi-cart-check::before{content:"\f23a"}.bi-cart-dash-fill::before{content:"\f23b"}.bi-cart-dash::before{content:"\f23c"}.bi-cart-fill::before{content:"\f23d"}.bi-cart-plus-fill::before{content:"\f23e"}.bi-cart-plus::before{content:"\f23f"}.bi-cart-x-fill::before{content:"\f240"}.bi-cart-x::before{content:"\f241"}.bi-cart::before{content:"\f242"}.bi-cart2::before{content:"\f243"}.bi-cart3::before{content:"\f244"}.bi-cart4::before{content:"\f245"}.bi-cash-stack::before{content:"\f246"}.bi-cash::before{content:"\f247"}.bi-cast::before{content:"\f248"}.bi-chat-dots-fill::before{content:"\f249"}.bi-chat-dots::before{content:"\f24a"}.bi-chat-fill::before{content:"\f24b"}.bi-chat-left-dots-fill::before{content:"\f24c"}.bi-chat-left-dots::before{content:"\f24d"}.bi-chat-left-fill::before{content:"\f24e"}.bi-chat-left-quote-fill::before{content:"\f24f"}.bi-chat-left-quote::before{content:"\f250"}.bi-chat-left-text-fill::before{content:"\f251"}.bi-chat-left-text::before{content:"\f252"}.bi-chat-left::before{content:"\f253"}.bi-chat-quote-fill::before{content:"\f254"}.bi-chat-quote::before{content:"\f255"}.bi-chat-right-dots-fill::before{content:"\f256"}.bi-chat-right-dots::before{content:"\f257"}.bi-chat-right-fill::before{content:"\f258"}.bi-chat-right-quote-fill::before{content:"\f259"}.bi-chat-right-quote::before{content:"\f25a"}.bi-chat-right-text-fill::before{content:"\f25b"}.bi-chat-right-text::before{content:"\f25c"}.bi-chat-right::before{content:"\f25d"}.bi-chat-square-dots-fill::before{content:"\f25e"}.bi-chat-square-dots::before{content:"\f25f"}.bi-chat-square-fill::before{content:"\f260"}.bi-chat-square-quote-fill::before{content:"\f261"}.bi-chat-square-quote::before{content:"\f262"}.bi-chat-square-text-fill::before{content:"\f263"}.bi-chat-square-text::before{content:"\f264"}.bi-chat-square::before{content:"\f265"}.bi-chat-text-fill::before{content:"\f266"}.bi-chat-text::before{content:"\f267"}.bi-chat::before{content:"\f268"}.bi-check-all::before{content:"\f269"}.bi-check-circle-fill::before{content:"\f26a"}.bi-check-circle::before{content:"\f26b"}.bi-check-square-fill::before{content:"\f26c"}.bi-check-square::before{content:"\f26d"}.bi-check::before{content:"\f26e"}.bi-check2-all::before{content:"\f26f"}.bi-check2-circle::before{content:"\f270"}.bi-check2-square::before{content:"\f271"}.bi-check2::before{content:"\f272"}.bi-chevron-bar-contract::before{content:"\f273"}.bi-chevron-bar-down::before{content:"\f274"}.bi-chevron-bar-expand::before{content:"\f275"}.bi-chevron-bar-left::before{content:"\f276"}.bi-chevron-bar-right::before{content:"\f277"}.bi-chevron-bar-up::before{content:"\f278"}.bi-chevron-compact-down::before{content:"\f279"}.bi-chevron-compact-left::before{content:"\f27a"}.bi-chevron-compact-right::before{content:"\f27b"}.bi-chevron-compact-up::before{content:"\f27c"}.bi-chevron-contract::before{content:"\f27d"}.bi-chevron-double-down::before{content:"\f27e"}.bi-chevron-double-left::before{content:"\f27f"}.bi-chevron-double-right::before{content:"\f280"}.bi-chevron-double-up::before{content:"\f281"}.bi-chevron-down::before{content:"\f282"}.bi-chevron-expand::before{content:"\f283"}.bi-chevron-left::before{content:"\f284"}.bi-chevron-right::before{content:"\f285"}.bi-chevron-up::before{content:"\f286"}.bi-circle-fill::before{content:"\f287"}.bi-circle-half::before{content:"\f288"}.bi-circle-square::before{content:"\f289"}.bi-circle::before{content:"\f28a"}.bi-clipboard-check::before{content:"\f28b"}.bi-clipboard-data::before{content:"\f28c"}.bi-clipboard-minus::before{content:"\f28d"}.bi-clipboard-plus::before{content:"\f28e"}.bi-clipboard-x::before{content:"\f28f"}.bi-clipboard::before{content:"\f290"}.bi-clock-fill::before{content:"\f291"}.bi-clock-history::before{content:"\f292"}.bi-clock::before{content:"\f293"}.bi-cloud-arrow-down-fill::before{content:"\f294"}.bi-cloud-arrow-down::before{content:"\f295"}.bi-cloud-arrow-up-fill::before{content:"\f296"}.bi-cloud-arrow-up::before{content:"\f297"}.bi-cloud-check-fill::before{content:"\f298"}.bi-cloud-check::before{content:"\f299"}.bi-cloud-download-fill::before{content:"\f29a"}.bi-cloud-download::before{content:"\f29b"}.bi-cloud-drizzle-fill::before{content:"\f29c"}.bi-cloud-drizzle::before{content:"\f29d"}.bi-cloud-fill::before{content:"\f29e"}.bi-cloud-fog-fill::before{content:"\f29f"}.bi-cloud-fog::before{content:"\f2a0"}.bi-cloud-fog2-fill::before{content:"\f2a1"}.bi-cloud-fog2::before{content:"\f2a2"}.bi-cloud-hail-fill::before{content:"\f2a3"}.bi-cloud-hail::before{content:"\f2a4"}.bi-cloud-haze-1::before{content:"\f2a5"}.bi-cloud-haze-fill::before{content:"\f2a6"}.bi-cloud-haze::before{content:"\f2a7"}.bi-cloud-haze2-fill::before{content:"\f2a8"}.bi-cloud-lightning-fill::before{content:"\f2a9"}.bi-cloud-lightning-rain-fill::before{content:"\f2aa"}.bi-cloud-lightning-rain::before{content:"\f2ab"}.bi-cloud-lightning::before{content:"\f2ac"}.bi-cloud-minus-fill::before{content:"\f2ad"}.bi-cloud-minus::before{content:"\f2ae"}.bi-cloud-moon-fill::before{content:"\f2af"}.bi-cloud-moon::before{content:"\f2b0"}.bi-cloud-plus-fill::before{content:"\f2b1"}.bi-cloud-plus::before{content:"\f2b2"}.bi-cloud-rain-fill::before{content:"\f2b3"}.bi-cloud-rain-heavy-fill::before{content:"\f2b4"}.bi-cloud-rain-heavy::before{content:"\f2b5"}.bi-cloud-rain::before{content:"\f2b6"}.bi-cloud-slash-fill::before{content:"\f2b7"}.bi-cloud-slash::before{content:"\f2b8"}.bi-cloud-sleet-fill::before{content:"\f2b9"}.bi-cloud-sleet::before{content:"\f2ba"}.bi-cloud-snow-fill::before{content:"\f2bb"}.bi-cloud-snow::before{content:"\f2bc"}.bi-cloud-sun-fill::before{content:"\f2bd"}.bi-cloud-sun::before{content:"\f2be"}.bi-cloud-upload-fill::before{content:"\f2bf"}.bi-cloud-upload::before{content:"\f2c0"}.bi-cloud::before{content:"\f2c1"}.bi-clouds-fill::before{content:"\f2c2"}.bi-clouds::before{content:"\f2c3"}.bi-cloudy-fill::before{content:"\f2c4"}.bi-cloudy::before{content:"\f2c5"}.bi-code-slash::before{content:"\f2c6"}.bi-code-square::before{content:"\f2c7"}.bi-code::before{content:"\f2c8"}.bi-collection-fill::before{content:"\f2c9"}.bi-collection-play-fill::before{content:"\f2ca"}.bi-collection-play::before{content:"\f2cb"}.bi-collection::before{content:"\f2cc"}.bi-columns-gap::before{content:"\f2cd"}.bi-columns::before{content:"\f2ce"}.bi-command::before{content:"\f2cf"}.bi-compass-fill::before{content:"\f2d0"}.bi-compass::before{content:"\f2d1"}.bi-cone-striped::before{content:"\f2d2"}.bi-cone::before{content:"\f2d3"}.bi-controller::before{content:"\f2d4"}.bi-cpu-fill::before{content:"\f2d5"}.bi-cpu::before{content:"\f2d6"}.bi-credit-card-2-back-fill::before{content:"\f2d7"}.bi-credit-card-2-back::before{content:"\f2d8"}.bi-credit-card-2-front-fill::before{content:"\f2d9"}.bi-credit-card-2-front::before{content:"\f2da"}.bi-credit-card-fill::before{content:"\f2db"}.bi-credit-card::before{content:"\f2dc"}.bi-crop::before{content:"\f2dd"}.bi-cup-fill::before{content:"\f2de"}.bi-cup-straw::before{content:"\f2df"}.bi-cup::before{content:"\f2e0"}.bi-cursor-fill::before{content:"\f2e1"}.bi-cursor-text::before{content:"\f2e2"}.bi-cursor::before{content:"\f2e3"}.bi-dash-circle-dotted::before{content:"\f2e4"}.bi-dash-circle-fill::before{content:"\f2e5"}.bi-dash-circle::before{content:"\f2e6"}.bi-dash-square-dotted::before{content:"\f2e7"}.bi-dash-square-fill::before{content:"\f2e8"}.bi-dash-square::before{content:"\f2e9"}.bi-dash::before{content:"\f2ea"}.bi-diagram-2-fill::before{content:"\f2eb"}.bi-diagram-2::before{content:"\f2ec"}.bi-diagram-3-fill::before{content:"\f2ed"}.bi-diagram-3::before{content:"\f2ee"}.bi-diamond-fill::before{content:"\f2ef"}.bi-diamond-half::before{content:"\f2f0"}.bi-diamond::before{content:"\f2f1"}.bi-dice-1-fill::before{content:"\f2f2"}.bi-dice-1::before{content:"\f2f3"}.bi-dice-2-fill::before{content:"\f2f4"}.bi-dice-2::before{content:"\f2f5"}.bi-dice-3-fill::before{content:"\f2f6"}.bi-dice-3::before{content:"\f2f7"}.bi-dice-4-fill::before{content:"\f2f8"}.bi-dice-4::before{content:"\f2f9"}.bi-dice-5-fill::before{content:"\f2fa"}.bi-dice-5::before{content:"\f2fb"}.bi-dice-6-fill::before{content:"\f2fc"}.bi-dice-6::before{content:"\f2fd"}.bi-disc-fill::before{content:"\f2fe"}.bi-disc::before{content:"\f2ff"}.bi-discord::before{content:"\f300"}.bi-display-fill::before{content:"\f301"}.bi-display::before{content:"\f302"}.bi-distribute-horizontal::before{content:"\f303"}.bi-distribute-vertical::before{content:"\f304"}.bi-door-closed-fill::before{content:"\f305"}.bi-door-closed::before{content:"\f306"}.bi-door-open-fill::before{content:"\f307"}.bi-door-open::before{content:"\f308"}.bi-dot::before{content:"\f309"}.bi-download::before{content:"\f30a"}.bi-droplet-fill::before{content:"\f30b"}.bi-droplet-half::before{content:"\f30c"}.bi-droplet::before{content:"\f30d"}.bi-earbuds::before{content:"\f30e"}.bi-easel-fill::before{content:"\f30f"}.bi-easel::before{content:"\f310"}.bi-egg-fill::before{content:"\f311"}.bi-egg-fried::before{content:"\f312"}.bi-egg::before{content:"\f313"}.bi-eject-fill::before{content:"\f314"}.bi-eject::before{content:"\f315"}.bi-emoji-angry-fill::before{content:"\f316"}.bi-emoji-angry::before{content:"\f317"}.bi-emoji-dizzy-fill::before{content:"\f318"}.bi-emoji-dizzy::before{content:"\f319"}.bi-emoji-expressionless-fill::before{content:"\f31a"}.bi-emoji-expressionless::before{content:"\f31b"}.bi-emoji-frown-fill::before{content:"\f31c"}.bi-emoji-frown::before{content:"\f31d"}.bi-emoji-heart-eyes-fill::before{content:"\f31e"}.bi-emoji-heart-eyes::before{content:"\f31f"}.bi-emoji-laughing-fill::before{content:"\f320"}.bi-emoji-laughing::before{content:"\f321"}.bi-emoji-neutral-fill::before{content:"\f322"}.bi-emoji-neutral::before{content:"\f323"}.bi-emoji-smile-fill::before{content:"\f324"}.bi-emoji-smile-upside-down-fill::before{content:"\f325"}.bi-emoji-smile-upside-down::before{content:"\f326"}.bi-emoji-smile::before{content:"\f327"}.bi-emoji-sunglasses-fill::before{content:"\f328"}.bi-emoji-sunglasses::before{content:"\f329"}.bi-emoji-wink-fill::before{content:"\f32a"}.bi-emoji-wink::before{content:"\f32b"}.bi-envelope-fill::before{content:"\f32c"}.bi-envelope-open-fill::before{content:"\f32d"}.bi-envelope-open::before{content:"\f32e"}.bi-envelope::before{content:"\f32f"}.bi-eraser-fill::before{content:"\f330"}.bi-eraser::before{content:"\f331"}.bi-exclamation-circle-fill::before{content:"\f332"}.bi-exclamation-circle::before{content:"\f333"}.bi-exclamation-diamond-fill::before{content:"\f334"}.bi-exclamation-diamond::before{content:"\f335"}.bi-exclamation-octagon-fill::before{content:"\f336"}.bi-exclamation-octagon::before{content:"\f337"}.bi-exclamation-square-fill::before{content:"\f338"}.bi-exclamation-square::before{content:"\f339"}.bi-exclamation-triangle-fill::before{content:"\f33a"}.bi-exclamation-triangle::before{content:"\f33b"}.bi-exclamation::before{content:"\f33c"}.bi-exclude::before{content:"\f33d"}.bi-eye-fill::before{content:"\f33e"}.bi-eye-slash-fill::before{content:"\f33f"}.bi-eye-slash::before{content:"\f340"}.bi-eye::before{content:"\f341"}.bi-eyedropper::before{content:"\f342"}.bi-eyeglasses::before{content:"\f343"}.bi-facebook::before{content:"\f344"}.bi-file-arrow-down-fill::before{content:"\f345"}.bi-file-arrow-down::before{content:"\f346"}.bi-file-arrow-up-fill::before{content:"\f347"}.bi-file-arrow-up::before{content:"\f348"}.bi-file-bar-graph-fill::before{content:"\f349"}.bi-file-bar-graph::before{content:"\f34a"}.bi-file-binary-fill::before{content:"\f34b"}.bi-file-binary::before{content:"\f34c"}.bi-file-break-fill::before{content:"\f34d"}.bi-file-break::before{content:"\f34e"}.bi-file-check-fill::before{content:"\f34f"}.bi-file-check::before{content:"\f350"}.bi-file-code-fill::before{content:"\f351"}.bi-file-code::before{content:"\f352"}.bi-file-diff-fill::before{content:"\f353"}.bi-file-diff::before{content:"\f354"}.bi-file-earmark-arrow-down-fill::before{content:"\f355"}.bi-file-earmark-arrow-down::before{content:"\f356"}.bi-file-earmark-arrow-up-fill::before{content:"\f357"}.bi-file-earmark-arrow-up::before{content:"\f358"}.bi-file-earmark-bar-graph-fill::before{content:"\f359"}.bi-file-earmark-bar-graph::before{content:"\f35a"}.bi-file-earmark-binary-fill::before{content:"\f35b"}.bi-file-earmark-binary::before{content:"\f35c"}.bi-file-earmark-break-fill::before{content:"\f35d"}.bi-file-earmark-break::before{content:"\f35e"}.bi-file-earmark-check-fill::before{content:"\f35f"}.bi-file-earmark-check::before{content:"\f360"}.bi-file-earmark-code-fill::before{content:"\f361"}.bi-file-earmark-code::before{content:"\f362"}.bi-file-earmark-diff-fill::before{content:"\f363"}.bi-file-earmark-diff::before{content:"\f364"}.bi-file-earmark-easel-fill::before{content:"\f365"}.bi-file-earmark-easel::before{content:"\f366"}.bi-file-earmark-excel-fill::before{content:"\f367"}.bi-file-earmark-excel::before{content:"\f368"}.bi-file-earmark-fill::before{content:"\f369"}.bi-file-earmark-font-fill::before{content:"\f36a"}.bi-file-earmark-font::before{content:"\f36b"}.bi-file-earmark-image-fill::before{content:"\f36c"}.bi-file-earmark-image::before{content:"\f36d"}.bi-file-earmark-lock-fill::before{content:"\f36e"}.bi-file-earmark-lock::before{content:"\f36f"}.bi-file-earmark-lock2-fill::before{content:"\f370"}.bi-file-earmark-lock2::before{content:"\f371"}.bi-file-earmark-medical-fill::before{content:"\f372"}.bi-file-earmark-medical::before{content:"\f373"}.bi-file-earmark-minus-fill::before{content:"\f374"}.bi-file-earmark-minus::before{content:"\f375"}.bi-file-earmark-music-fill::before{content:"\f376"}.bi-file-earmark-music::before{content:"\f377"}.bi-file-earmark-person-fill::before{content:"\f378"}.bi-file-earmark-person::before{content:"\f379"}.bi-file-earmark-play-fill::before{content:"\f37a"}.bi-file-earmark-play::before{content:"\f37b"}.bi-file-earmark-plus-fill::before{content:"\f37c"}.bi-file-earmark-plus::before{content:"\f37d"}.bi-file-earmark-post-fill::before{content:"\f37e"}.bi-file-earmark-post::before{content:"\f37f"}.bi-file-earmark-ppt-fill::before{content:"\f380"}.bi-file-earmark-ppt::before{content:"\f381"}.bi-file-earmark-richtext-fill::before{content:"\f382"}.bi-file-earmark-richtext::before{content:"\f383"}.bi-file-earmark-ruled-fill::before{content:"\f384"}.bi-file-earmark-ruled::before{content:"\f385"}.bi-file-earmark-slides-fill::before{content:"\f386"}.bi-file-earmark-slides::before{content:"\f387"}.bi-file-earmark-spreadsheet-fill::before{content:"\f388"}.bi-file-earmark-spreadsheet::before{content:"\f389"}.bi-file-earmark-text-fill::before{content:"\f38a"}.bi-file-earmark-text::before{content:"\f38b"}.bi-file-earmark-word-fill::before{content:"\f38c"}.bi-file-earmark-word::before{content:"\f38d"}.bi-file-earmark-x-fill::before{content:"\f38e"}.bi-file-earmark-x::before{content:"\f38f"}.bi-file-earmark-zip-fill::before{content:"\f390"}.bi-file-earmark-zip::before{content:"\f391"}.bi-file-earmark::before{content:"\f392"}.bi-file-easel-fill::before{content:"\f393"}.bi-file-easel::before{content:"\f394"}.bi-file-excel-fill::before{content:"\f395"}.bi-file-excel::before{content:"\f396"}.bi-file-fill::before{content:"\f397"}.bi-file-font-fill::before{content:"\f398"}.bi-file-font::before{content:"\f399"}.bi-file-image-fill::before{content:"\f39a"}.bi-file-image::before{content:"\f39b"}.bi-file-lock-fill::before{content:"\f39c"}.bi-file-lock::before{content:"\f39d"}.bi-file-lock2-fill::before{content:"\f39e"}.bi-file-lock2::before{content:"\f39f"}.bi-file-medical-fill::before{content:"\f3a0"}.bi-file-medical::before{content:"\f3a1"}.bi-file-minus-fill::before{content:"\f3a2"}.bi-file-minus::before{content:"\f3a3"}.bi-file-music-fill::before{content:"\f3a4"}.bi-file-music::before{content:"\f3a5"}.bi-file-person-fill::before{content:"\f3a6"}.bi-file-person::before{content:"\f3a7"}.bi-file-play-fill::before{content:"\f3a8"}.bi-file-play::before{content:"\f3a9"}.bi-file-plus-fill::before{content:"\f3aa"}.bi-file-plus::before{content:"\f3ab"}.bi-file-post-fill::before{content:"\f3ac"}.bi-file-post::before{content:"\f3ad"}.bi-file-ppt-fill::before{content:"\f3ae"}.bi-file-ppt::before{content:"\f3af"}.bi-file-richtext-fill::before{content:"\f3b0"}.bi-file-richtext::before{content:"\f3b1"}.bi-file-ruled-fill::before{content:"\f3b2"}.bi-file-ruled::before{content:"\f3b3"}.bi-file-slides-fill::before{content:"\f3b4"}.bi-file-slides::before{content:"\f3b5"}.bi-file-spreadsheet-fill::before{content:"\f3b6"}.bi-file-spreadsheet::before{content:"\f3b7"}.bi-file-text-fill::before{content:"\f3b8"}.bi-file-text::before{content:"\f3b9"}.bi-file-word-fill::before{content:"\f3ba"}.bi-file-word::before{content:"\f3bb"}.bi-file-x-fill::before{content:"\f3bc"}.bi-file-x::before{content:"\f3bd"}.bi-file-zip-fill::before{content:"\f3be"}.bi-file-zip::before{content:"\f3bf"}.bi-file::before{content:"\f3c0"}.bi-files-alt::before{content:"\f3c1"}.bi-files::before{content:"\f3c2"}.bi-film::before{content:"\f3c3"}.bi-filter-circle-fill::before{content:"\f3c4"}.bi-filter-circle::before{content:"\f3c5"}.bi-filter-left::before{content:"\f3c6"}.bi-filter-right::before{content:"\f3c7"}.bi-filter-square-fill::before{content:"\f3c8"}.bi-filter-square::before{content:"\f3c9"}.bi-filter::before{content:"\f3ca"}.bi-flag-fill::before{content:"\f3cb"}.bi-flag::before{content:"\f3cc"}.bi-flower1::before{content:"\f3cd"}.bi-flower2::before{content:"\f3ce"}.bi-flower3::before{content:"\f3cf"}.bi-folder-check::before{content:"\f3d0"}.bi-folder-fill::before{content:"\f3d1"}.bi-folder-minus::before{content:"\f3d2"}.bi-folder-plus::before{content:"\f3d3"}.bi-folder-symlink-fill::before{content:"\f3d4"}.bi-folder-symlink::before{content:"\f3d5"}.bi-folder-x::before{content:"\f3d6"}.bi-folder::before{content:"\f3d7"}.bi-folder2-open::before{content:"\f3d8"}.bi-folder2::before{content:"\f3d9"}.bi-fonts::before{content:"\f3da"}.bi-forward-fill::before{content:"\f3db"}.bi-forward::before{content:"\f3dc"}.bi-front::before{content:"\f3dd"}.bi-fullscreen-exit::before{content:"\f3de"}.bi-fullscreen::before{content:"\f3df"}.bi-funnel-fill::before{content:"\f3e0"}.bi-funnel::before{content:"\f3e1"}.bi-gear-fill::before{content:"\f3e2"}.bi-gear-wide-connected::before{content:"\f3e3"}.bi-gear-wide::before{content:"\f3e4"}.bi-gear::before{content:"\f3e5"}.bi-gem::before{content:"\f3e6"}.bi-geo-alt-fill::before{content:"\f3e7"}.bi-geo-alt::before{content:"\f3e8"}.bi-geo-fill::before{content:"\f3e9"}.bi-geo::before{content:"\f3ea"}.bi-gift-fill::before{content:"\f3eb"}.bi-gift::before{content:"\f3ec"}.bi-github::before{content:"\f3ed"}.bi-globe::before{content:"\f3ee"}.bi-globe2::before{content:"\f3ef"}.bi-google::before{content:"\f3f0"}.bi-graph-down::before{content:"\f3f1"}.bi-graph-up::before{content:"\f3f2"}.bi-grid-1x2-fill::before{content:"\f3f3"}.bi-grid-1x2::before{content:"\f3f4"}.bi-grid-3x2-gap-fill::before{content:"\f3f5"}.bi-grid-3x2-gap::before{content:"\f3f6"}.bi-grid-3x2::before{content:"\f3f7"}.bi-grid-3x3-gap-fill::before{content:"\f3f8"}.bi-grid-3x3-gap::before{content:"\f3f9"}.bi-grid-3x3::before{content:"\f3fa"}.bi-grid-fill::before{content:"\f3fb"}.bi-grid::before{content:"\f3fc"}.bi-grip-horizontal::before{content:"\f3fd"}.bi-grip-vertical::before{content:"\f3fe"}.bi-hammer::before{content:"\f3ff"}.bi-hand-index-fill::before{content:"\f400"}.bi-hand-index-thumb-fill::before{content:"\f401"}.bi-hand-index-thumb::before{content:"\f402"}.bi-hand-index::before{content:"\f403"}.bi-hand-thumbs-down-fill::before{content:"\f404"}.bi-hand-thumbs-down::before{content:"\f405"}.bi-hand-thumbs-up-fill::before{content:"\f406"}.bi-hand-thumbs-up::before{content:"\f407"}.bi-handbag-fill::before{content:"\f408"}.bi-handbag::before{content:"\f409"}.bi-hash::before{content:"\f40a"}.bi-hdd-fill::before{content:"\f40b"}.bi-hdd-network-fill::before{content:"\f40c"}.bi-hdd-network::before{content:"\f40d"}.bi-hdd-rack-fill::before{content:"\f40e"}.bi-hdd-rack::before{content:"\f40f"}.bi-hdd-stack-fill::before{content:"\f410"}.bi-hdd-stack::before{content:"\f411"}.bi-hdd::before{content:"\f412"}.bi-headphones::before{content:"\f413"}.bi-headset::before{content:"\f414"}.bi-heart-fill::before{content:"\f415"}.bi-heart-half::before{content:"\f416"}.bi-heart::before{content:"\f417"}.bi-heptagon-fill::before{content:"\f418"}.bi-heptagon-half::before{content:"\f419"}.bi-heptagon::before{content:"\f41a"}.bi-hexagon-fill::before{content:"\f41b"}.bi-hexagon-half::before{content:"\f41c"}.bi-hexagon::before{content:"\f41d"}.bi-hourglass-bottom::before{content:"\f41e"}.bi-hourglass-split::before{content:"\f41f"}.bi-hourglass-top::before{content:"\f420"}.bi-hourglass::before{content:"\f421"}.bi-house-door-fill::before{content:"\f422"}.bi-house-door::before{content:"\f423"}.bi-house-fill::before{content:"\f424"}.bi-house::before{content:"\f425"}.bi-hr::before{content:"\f426"}.bi-hurricane::before{content:"\f427"}.bi-image-alt::before{content:"\f428"}.bi-image-fill::before{content:"\f429"}.bi-image::before{content:"\f42a"}.bi-images::before{content:"\f42b"}.bi-inbox-fill::before{content:"\f42c"}.bi-inbox::before{content:"\f42d"}.bi-inboxes-fill::before{content:"\f42e"}.bi-inboxes::before{content:"\f42f"}.bi-info-circle-fill::before{content:"\f430"}.bi-info-circle::before{content:"\f431"}.bi-info-square-fill::before{content:"\f432"}.bi-info-square::before{content:"\f433"}.bi-info::before{content:"\f434"}.bi-input-cursor-text::before{content:"\f435"}.bi-input-cursor::before{content:"\f436"}.bi-instagram::before{content:"\f437"}.bi-intersect::before{content:"\f438"}.bi-journal-album::before{content:"\f439"}.bi-journal-arrow-down::before{content:"\f43a"}.bi-journal-arrow-up::before{content:"\f43b"}.bi-journal-bookmark-fill::before{content:"\f43c"}.bi-journal-bookmark::before{content:"\f43d"}.bi-journal-check::before{content:"\f43e"}.bi-journal-code::before{content:"\f43f"}.bi-journal-medical::before{content:"\f440"}.bi-journal-minus::before{content:"\f441"}.bi-journal-plus::before{content:"\f442"}.bi-journal-richtext::before{content:"\f443"}.bi-journal-text::before{content:"\f444"}.bi-journal-x::before{content:"\f445"}.bi-journal::before{content:"\f446"}.bi-journals::before{content:"\f447"}.bi-joystick::before{content:"\f448"}.bi-justify-left::before{content:"\f449"}.bi-justify-right::before{content:"\f44a"}.bi-justify::before{content:"\f44b"}.bi-kanban-fill::before{content:"\f44c"}.bi-kanban::before{content:"\f44d"}.bi-key-fill::before{content:"\f44e"}.bi-key::before{content:"\f44f"}.bi-keyboard-fill::before{content:"\f450"}.bi-keyboard::before{content:"\f451"}.bi-ladder::before{content:"\f452"}.bi-lamp-fill::before{content:"\f453"}.bi-lamp::before{content:"\f454"}.bi-laptop-fill::before{content:"\f455"}.bi-laptop::before{content:"\f456"}.bi-layer-backward::before{content:"\f457"}.bi-layer-forward::before{content:"\f458"}.bi-layers-fill::before{content:"\f459"}.bi-layers-half::before{content:"\f45a"}.bi-layers::before{content:"\f45b"}.bi-layout-sidebar-inset-reverse::before{content:"\f45c"}.bi-layout-sidebar-inset::before{content:"\f45d"}.bi-layout-sidebar-reverse::before{content:"\f45e"}.bi-layout-sidebar::before{content:"\f45f"}.bi-layout-split::before{content:"\f460"}.bi-layout-text-sidebar-reverse::before{content:"\f461"}.bi-layout-text-sidebar::before{content:"\f462"}.bi-layout-text-window-reverse::before{content:"\f463"}.bi-layout-text-window::before{content:"\f464"}.bi-layout-three-columns::before{content:"\f465"}.bi-layout-wtf::before{content:"\f466"}.bi-life-preserver::before{content:"\f467"}.bi-lightbulb-fill::before{content:"\f468"}.bi-lightbulb-off-fill::before{content:"\f469"}.bi-lightbulb-off::before{content:"\f46a"}.bi-lightbulb::before{content:"\f46b"}.bi-lightning-charge-fill::before{content:"\f46c"}.bi-lightning-charge::before{content:"\f46d"}.bi-lightning-fill::before{content:"\f46e"}.bi-lightning::before{content:"\f46f"}.bi-link-45deg::before{content:"\f470"}.bi-link::before{content:"\f471"}.bi-linkedin::before{content:"\f472"}.bi-list-check::before{content:"\f473"}.bi-list-nested::before{content:"\f474"}.bi-list-ol::before{content:"\f475"}.bi-list-stars::before{content:"\f476"}.bi-list-task::before{content:"\f477"}.bi-list-ul::before{content:"\f478"}.bi-list::before{content:"\f479"}.bi-lock-fill::before{content:"\f47a"}.bi-lock::before{content:"\f47b"}.bi-mailbox::before{content:"\f47c"}.bi-mailbox2::before{content:"\f47d"}.bi-map-fill::before{content:"\f47e"}.bi-map::before{content:"\f47f"}.bi-markdown-fill::before{content:"\f480"}.bi-markdown::before{content:"\f481"}.bi-mask::before{content:"\f482"}.bi-megaphone-fill::before{content:"\f483"}.bi-megaphone::before{content:"\f484"}.bi-menu-app-fill::before{content:"\f485"}.bi-menu-app::before{content:"\f486"}.bi-menu-button-fill::before{content:"\f487"}.bi-menu-button-wide-fill::before{content:"\f488"}.bi-menu-button-wide::before{content:"\f489"}.bi-menu-button::before{content:"\f48a"}.bi-menu-down::before{content:"\f48b"}.bi-menu-up::before{content:"\f48c"}.bi-mic-fill::before{content:"\f48d"}.bi-mic-mute-fill::before{content:"\f48e"}.bi-mic-mute::before{content:"\f48f"}.bi-mic::before{content:"\f490"}.bi-minecart-loaded::before{content:"\f491"}.bi-minecart::before{content:"\f492"}.bi-moisture::before{content:"\f493"}.bi-moon-fill::before{content:"\f494"}.bi-moon-stars-fill::before{content:"\f495"}.bi-moon-stars::before{content:"\f496"}.bi-moon::before{content:"\f497"}.bi-mouse-fill::before{content:"\f498"}.bi-mouse::before{content:"\f499"}.bi-mouse2-fill::before{content:"\f49a"}.bi-mouse2::before{content:"\f49b"}.bi-mouse3-fill::before{content:"\f49c"}.bi-mouse3::before{content:"\f49d"}.bi-music-note-beamed::before{content:"\f49e"}.bi-music-note-list::before{content:"\f49f"}.bi-music-note::before{content:"\f4a0"}.bi-music-player-fill::before{content:"\f4a1"}.bi-music-player::before{content:"\f4a2"}.bi-newspaper::before{content:"\f4a3"}.bi-node-minus-fill::before{content:"\f4a4"}.bi-node-minus::before{content:"\f4a5"}.bi-node-plus-fill::before{content:"\f4a6"}.bi-node-plus::before{content:"\f4a7"}.bi-nut-fill::before{content:"\f4a8"}.bi-nut::before{content:"\f4a9"}.bi-octagon-fill::before{content:"\f4aa"}.bi-octagon-half::before{content:"\f4ab"}.bi-octagon::before{content:"\f4ac"}.bi-option::before{content:"\f4ad"}.bi-outlet::before{content:"\f4ae"}.bi-paint-bucket::before{content:"\f4af"}.bi-palette-fill::before{content:"\f4b0"}.bi-palette::before{content:"\f4b1"}.bi-palette2::before{content:"\f4b2"}.bi-paperclip::before{content:"\f4b3"}.bi-paragraph::before{content:"\f4b4"}.bi-patch-check-fill::before{content:"\f4b5"}.bi-patch-check::before{content:"\f4b6"}.bi-patch-exclamation-fill::before{content:"\f4b7"}.bi-patch-exclamation::before{content:"\f4b8"}.bi-patch-minus-fill::before{content:"\f4b9"}.bi-patch-minus::before{content:"\f4ba"}.bi-patch-plus-fill::before{content:"\f4bb"}.bi-patch-plus::before{content:"\f4bc"}.bi-patch-question-fill::before{content:"\f4bd"}.bi-patch-question::before{content:"\f4be"}.bi-pause-btn-fill::before{content:"\f4bf"}.bi-pause-btn::before{content:"\f4c0"}.bi-pause-circle-fill::before{content:"\f4c1"}.bi-pause-circle::before{content:"\f4c2"}.bi-pause-fill::before{content:"\f4c3"}.bi-pause::before{content:"\f4c4"}.bi-peace-fill::before{content:"\f4c5"}.bi-peace::before{content:"\f4c6"}.bi-pen-fill::before{content:"\f4c7"}.bi-pen::before{content:"\f4c8"}.bi-pencil-fill::before{content:"\f4c9"}.bi-pencil-square::before{content:"\f4ca"}.bi-pencil::before{content:"\f4cb"}.bi-pentagon-fill::before{content:"\f4cc"}.bi-pentagon-half::before{content:"\f4cd"}.bi-pentagon::before{content:"\f4ce"}.bi-people-fill::before{content:"\f4cf"}.bi-people::before{content:"\f4d0"}.bi-percent::before{content:"\f4d1"}.bi-person-badge-fill::before{content:"\f4d2"}.bi-person-badge::before{content:"\f4d3"}.bi-person-bounding-box::before{content:"\f4d4"}.bi-person-check-fill::before{content:"\f4d5"}.bi-person-check::before{content:"\f4d6"}.bi-person-circle::before{content:"\f4d7"}.bi-person-dash-fill::before{content:"\f4d8"}.bi-person-dash::before{content:"\f4d9"}.bi-person-fill::before{content:"\f4da"}.bi-person-lines-fill::before{content:"\f4db"}.bi-person-plus-fill::before{content:"\f4dc"}.bi-person-plus::before{content:"\f4dd"}.bi-person-square::before{content:"\f4de"}.bi-person-x-fill::before{content:"\f4df"}.bi-person-x::before{content:"\f4e0"}.bi-person::before{content:"\f4e1"}.bi-phone-fill::before{content:"\f4e2"}.bi-phone-landscape-fill::before{content:"\f4e3"}.bi-phone-landscape::before{content:"\f4e4"}.bi-phone-vibrate-fill::before{content:"\f4e5"}.bi-phone-vibrate::before{content:"\f4e6"}.bi-phone::before{content:"\f4e7"}.bi-pie-chart-fill::before{content:"\f4e8"}.bi-pie-chart::before{content:"\f4e9"}.bi-pin-angle-fill::before{content:"\f4ea"}.bi-pin-angle::before{content:"\f4eb"}.bi-pin-fill::before{content:"\f4ec"}.bi-pin::before{content:"\f4ed"}.bi-pip-fill::before{content:"\f4ee"}.bi-pip::before{content:"\f4ef"}.bi-play-btn-fill::before{content:"\f4f0"}.bi-play-btn::before{content:"\f4f1"}.bi-play-circle-fill::before{content:"\f4f2"}.bi-play-circle::before{content:"\f4f3"}.bi-play-fill::before{content:"\f4f4"}.bi-play::before{content:"\f4f5"}.bi-plug-fill::before{content:"\f4f6"}.bi-plug::before{content:"\f4f7"}.bi-plus-circle-dotted::before{content:"\f4f8"}.bi-plus-circle-fill::before{content:"\f4f9"}.bi-plus-circle::before{content:"\f4fa"}.bi-plus-square-dotted::before{content:"\f4fb"}.bi-plus-square-fill::before{content:"\f4fc"}.bi-plus-square::before{content:"\f4fd"}.bi-plus::before{content:"\f4fe"}.bi-power::before{content:"\f4ff"}.bi-printer-fill::before{content:"\f500"}.bi-printer::before{content:"\f501"}.bi-puzzle-fill::before{content:"\f502"}.bi-puzzle::before{content:"\f503"}.bi-question-circle-fill::before{content:"\f504"}.bi-question-circle::before{content:"\f505"}.bi-question-diamond-fill::before{content:"\f506"}.bi-question-diamond::before{content:"\f507"}.bi-question-octagon-fill::before{content:"\f508"}.bi-question-octagon::before{content:"\f509"}.bi-question-square-fill::before{content:"\f50a"}.bi-question-square::before{content:"\f50b"}.bi-question::before{content:"\f50c"}.bi-rainbow::before{content:"\f50d"}.bi-receipt-cutoff::before{content:"\f50e"}.bi-receipt::before{content:"\f50f"}.bi-reception-0::before{content:"\f510"}.bi-reception-1::before{content:"\f511"}.bi-reception-2::before{content:"\f512"}.bi-reception-3::before{content:"\f513"}.bi-reception-4::before{content:"\f514"}.bi-record-btn-fill::before{content:"\f515"}.bi-record-btn::before{content:"\f516"}.bi-record-circle-fill::before{content:"\f517"}.bi-record-circle::before{content:"\f518"}.bi-record-fill::before{content:"\f519"}.bi-record::before{content:"\f51a"}.bi-record2-fill::before{content:"\f51b"}.bi-record2::before{content:"\f51c"}.bi-reply-all-fill::before{content:"\f51d"}.bi-reply-all::before{content:"\f51e"}.bi-reply-fill::before{content:"\f51f"}.bi-reply::before{content:"\f520"}.bi-rss-fill::before{content:"\f521"}.bi-rss::before{content:"\f522"}.bi-rulers::before{content:"\f523"}.bi-save-fill::before{content:"\f524"}.bi-save::before{content:"\f525"}.bi-save2-fill::before{content:"\f526"}.bi-save2::before{content:"\f527"}.bi-scissors::before{content:"\f528"}.bi-screwdriver::before{content:"\f529"}.bi-search::before{content:"\f52a"}.bi-segmented-nav::before{content:"\f52b"}.bi-server::before{content:"\f52c"}.bi-share-fill::before{content:"\f52d"}.bi-share::before{content:"\f52e"}.bi-shield-check::before{content:"\f52f"}.bi-shield-exclamation::before{content:"\f530"}.bi-shield-fill-check::before{content:"\f531"}.bi-shield-fill-exclamation::before{content:"\f532"}.bi-shield-fill-minus::before{content:"\f533"}.bi-shield-fill-plus::before{content:"\f534"}.bi-shield-fill-x::before{content:"\f535"}.bi-shield-fill::before{content:"\f536"}.bi-shield-lock-fill::before{content:"\f537"}.bi-shield-lock::before{content:"\f538"}.bi-shield-minus::before{content:"\f539"}.bi-shield-plus::before{content:"\f53a"}.bi-shield-shaded::before{content:"\f53b"}.bi-shield-slash-fill::before{content:"\f53c"}.bi-shield-slash::before{content:"\f53d"}.bi-shield-x::before{content:"\f53e"}.bi-shield::before{content:"\f53f"}.bi-shift-fill::before{content:"\f540"}.bi-shift::before{content:"\f541"}.bi-shop-window::before{content:"\f542"}.bi-shop::before{content:"\f543"}.bi-shuffle::before{content:"\f544"}.bi-signpost-2-fill::before{content:"\f545"}.bi-signpost-2::before{content:"\f546"}.bi-signpost-fill::before{content:"\f547"}.bi-signpost-split-fill::before{content:"\f548"}.bi-signpost-split::before{content:"\f549"}.bi-signpost::before{content:"\f54a"}.bi-sim-fill::before{content:"\f54b"}.bi-sim::before{content:"\f54c"}.bi-skip-backward-btn-fill::before{content:"\f54d"}.bi-skip-backward-btn::before{content:"\f54e"}.bi-skip-backward-circle-fill::before{content:"\f54f"}.bi-skip-backward-circle::before{content:"\f550"}.bi-skip-backward-fill::before{content:"\f551"}.bi-skip-backward::before{content:"\f552"}.bi-skip-end-btn-fill::before{content:"\f553"}.bi-skip-end-btn::before{content:"\f554"}.bi-skip-end-circle-fill::before{content:"\f555"}.bi-skip-end-circle::before{content:"\f556"}.bi-skip-end-fill::before{content:"\f557"}.bi-skip-end::before{content:"\f558"}.bi-skip-forward-btn-fill::before{content:"\f559"}.bi-skip-forward-btn::before{content:"\f55a"}.bi-skip-forward-circle-fill::before{content:"\f55b"}.bi-skip-forward-circle::before{content:"\f55c"}.bi-skip-forward-fill::before{content:"\f55d"}.bi-skip-forward::before{content:"\f55e"}.bi-skip-start-btn-fill::before{content:"\f55f"}.bi-skip-start-btn::before{content:"\f560"}.bi-skip-start-circle-fill::before{content:"\f561"}.bi-skip-start-circle::before{content:"\f562"}.bi-skip-start-fill::before{content:"\f563"}.bi-skip-start::before{content:"\f564"}.bi-slack::before{content:"\f565"}.bi-slash-circle-fill::before{content:"\f566"}.bi-slash-circle::before{content:"\f567"}.bi-slash-square-fill::before{content:"\f568"}.bi-slash-square::before{content:"\f569"}.bi-slash::before{content:"\f56a"}.bi-sliders::before{content:"\f56b"}.bi-smartwatch::before{content:"\f56c"}.bi-snow::before{content:"\f56d"}.bi-snow2::before{content:"\f56e"}.bi-snow3::before{content:"\f56f"}.bi-sort-alpha-down-alt::before{content:"\f570"}.bi-sort-alpha-down::before{content:"\f571"}.bi-sort-alpha-up-alt::before{content:"\f572"}.bi-sort-alpha-up::before{content:"\f573"}.bi-sort-down-alt::before{content:"\f574"}.bi-sort-down::before{content:"\f575"}.bi-sort-numeric-down-alt::before{content:"\f576"}.bi-sort-numeric-down::before{content:"\f577"}.bi-sort-numeric-up-alt::before{content:"\f578"}.bi-sort-numeric-up::before{content:"\f579"}.bi-sort-up-alt::before{content:"\f57a"}.bi-sort-up::before{content:"\f57b"}.bi-soundwave::before{content:"\f57c"}.bi-speaker-fill::before{content:"\f57d"}.bi-speaker::before{content:"\f57e"}.bi-speedometer::before{content:"\f57f"}.bi-speedometer2::before{content:"\f580"}.bi-spellcheck::before{content:"\f581"}.bi-square-fill::before{content:"\f582"}.bi-square-half::before{content:"\f583"}.bi-square::before{content:"\f584"}.bi-stack::before{content:"\f585"}.bi-star-fill::before{content:"\f586"}.bi-star-half::before{content:"\f587"}.bi-star::before{content:"\f588"}.bi-stars::before{content:"\f589"}.bi-stickies-fill::before{content:"\f58a"}.bi-stickies::before{content:"\f58b"}.bi-sticky-fill::before{content:"\f58c"}.bi-sticky::before{content:"\f58d"}.bi-stop-btn-fill::before{content:"\f58e"}.bi-stop-btn::before{content:"\f58f"}.bi-stop-circle-fill::before{content:"\f590"}.bi-stop-circle::before{content:"\f591"}.bi-stop-fill::before{content:"\f592"}.bi-stop::before{content:"\f593"}.bi-stoplights-fill::before{content:"\f594"}.bi-stoplights::before{content:"\f595"}.bi-stopwatch-fill::before{content:"\f596"}.bi-stopwatch::before{content:"\f597"}.bi-subtract::before{content:"\f598"}.bi-suit-club-fill::before{content:"\f599"}.bi-suit-club::before{content:"\f59a"}.bi-suit-diamond-fill::before{content:"\f59b"}.bi-suit-diamond::before{content:"\f59c"}.bi-suit-heart-fill::before{content:"\f59d"}.bi-suit-heart::before{content:"\f59e"}.bi-suit-spade-fill::before{content:"\f59f"}.bi-suit-spade::before{content:"\f5a0"}.bi-sun-fill::before{content:"\f5a1"}.bi-sun::before{content:"\f5a2"}.bi-sunglasses::before{content:"\f5a3"}.bi-sunrise-fill::before{content:"\f5a4"}.bi-sunrise::before{content:"\f5a5"}.bi-sunset-fill::before{content:"\f5a6"}.bi-sunset::before{content:"\f5a7"}.bi-symmetry-horizontal::before{content:"\f5a8"}.bi-symmetry-vertical::before{content:"\f5a9"}.bi-table::before{content:"\f5aa"}.bi-tablet-fill::before{content:"\f5ab"}.bi-tablet-landscape-fill::before{content:"\f5ac"}.bi-tablet-landscape::before{content:"\f5ad"}.bi-tablet::before{content:"\f5ae"}.bi-tag-fill::before{content:"\f5af"}.bi-tag::before{content:"\f5b0"}.bi-tags-fill::before{content:"\f5b1"}.bi-tags::before{content:"\f5b2"}.bi-telegram::before{content:"\f5b3"}.bi-telephone-fill::before{content:"\f5b4"}.bi-telephone-forward-fill::before{content:"\f5b5"}.bi-telephone-forward::before{content:"\f5b6"}.bi-telephone-inbound-fill::before{content:"\f5b7"}.bi-telephone-inbound::before{content:"\f5b8"}.bi-telephone-minus-fill::before{content:"\f5b9"}.bi-telephone-minus::before{content:"\f5ba"}.bi-telephone-outbound-fill::before{content:"\f5bb"}.bi-telephone-outbound::before{content:"\f5bc"}.bi-telephone-plus-fill::before{content:"\f5bd"}.bi-telephone-plus::before{content:"\f5be"}.bi-telephone-x-fill::before{content:"\f5bf"}.bi-telephone-x::before{content:"\f5c0"}.bi-telephone::before{content:"\f5c1"}.bi-terminal-fill::before{content:"\f5c2"}.bi-terminal::before{content:"\f5c3"}.bi-text-center::before{content:"\f5c4"}.bi-text-indent-left::before{content:"\f5c5"}.bi-text-indent-right::before{content:"\f5c6"}.bi-text-left::before{content:"\f5c7"}.bi-text-paragraph::before{content:"\f5c8"}.bi-text-right::before{content:"\f5c9"}.bi-textarea-resize::before{content:"\f5ca"}.bi-textarea-t::before{content:"\f5cb"}.bi-textarea::before{content:"\f5cc"}.bi-thermometer-half::before{content:"\f5cd"}.bi-thermometer-high::before{content:"\f5ce"}.bi-thermometer-low::before{content:"\f5cf"}.bi-thermometer-snow::before{content:"\f5d0"}.bi-thermometer-sun::before{content:"\f5d1"}.bi-thermometer::before{content:"\f5d2"}.bi-three-dots-vertical::before{content:"\f5d3"}.bi-three-dots::before{content:"\f5d4"}.bi-toggle-off::before{content:"\f5d5"}.bi-toggle-on::before{content:"\f5d6"}.bi-toggle2-off::before{content:"\f5d7"}.bi-toggle2-on::before{content:"\f5d8"}.bi-toggles::before{content:"\f5d9"}.bi-toggles2::before{content:"\f5da"}.bi-tools::before{content:"\f5db"}.bi-tornado::before{content:"\f5dc"}.bi-trash-fill::before{content:"\f5dd"}.bi-trash::before{content:"\f5de"}.bi-trash2-fill::before{content:"\f5df"}.bi-trash2::before{content:"\f5e0"}.bi-tree-fill::before{content:"\f5e1"}.bi-tree::before{content:"\f5e2"}.bi-triangle-fill::before{content:"\f5e3"}.bi-triangle-half::before{content:"\f5e4"}.bi-triangle::before{content:"\f5e5"}.bi-trophy-fill::before{content:"\f5e6"}.bi-trophy::before{content:"\f5e7"}.bi-tropical-storm::before{content:"\f5e8"}.bi-truck-flatbed::before{content:"\f5e9"}.bi-truck::before{content:"\f5ea"}.bi-tsunami::before{content:"\f5eb"}.bi-tv-fill::before{content:"\f5ec"}.bi-tv::before{content:"\f5ed"}.bi-twitch::before{content:"\f5ee"}.bi-twitter::before{content:"\f5ef"}.bi-type-bold::before{content:"\f5f0"}.bi-type-h1::before{content:"\f5f1"}.bi-type-h2::before{content:"\f5f2"}.bi-type-h3::before{content:"\f5f3"}.bi-type-italic::before{content:"\f5f4"}.bi-type-strikethrough::before{content:"\f5f5"}.bi-type-underline::before{content:"\f5f6"}.bi-type::before{content:"\f5f7"}.bi-ui-checks-grid::before{content:"\f5f8"}.bi-ui-checks::before{content:"\f5f9"}.bi-ui-radios-grid::before{content:"\f5fa"}.bi-ui-radios::before{content:"\f5fb"}.bi-umbrella-fill::before{content:"\f5fc"}.bi-umbrella::before{content:"\f5fd"}.bi-union::before{content:"\f5fe"}.bi-unlock-fill::before{content:"\f5ff"}.bi-unlock::before{content:"\f600"}.bi-upc-scan::before{content:"\f601"}.bi-upc::before{content:"\f602"}.bi-upload::before{content:"\f603"}.bi-vector-pen::before{content:"\f604"}.bi-view-list::before{content:"\f605"}.bi-view-stacked::before{content:"\f606"}.bi-vinyl-fill::before{content:"\f607"}.bi-vinyl::before{content:"\f608"}.bi-voicemail::before{content:"\f609"}.bi-volume-down-fill::before{content:"\f60a"}.bi-volume-down::before{content:"\f60b"}.bi-volume-mute-fill::before{content:"\f60c"}.bi-volume-mute::before{content:"\f60d"}.bi-volume-off-fill::before{content:"\f60e"}.bi-volume-off::before{content:"\f60f"}.bi-volume-up-fill::before{content:"\f610"}.bi-volume-up::before{content:"\f611"}.bi-vr::before{content:"\f612"}.bi-wallet-fill::before{content:"\f613"}.bi-wallet::before{content:"\f614"}.bi-wallet2::before{content:"\f615"}.bi-watch::before{content:"\f616"}.bi-water::before{content:"\f617"}.bi-whatsapp::before{content:"\f618"}.bi-wifi-1::before{content:"\f619"}.bi-wifi-2::before{content:"\f61a"}.bi-wifi-off::before{content:"\f61b"}.bi-wifi::before{content:"\f61c"}.bi-wind::before{content:"\f61d"}.bi-window-dock::before{content:"\f61e"}.bi-window-sidebar::before{content:"\f61f"}.bi-window::before{content:"\f620"}.bi-wrench::before{content:"\f621"}.bi-x-circle-fill::before{content:"\f622"}.bi-x-circle::before{content:"\f623"}.bi-x-diamond-fill::before{content:"\f624"}.bi-x-diamond::before{content:"\f625"}.bi-x-octagon-fill::before{content:"\f626"}.bi-x-octagon::before{content:"\f627"}.bi-x-square-fill::before{content:"\f628"}.bi-x-square::before{content:"\f629"}.bi-x::before{content:"\f62a"}.bi-youtube::before{content:"\f62b"}.bi-zoom-in::before{content:"\f62c"}.bi-zoom-out::before{content:"\f62d"}.bi-bank::before{content:"\f62e"}.bi-bank2::before{content:"\f62f"}.bi-bell-slash-fill::before{content:"\f630"}.bi-bell-slash::before{content:"\f631"}.bi-cash-coin::before{content:"\f632"}.bi-check-lg::before{content:"\f633"}.bi-coin::before{content:"\f634"}.bi-currency-bitcoin::before{content:"\f635"}.bi-currency-dollar::before{content:"\f636"}.bi-currency-euro::before{content:"\f637"}.bi-currency-exchange::before{content:"\f638"}.bi-currency-pound::before{content:"\f639"}.bi-currency-yen::before{content:"\f63a"}.bi-dash-lg::before{content:"\f63b"}.bi-exclamation-lg::before{content:"\f63c"}.bi-file-earmark-pdf-fill::before{content:"\f63d"}.bi-file-earmark-pdf::before{content:"\f63e"}.bi-file-pdf-fill::before{content:"\f63f"}.bi-file-pdf::before{content:"\f640"}.bi-gender-ambiguous::before{content:"\f641"}.bi-gender-female::before{content:"\f642"}.bi-gender-male::before{content:"\f643"}.bi-gender-trans::before{content:"\f644"}.bi-headset-vr::before{content:"\f645"}.bi-info-lg::before{content:"\f646"}.bi-mastodon::before{content:"\f647"}.bi-messenger::before{content:"\f648"}.bi-piggy-bank-fill::before{content:"\f649"}.bi-piggy-bank::before{content:"\f64a"}.bi-pin-map-fill::before{content:"\f64b"}.bi-pin-map::before{content:"\f64c"}.bi-plus-lg::before{content:"\f64d"}.bi-question-lg::before{content:"\f64e"}.bi-recycle::before{content:"\f64f"}.bi-reddit::before{content:"\f650"}.bi-safe-fill::before{content:"\f651"}.bi-safe2-fill::before{content:"\f652"}.bi-safe2::before{content:"\f653"}.bi-sd-card-fill::before{content:"\f654"}.bi-sd-card::before{content:"\f655"}.bi-skype::before{content:"\f656"}.bi-slash-lg::before{content:"\f657"}.bi-translate::before{content:"\f658"}.bi-x-lg::before{content:"\f659"}.bi-safe::before{content:"\f65a"}.bi-apple::before{content:"\f65b"}.bi-microsoft::before{content:"\f65d"}.bi-windows::before{content:"\f65e"}.bi-behance::before{content:"\f65c"}.bi-dribbble::before{content:"\f65f"}.bi-line::before{content:"\f660"}.bi-medium::before{content:"\f661"}.bi-paypal::before{content:"\f662"}.bi-pinterest::before{content:"\f663"}.bi-signal::before{content:"\f664"}.bi-snapchat::before{content:"\f665"}.bi-spotify::before{content:"\f666"}.bi-stack-overflow::before{content:"\f667"}.bi-strava::before{content:"\f668"}.bi-wordpress::before{content:"\f669"}.bi-vimeo::before{content:"\f66a"}.bi-activity::before{content:"\f66b"}.bi-easel2-fill::before{content:"\f66c"}.bi-easel2::before{content:"\f66d"}.bi-easel3-fill::before{content:"\f66e"}.bi-easel3::before{content:"\f66f"}.bi-fan::before{content:"\f670"}.bi-fingerprint::before{content:"\f671"}.bi-graph-down-arrow::before{content:"\f672"}.bi-graph-up-arrow::before{content:"\f673"}.bi-hypnotize::before{content:"\f674"}.bi-magic::before{content:"\f675"}.bi-person-rolodex::before{content:"\f676"}.bi-person-video::before{content:"\f677"}.bi-person-video2::before{content:"\f678"}.bi-person-video3::before{content:"\f679"}.bi-person-workspace::before{content:"\f67a"}.bi-radioactive::before{content:"\f67b"}.bi-webcam-fill::before{content:"\f67c"}.bi-webcam::before{content:"\f67d"}.bi-yin-yang::before{content:"\f67e"}.bi-bandaid-fill::before{content:"\f680"}.bi-bandaid::before{content:"\f681"}.bi-bluetooth::before{content:"\f682"}.bi-body-text::before{content:"\f683"}.bi-boombox::before{content:"\f684"}.bi-boxes::before{content:"\f685"}.bi-dpad-fill::before{content:"\f686"}.bi-dpad::before{content:"\f687"}.bi-ear-fill::before{content:"\f688"}.bi-ear::before{content:"\f689"}.bi-envelope-check-1::before{content:"\f68a"}.bi-envelope-check-fill::before{content:"\f68b"}.bi-envelope-check::before{content:"\f68c"}.bi-envelope-dash-1::before{content:"\f68d"}.bi-envelope-dash-fill::before{content:"\f68e"}.bi-envelope-dash::before{content:"\f68f"}.bi-envelope-exclamation-1::before{content:"\f690"}.bi-envelope-exclamation-fill::before{content:"\f691"}.bi-envelope-exclamation::before{content:"\f692"}.bi-envelope-plus-fill::before{content:"\f693"}.bi-envelope-plus::before{content:"\f694"}.bi-envelope-slash-1::before{content:"\f695"}.bi-envelope-slash-fill::before{content:"\f696"}.bi-envelope-slash::before{content:"\f697"}.bi-envelope-x-1::before{content:"\f698"}.bi-envelope-x-fill::before{content:"\f699"}.bi-envelope-x::before{content:"\f69a"}.bi-explicit-fill::before{content:"\f69b"}.bi-explicit::before{content:"\f69c"}.bi-git::before{content:"\f69d"}.bi-infinity::before{content:"\f69e"}.bi-list-columns-reverse::before{content:"\f69f"}.bi-list-columns::before{content:"\f6a0"}.bi-meta::before{content:"\f6a1"}.bi-mortorboard-fill::before{content:"\f6a2"}.bi-mortorboard::before{content:"\f6a3"}.bi-nintendo-switch::before{content:"\f6a4"}.bi-pc-display-horizontal::before{content:"\f6a5"}.bi-pc-display::before{content:"\f6a6"}.bi-pc-horizontal::before{content:"\f6a7"}.bi-pc::before{content:"\f6a8"}.bi-playstation::before{content:"\f6a9"}.bi-plus-slash-minus::before{content:"\f6aa"}.bi-projector-fill::before{content:"\f6ab"}.bi-projector::before{content:"\f6ac"}.bi-qr-code-scan::before{content:"\f6ad"}.bi-qr-code::before{content:"\f6ae"}.bi-quora::before{content:"\f6af"}.bi-quote::before{content:"\f6b0"}.bi-robot::before{content:"\f6b1"}.bi-send-check-fill::before{content:"\f6b2"}.bi-send-check::before{content:"\f6b3"}.bi-send-dash-fill::before{content:"\f6b4"}.bi-send-dash::before{content:"\f6b5"}.bi-send-exclamation-1::before{content:"\f6b6"}.bi-send-exclamation-fill::before{content:"\f6b7"}.bi-send-exclamation::before{content:"\f6b8"}.bi-send-fill::before{content:"\f6b9"}.bi-send-plus-fill::before{content:"\f6ba"}.bi-send-plus::before{content:"\f6bb"}.bi-send-slash-fill::before{content:"\f6bc"}.bi-send-slash::before{content:"\f6bd"}.bi-send-x-fill::before{content:"\f6be"}.bi-send-x::before{content:"\f6bf"}.bi-send::before{content:"\f6c0"}.bi-steam::before{content:"\f6c1"}.bi-terminal-dash-1::before{content:"\f6c2"}.bi-terminal-dash::before{content:"\f6c3"}.bi-terminal-plus::before{content:"\f6c4"}.bi-terminal-split::before{content:"\f6c5"}.bi-ticket-detailed-fill::before{content:"\f6c6"}.bi-ticket-detailed::before{content:"\f6c7"}.bi-ticket-fill::before{content:"\f6c8"}.bi-ticket-perforated-fill::before{content:"\f6c9"}.bi-ticket-perforated::before{content:"\f6ca"}.bi-ticket::before{content:"\f6cb"}.bi-tiktok::before{content:"\f6cc"}.bi-window-dash::before{content:"\f6cd"}.bi-window-desktop::before{content:"\f6ce"}.bi-window-fullscreen::before{content:"\f6cf"}.bi-window-plus::before{content:"\f6d0"}.bi-window-split::before{content:"\f6d1"}.bi-window-stack::before{content:"\f6d2"}.bi-window-x::before{content:"\f6d3"}.bi-xbox::before{content:"\f6d4"}.bi-ethernet::before{content:"\f6d5"}.bi-hdmi-fill::before{content:"\f6d6"}.bi-hdmi::before{content:"\f6d7"}.bi-usb-c-fill::before{content:"\f6d8"}.bi-usb-c::before{content:"\f6d9"}.bi-usb-fill::before{content:"\f6da"}.bi-usb-plug-fill::before{content:"\f6db"}.bi-usb-plug::before{content:"\f6dc"}.bi-usb-symbol::before{content:"\f6dd"}.bi-usb::before{content:"\f6de"}.bi-boombox-fill::before{content:"\f6df"}.bi-displayport-1::before{content:"\f6e0"}.bi-displayport::before{content:"\f6e1"}.bi-gpu-card::before{content:"\f6e2"}.bi-memory::before{content:"\f6e3"}.bi-modem-fill::before{content:"\f6e4"}.bi-modem::before{content:"\f6e5"}.bi-motherboard-fill::before{content:"\f6e6"}.bi-motherboard::before{content:"\f6e7"}.bi-optical-audio-fill::before{content:"\f6e8"}.bi-optical-audio::before{content:"\f6e9"}.bi-pci-card::before{content:"\f6ea"}.bi-router-fill::before{content:"\f6eb"}.bi-router::before{content:"\f6ec"}.bi-ssd-fill::before{content:"\f6ed"}.bi-ssd::before{content:"\f6ee"}.bi-thunderbolt-fill::before{content:"\f6ef"}.bi-thunderbolt::before{content:"\f6f0"}.bi-usb-drive-fill::before{content:"\f6f1"}.bi-usb-drive::before{content:"\f6f2"}.bi-usb-micro-fill::before{content:"\f6f3"}.bi-usb-micro::before{content:"\f6f4"}.bi-usb-mini-fill::before{content:"\f6f5"}.bi-usb-mini::before{content:"\f6f6"}.bi-cloud-haze2::before{content:"\f6f7"}.bi-device-hdd-fill::before{content:"\f6f8"}.bi-device-hdd::before{content:"\f6f9"}.bi-device-ssd-fill::before{content:"\f6fa"}.bi-device-ssd::before{content:"\f6fb"}.bi-displayport-fill::before{content:"\f6fc"}.bi-mortarboard-fill::before{content:"\f6fd"}.bi-mortarboard::before{content:"\f6fe"}.bi-terminal-x::before{content:"\f6ff"}.bi-arrow-through-heart-fill::before{content:"\f700"}.bi-arrow-through-heart::before{content:"\f701"}.bi-badge-sd-fill::before{content:"\f702"}.bi-badge-sd::before{content:"\f703"}.bi-bag-heart-fill::before{content:"\f704"}.bi-bag-heart::before{content:"\f705"}.bi-balloon-fill::before{content:"\f706"}.bi-balloon-heart-fill::before{content:"\f707"}.bi-balloon-heart::before{content:"\f708"}.bi-balloon::before{content:"\f709"}.bi-box2-fill::before{content:"\f70a"}.bi-box2-heart-fill::before{content:"\f70b"}.bi-box2-heart::before{content:"\f70c"}.bi-box2::before{content:"\f70d"}.bi-braces-asterisk::before{content:"\f70e"}.bi-calendar-heart-fill::before{content:"\f70f"}.bi-calendar-heart::before{content:"\f710"}.bi-calendar2-heart-fill::before{content:"\f711"}.bi-calendar2-heart::before{content:"\f712"}.bi-chat-heart-fill::before{content:"\f713"}.bi-chat-heart::before{content:"\f714"}.bi-chat-left-heart-fill::before{content:"\f715"}.bi-chat-left-heart::before{content:"\f716"}.bi-chat-right-heart-fill::before{content:"\f717"}.bi-chat-right-heart::before{content:"\f718"}.bi-chat-square-heart-fill::before{content:"\f719"}.bi-chat-square-heart::before{content:"\f71a"}.bi-clipboard-check-fill::before{content:"\f71b"}.bi-clipboard-data-fill::before{content:"\f71c"}.bi-clipboard-fill::before{content:"\f71d"}.bi-clipboard-heart-fill::before{content:"\f71e"}.bi-clipboard-heart::before{content:"\f71f"}.bi-clipboard-minus-fill::before{content:"\f720"}.bi-clipboard-plus-fill::before{content:"\f721"}.bi-clipboard-pulse::before{content:"\f722"}.bi-clipboard-x-fill::before{content:"\f723"}.bi-clipboard2-check-fill::before{content:"\f724"}.bi-clipboard2-check::before{content:"\f725"}.bi-clipboard2-data-fill::before{content:"\f726"}.bi-clipboard2-data::before{content:"\f727"}.bi-clipboard2-fill::before{content:"\f728"}.bi-clipboard2-heart-fill::before{content:"\f729"}.bi-clipboard2-heart::before{content:"\f72a"}.bi-clipboard2-minus-fill::before{content:"\f72b"}.bi-clipboard2-minus::before{content:"\f72c"}.bi-clipboard2-plus-fill::before{content:"\f72d"}.bi-clipboard2-plus::before{content:"\f72e"}.bi-clipboard2-pulse-fill::before{content:"\f72f"}.bi-clipboard2-pulse::before{content:"\f730"}.bi-clipboard2-x-fill::before{content:"\f731"}.bi-clipboard2-x::before{content:"\f732"}.bi-clipboard2::before{content:"\f733"}.bi-emoji-kiss-fill::before{content:"\f734"}.bi-emoji-kiss::before{content:"\f735"}.bi-envelope-heart-fill::before{content:"\f736"}.bi-envelope-heart::before{content:"\f737"}.bi-envelope-open-heart-fill::before{content:"\f738"}.bi-envelope-open-heart::before{content:"\f739"}.bi-envelope-paper-fill::before{content:"\f73a"}.bi-envelope-paper-heart-fill::before{content:"\f73b"}.bi-envelope-paper-heart::before{content:"\f73c"}.bi-envelope-paper::before{content:"\f73d"}.bi-filetype-aac::before{content:"\f73e"}.bi-filetype-ai::before{content:"\f73f"}.bi-filetype-bmp::before{content:"\f740"}.bi-filetype-cs::before{content:"\f741"}.bi-filetype-css::before{content:"\f742"}.bi-filetype-csv::before{content:"\f743"}.bi-filetype-doc::before{content:"\f744"}.bi-filetype-docx::before{content:"\f745"}.bi-filetype-exe::before{content:"\f746"}.bi-filetype-gif::before{content:"\f747"}.bi-filetype-heic::before{content:"\f748"}.bi-filetype-html::before{content:"\f749"}.bi-filetype-java::before{content:"\f74a"}.bi-filetype-jpg::before{content:"\f74b"}.bi-filetype-js::before{content:"\f74c"}.bi-filetype-jsx::before{content:"\f74d"}.bi-filetype-key::before{content:"\f74e"}.bi-filetype-m4p::before{content:"\f74f"}.bi-filetype-md::before{content:"\f750"}.bi-filetype-mdx::before{content:"\f751"}.bi-filetype-mov::before{content:"\f752"}.bi-filetype-mp3::before{content:"\f753"}.bi-filetype-mp4::before{content:"\f754"}.bi-filetype-otf::before{content:"\f755"}.bi-filetype-pdf::before{content:"\f756"}.bi-filetype-php::before{content:"\f757"}.bi-filetype-png::before{content:"\f758"}.bi-filetype-ppt-1::before{content:"\f759"}.bi-filetype-ppt::before{content:"\f75a"}.bi-filetype-psd::before{content:"\f75b"}.bi-filetype-py::before{content:"\f75c"}.bi-filetype-raw::before{content:"\f75d"}.bi-filetype-rb::before{content:"\f75e"}.bi-filetype-sass::before{content:"\f75f"}.bi-filetype-scss::before{content:"\f760"}.bi-filetype-sh::before{content:"\f761"}.bi-filetype-svg::before{content:"\f762"}.bi-filetype-tiff::before{content:"\f763"}.bi-filetype-tsx::before{content:"\f764"}.bi-filetype-ttf::before{content:"\f765"}.bi-filetype-txt::before{content:"\f766"}.bi-filetype-wav::before{content:"\f767"}.bi-filetype-woff::before{content:"\f768"}.bi-filetype-xls-1::before{content:"\f769"}.bi-filetype-xls::before{content:"\f76a"}.bi-filetype-xml::before{content:"\f76b"}.bi-filetype-yml::before{content:"\f76c"}.bi-heart-arrow::before{content:"\f76d"}.bi-heart-pulse-fill::before{content:"\f76e"}.bi-heart-pulse::before{content:"\f76f"}.bi-heartbreak-fill::before{content:"\f770"}.bi-heartbreak::before{content:"\f771"}.bi-hearts::before{content:"\f772"}.bi-hospital-fill::before{content:"\f773"}.bi-hospital::before{content:"\f774"}.bi-house-heart-fill::before{content:"\f775"}.bi-house-heart::before{content:"\f776"}.bi-incognito::before{content:"\f777"}.bi-magnet-fill::before{content:"\f778"}.bi-magnet::before{content:"\f779"}.bi-person-heart::before{content:"\f77a"}.bi-person-hearts::before{content:"\f77b"}.bi-phone-flip::before{content:"\f77c"}.bi-plugin::before{content:"\f77d"}.bi-postage-fill::before{content:"\f77e"}.bi-postage-heart-fill::before{content:"\f77f"}.bi-postage-heart::before{content:"\f780"}.bi-postage::before{content:"\f781"}.bi-postcard-fill::before{content:"\f782"}.bi-postcard-heart-fill::before{content:"\f783"}.bi-postcard-heart::before{content:"\f784"}.bi-postcard::before{content:"\f785"}.bi-search-heart-fill::before{content:"\f786"}.bi-search-heart::before{content:"\f787"}.bi-sliders2-vertical::before{content:"\f788"}.bi-sliders2::before{content:"\f789"}.bi-trash3-fill::before{content:"\f78a"}.bi-trash3::before{content:"\f78b"}.bi-valentine::before{content:"\f78c"}.bi-valentine2::before{content:"\f78d"}.bi-wrench-adjustable-circle-fill::before{content:"\f78e"}.bi-wrench-adjustable-circle::before{content:"\f78f"}.bi-wrench-adjustable::before{content:"\f790"}.bi-filetype-json::before{content:"\f791"}.bi-filetype-pptx::before{content:"\f792"}.bi-filetype-xlsx::before{content:"\f793"}.bi-1-circle-1::before{content:"\f794"}.bi-1-circle-fill-1::before{content:"\f795"}.bi-1-circle-fill::before{content:"\f796"}.bi-1-circle::before{content:"\f797"}.bi-1-square-fill::before{content:"\f798"}.bi-1-square::before{content:"\f799"}.bi-2-circle-1::before{content:"\f79a"}.bi-2-circle-fill-1::before{content:"\f79b"}.bi-2-circle-fill::before{content:"\f79c"}.bi-2-circle::before{content:"\f79d"}.bi-2-square-fill::before{content:"\f79e"}.bi-2-square::before{content:"\f79f"}.bi-3-circle-1::before{content:"\f7a0"}.bi-3-circle-fill-1::before{content:"\f7a1"}.bi-3-circle-fill::before{content:"\f7a2"}.bi-3-circle::before{content:"\f7a3"}.bi-3-square-fill::before{content:"\f7a4"}.bi-3-square::before{content:"\f7a5"}.bi-4-circle-1::before{content:"\f7a6"}.bi-4-circle-fill-1::before{content:"\f7a7"}.bi-4-circle-fill::before{content:"\f7a8"}.bi-4-circle::before{content:"\f7a9"}.bi-4-square-fill::before{content:"\f7aa"}.bi-4-square::before{content:"\f7ab"}.bi-5-circle-1::before{content:"\f7ac"}.bi-5-circle-fill-1::before{content:"\f7ad"}.bi-5-circle-fill::before{content:"\f7ae"}.bi-5-circle::before{content:"\f7af"}.bi-5-square-fill::before{content:"\f7b0"}.bi-5-square::before{content:"\f7b1"}.bi-6-circle-1::before{content:"\f7b2"}.bi-6-circle-fill-1::before{content:"\f7b3"}.bi-6-circle-fill::before{content:"\f7b4"}.bi-6-circle::before{content:"\f7b5"}.bi-6-square-fill::before{content:"\f7b6"}.bi-6-square::before{content:"\f7b7"}.bi-7-circle-1::before{content:"\f7b8"}.bi-7-circle-fill-1::before{content:"\f7b9"}.bi-7-circle-fill::before{content:"\f7ba"}.bi-7-circle::before{content:"\f7bb"}.bi-7-square-fill::before{content:"\f7bc"}.bi-7-square::before{content:"\f7bd"}.bi-8-circle-1::before{content:"\f7be"}.bi-8-circle-fill-1::before{content:"\f7bf"}.bi-8-circle-fill::before{content:"\f7c0"}.bi-8-circle::before{content:"\f7c1"}.bi-8-square-fill::before{content:"\f7c2"}.bi-8-square::before{content:"\f7c3"}.bi-9-circle-1::before{content:"\f7c4"}.bi-9-circle-fill-1::before{content:"\f7c5"}.bi-9-circle-fill::before{content:"\f7c6"}.bi-9-circle::before{content:"\f7c7"}.bi-9-square-fill::before{content:"\f7c8"}.bi-9-square::before{content:"\f7c9"}.bi-airplane-engines-fill::before{content:"\f7ca"}.bi-airplane-engines::before{content:"\f7cb"}.bi-airplane-fill::before{content:"\f7cc"}.bi-airplane::before{content:"\f7cd"}.bi-alexa::before{content:"\f7ce"}.bi-alipay::before{content:"\f7cf"}.bi-android::before{content:"\f7d0"}.bi-android2::before{content:"\f7d1"}.bi-box-fill::before{content:"\f7d2"}.bi-box-seam-fill::before{content:"\f7d3"}.bi-browser-chrome::before{content:"\f7d4"}.bi-browser-edge::before{content:"\f7d5"}.bi-browser-firefox::before{content:"\f7d6"}.bi-browser-safari::before{content:"\f7d7"}.bi-c-circle-1::before{content:"\f7d8"}.bi-c-circle-fill-1::before{content:"\f7d9"}.bi-c-circle-fill::before{content:"\f7da"}.bi-c-circle::before{content:"\f7db"}.bi-c-square-fill::before{content:"\f7dc"}.bi-c-square::before{content:"\f7dd"}.bi-capsule-pill::before{content:"\f7de"}.bi-capsule::before{content:"\f7df"}.bi-car-front-fill::before{content:"\f7e0"}.bi-car-front::before{content:"\f7e1"}.bi-cassette-fill::before{content:"\f7e2"}.bi-cassette::before{content:"\f7e3"}.bi-cc-circle-1::before{content:"\f7e4"}.bi-cc-circle-fill-1::before{content:"\f7e5"}.bi-cc-circle-fill::before{content:"\f7e6"}.bi-cc-circle::before{content:"\f7e7"}.bi-cc-square-fill::before{content:"\f7e8"}.bi-cc-square::before{content:"\f7e9"}.bi-cup-hot-fill::before{content:"\f7ea"}.bi-cup-hot::before{content:"\f7eb"}.bi-currency-rupee::before{content:"\f7ec"}.bi-dropbox::before{content:"\f7ed"}.bi-escape::before{content:"\f7ee"}.bi-fast-forward-btn-fill::before{content:"\f7ef"}.bi-fast-forward-btn::before{content:"\f7f0"}.bi-fast-forward-circle-fill::before{content:"\f7f1"}.bi-fast-forward-circle::before{content:"\f7f2"}.bi-fast-forward-fill::before{content:"\f7f3"}.bi-fast-forward::before{content:"\f7f4"}.bi-filetype-sql::before{content:"\f7f5"}.bi-fire::before{content:"\f7f6"}.bi-google-play::before{content:"\f7f7"}.bi-h-circle-1::before{content:"\f7f8"}.bi-h-circle-fill-1::before{content:"\f7f9"}.bi-h-circle-fill::before{content:"\f7fa"}.bi-h-circle::before{content:"\f7fb"}.bi-h-square-fill::before{content:"\f7fc"}.bi-h-square::before{content:"\f7fd"}.bi-indent::before{content:"\f7fe"}.bi-lungs-fill::before{content:"\f7ff"}.bi-lungs::before{content:"\f800"}.bi-microsoft-teams::before{content:"\f801"}.bi-p-circle-1::before{content:"\f802"}.bi-p-circle-fill-1::before{content:"\f803"}.bi-p-circle-fill::before{content:"\f804"}.bi-p-circle::before{content:"\f805"}.bi-p-square-fill::before{content:"\f806"}.bi-p-square::before{content:"\f807"}.bi-pass-fill::before{content:"\f808"}.bi-pass::before{content:"\f809"}.bi-prescription::before{content:"\f80a"}.bi-prescription2::before{content:"\f80b"}.bi-r-circle-1::before{content:"\f80c"}.bi-r-circle-fill-1::before{content:"\f80d"}.bi-r-circle-fill::before{content:"\f80e"}.bi-r-circle::before{content:"\f80f"}.bi-r-square-fill::before{content:"\f810"}.bi-r-square::before{content:"\f811"}.bi-repeat-1::before{content:"\f812"}.bi-repeat::before{content:"\f813"}.bi-rewind-btn-fill::before{content:"\f814"}.bi-rewind-btn::before{content:"\f815"}.bi-rewind-circle-fill::before{content:"\f816"}.bi-rewind-circle::before{content:"\f817"}.bi-rewind-fill::before{content:"\f818"}.bi-rewind::before{content:"\f819"}.bi-train-freight-front-fill::before{content:"\f81a"}.bi-train-freight-front::before{content:"\f81b"}.bi-train-front-fill::before{content:"\f81c"}.bi-train-front::before{content:"\f81d"}.bi-train-lightrail-front-fill::before{content:"\f81e"}.bi-train-lightrail-front::before{content:"\f81f"}.bi-truck-front-fill::before{content:"\f820"}.bi-truck-front::before{content:"\f821"}.bi-ubuntu::before{content:"\f822"}.bi-unindent::before{content:"\f823"}.bi-unity::before{content:"\f824"}.bi-universal-access-circle::before{content:"\f825"}.bi-universal-access::before{content:"\f826"}.bi-virus::before{content:"\f827"}.bi-virus2::before{content:"\f828"}.bi-wechat::before{content:"\f829"}.bi-yelp::before{content:"\f82a"}.bi-sign-stop-fill::before{content:"\f82b"}.bi-sign-stop-lights-fill::before{content:"\f82c"}.bi-sign-stop-lights::before{content:"\f82d"}.bi-sign-stop::before{content:"\f82e"}.bi-sign-turn-left-fill::before{content:"\f82f"}.bi-sign-turn-left::before{content:"\f830"}.bi-sign-turn-right-fill::before{content:"\f831"}.bi-sign-turn-right::before{content:"\f832"}.bi-sign-turn-slight-left-fill::before{content:"\f833"}.bi-sign-turn-slight-left::before{content:"\f834"}.bi-sign-turn-slight-right-fill::before{content:"\f835"}.bi-sign-turn-slight-right::before{content:"\f836"}.bi-sign-yield-fill::before{content:"\f837"}.bi-sign-yield::before{content:"\f838"}.bi-ev-station-fill::before{content:"\f839"}.bi-ev-station::before{content:"\f83a"}.bi-fuel-pump-diesel-fill::before{content:"\f83b"}.bi-fuel-pump-diesel::before{content:"\f83c"}.bi-fuel-pump-fill::before{content:"\f83d"}.bi-fuel-pump::before{content:"\f83e"}
+@font-face{font-family:feather;src:url(../fonts/feather.eot?oz8w89);src:url(../fonts/feather.eot?oz8w89#iefix) format("embedded-opentype"),url(../fonts/feather.ttf?oz8w89) format("truetype"),url(../fonts/feather.woff?oz8w89) format("woff"),url(../fonts/feather.svg?oz8w89#feather) format("svg");font-weight:400;font-style:normal;font-display:block}i{font-size:16px;font-family:feather;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.feather-activity:before{content:"\e900"}.feather-airplay:before{content:"\e901"}.feather-alert-circle:before{content:"\e902"}.feather-alert-octagon:before{content:"\e903"}.feather-alert-triangle:before{content:"\e904"}.feather-align-center:before{content:"\e905"}.feather-align-justify:before{content:"\e906"}.feather-align-left:before{content:"\e907"}.feather-align-right:before{content:"\e908"}.feather-anchor:before{content:"\e909"}.feather-aperture:before{content:"\e90a"}.feather-archive:before{content:"\e90b"}.feather-arrow-down:before{content:"\e90c"}.feather-arrow-down-circle:before{content:"\e90d"}.feather-arrow-down-left:before{content:"\e90e"}.feather-arrow-down-right:before{content:"\e90f"}.feather-arrow-left:before{content:"\e910"}.feather-arrow-left-circle:before{content:"\e911"}.feather-arrow-right:before{content:"\e912"}.feather-arrow-right-circle:before{content:"\e913"}.feather-arrow-up:before{content:"\e914"}.feather-arrow-up-circle:before{content:"\e915"}.feather-arrow-up-left:before{content:"\e916"}.feather-arrow-up-right:before{content:"\e917"}.feather-at-sign:before{content:"\e918"}.feather-award:before{content:"\e919"}.feather-bar-chart:before{content:"\e91a"}.feather-bar-chart-2:before{content:"\e91b"}.feather-battery:before{content:"\e91c"}.feather-battery-charging:before{content:"\e91d"}.feather-bell:before{content:"\e91e"}.feather-bell-off:before{content:"\e91f"}.feather-bluetooth:before{content:"\e920"}.feather-bold:before{content:"\e921"}.feather-book:before{content:"\e922"}.feather-book-open:before{content:"\e923"}.feather-bookmark:before{content:"\e924"}.feather-box:before{content:"\e925"}.feather-briefcase:before{content:"\e926"}.feather-calendar:before{content:"\e927"}.feather-camera:before{content:"\e928"}.feather-camera-off:before{content:"\e929"}.feather-cast:before{content:"\e92a"}.feather-check:before{content:"\e92b"}.feather-check-circle:before{content:"\e92c"}.feather-check-square:before{content:"\e92d"}.feather-chevron-down:before{content:"\e92e"}.feather-chevron-left:before{content:"\e92f"}.feather-chevron-right:before{content:"\e930"}.feather-chevron-up:before{content:"\e931"}.feather-chevrons-down:before{content:"\e932"}.feather-chevrons-left:before{content:"\e933"}.feather-chevrons-right:before{content:"\e934"}.feather-chevrons-up:before{content:"\e935"}.feather-chrome:before{content:"\e936"}.feather-circle:before{content:"\e937"}.feather-clipboard:before{content:"\e938"}.feather-clock:before{content:"\e939"}.feather-cloud:before{content:"\e93a"}.feather-cloud-drizzle:before{content:"\e93b"}.feather-cloud-lightning:before{content:"\e93c"}.feather-cloud-off:before{content:"\e93d"}.feather-cloud-rain:before{content:"\e93e"}.feather-cloud-snow:before{content:"\e93f"}.feather-code:before{content:"\e940"}.feather-codepen:before{content:"\e941"}.feather-codesandbox:before{content:"\e942"}.feather-coffee:before{content:"\e943"}.feather-columns:before{content:"\e944"}.feather-command:before{content:"\e945"}.feather-compass:before{content:"\e946"}.feather-copy:before{content:"\e947"}.feather-corner-down-left:before{content:"\e948"}.feather-corner-down-right:before{content:"\e949"}.feather-corner-left-down:before{content:"\e94a"}.feather-corner-left-up:before{content:"\e94b"}.feather-corner-right-down:before{content:"\e94c"}.feather-corner-right-up:before{content:"\e94d"}.feather-corner-up-left:before{content:"\e94e"}.feather-corner-up-right:before{content:"\e94f"}.feather-cpu:before{content:"\e950"}.feather-credit-card:before{content:"\e951"}.feather-crop:before{content:"\e952"}.feather-crosshair:before{content:"\e953"}.feather-database:before{content:"\e954"}.feather-delete:before{content:"\e955"}.feather-disc:before{content:"\e956"}.feather-dollar-sign:before{content:"\e957"}.feather-download:before{content:"\e958"}.feather-download-cloud:before{content:"\e959"}.feather-droplet:before{content:"\e95a"}.feather-edit:before{content:"\e95b"}.feather-edit-2:before{content:"\e95c"}.feather-edit-3:before{content:"\e95d"}.feather-external-link:before{content:"\e95e"}.feather-eye:before{content:"\e95f"}.feather-eye-off:before{content:"\e960"}.feather-facebook:before{content:"\e961"}.feather-fast-forward:before{content:"\e962"}.feather-feather:before{content:"\e963"}.feather-figma:before{content:"\e964"}.feather-file:before{content:"\e965"}.feather-file-minus:before{content:"\e966"}.feather-file-plus:before{content:"\e967"}.feather-file-text:before{content:"\e968"}.feather-film:before{content:"\e969"}.feather-filter:before{content:"\e96a"}.feather-flag:before{content:"\e96b"}.feather-folder:before{content:"\e96c"}.feather-folder-minus:before{content:"\e96d"}.feather-folder-plus:before{content:"\e96e"}.feather-framer:before{content:"\e96f"}.feather-frown:before{content:"\e970"}.feather-gift:before{content:"\e971"}.feather-git-branch:before{content:"\e972"}.feather-git-commit:before{content:"\e973"}.feather-git-merge:before{content:"\e974"}.feather-git-pull-request:before{content:"\e975"}.feather-github:before{content:"\e976"}.feather-gitlab:before{content:"\e977"}.feather-globe:before{content:"\e978"}.feather-grid:before{content:"\e979"}.feather-hard-drive:before{content:"\e97a"}.feather-hash:before{content:"\e97b"}.feather-headphones:before{content:"\e97c"}.feather-heart:before{content:"\e97d"}.feather-help-circle:before{content:"\e97e"}.feather-hexagon:before{content:"\e97f"}.feather-home:before{content:"\e980"}.feather-image:before{content:"\e981"}.feather-inbox:before{content:"\e982"}.feather-info:before{content:"\e983"}.feather-instagram:before{content:"\e984"}.feather-italic:before{content:"\e985"}.feather-key:before{content:"\e986"}.feather-layers:before{content:"\e987"}.feather-layout:before{content:"\e988"}.feather-life-buoy:before{content:"\e989"}.feather-link:before{content:"\e98a"}.feather-link-2:before{content:"\e98b"}.feather-linkedin:before{content:"\e98c"}.feather-list:before{content:"\e98d"}.feather-loader:before{content:"\e98e"}.feather-lock:before{content:"\e98f"}.feather-log-in:before{content:"\e990"}.feather-log-out:before{content:"\e991"}.feather-mail:before{content:"\e992"}.feather-map:before{content:"\e993"}.feather-map-pin:before{content:"\e994"}.feather-maximize:before{content:"\e995"}.feather-maximize-2:before{content:"\e996"}.feather-meh:before{content:"\e997"}.feather-menu:before{content:"\e998"}.feather-message-circle:before{content:"\e999"}.feather-message-square:before{content:"\e99a"}.feather-mic:before{content:"\e99b"}.feather-mic-off:before{content:"\e99c"}.feather-minimize:before{content:"\e99d"}.feather-minimize-2:before{content:"\e99e"}.feather-minus:before{content:"\e99f"}.feather-minus-circle:before{content:"\e9a0"}.feather-minus-square:before{content:"\e9a1"}.feather-monitor:before{content:"\e9a2"}.feather-moon:before{content:"\e9a3"}.feather-more-horizontal:before{content:"\e9a4"}.feather-more-vertical:before{content:"\e9a5"}.feather-mouse-pointer:before{content:"\e9a6"}.feather-move:before{content:"\e9a7"}.feather-music:before{content:"\e9a8"}.feather-navigation:before{content:"\e9a9"}.feather-navigation-2:before{content:"\e9aa"}.feather-octagon:before{content:"\e9ab"}.feather-package:before{content:"\e9ac"}.feather-paperclip:before{content:"\e9ad"}.feather-pause:before{content:"\e9ae"}.feather-pause-circle:before{content:"\e9af"}.feather-pen-tool:before{content:"\e9b0"}.feather-percent:before{content:"\e9b1"}.feather-phone:before{content:"\e9b2"}.feather-phone-call:before{content:"\e9b3"}.feather-phone-forwarded:before{content:"\e9b4"}.feather-phone-incoming:before{content:"\e9b5"}.feather-phone-missed:before{content:"\e9b6"}.feather-phone-off:before{content:"\e9b7"}.feather-phone-outgoing:before{content:"\e9b8"}.feather-pie-chart:before{content:"\e9b9"}.feather-play:before{content:"\e9ba"}.feather-play-circle:before{content:"\e9bb"}.feather-plus:before{content:"\e9bc"}.feather-plus-circle:before{content:"\e9bd"}.feather-plus-square:before{content:"\e9be"}.feather-pocket:before{content:"\e9bf"}.feather-power:before{content:"\e9c0"}.feather-printer:before{content:"\e9c1"}.feather-radio:before{content:"\e9c2"}.feather-refresh-ccw:before{content:"\e9c3"}.feather-refresh-cw:before{content:"\e9c4"}.feather-repeat:before{content:"\e9c5"}.feather-rewind:before{content:"\e9c6"}.feather-rotate-ccw:before{content:"\e9c7"}.feather-rotate-cw:before{content:"\e9c8"}.feather-rss:before{content:"\e9c9"}.feather-save:before{content:"\e9ca"}.feather-scissors:before{content:"\e9cb"}.feather-search:before{content:"\e9cc"}.feather-send:before{content:"\e9cd"}.feather-server:before{content:"\e9ce"}.feather-settings:before{content:"\e9cf"}.feather-share:before{content:"\e9d0"}.feather-share-2:before{content:"\e9d1"}.feather-shield:before{content:"\e9d2"}.feather-shield-off:before{content:"\e9d3"}.feather-shopping-bag:before{content:"\e9d4"}.feather-shopping-cart:before{content:"\e9d5"}.feather-shuffle:before{content:"\e9d6"}.feather-sidebar:before{content:"\e9d7"}.feather-skip-back:before{content:"\e9d8"}.feather-skip-forward:before{content:"\e9d9"}.feather-slack:before{content:"\e9da"}.feather-slash:before{content:"\e9db"}.feather-sliders:before{content:"\e9dc"}.feather-smartphone:before{content:"\e9dd"}.feather-smile:before{content:"\e9de"}.feather-speaker:before{content:"\e9df"}.feather-square:before{content:"\e9e0"}.feather-star:before{content:"\e9e1"}.feather-stop-circle:before{content:"\e9e2"}.feather-sun:before{content:"\e9e3"}.feather-sunrise:before{content:"\e9e4"}.feather-sunset:before{content:"\e9e5"}.feather-tablet:before{content:"\e9e6"}.feather-tag:before{content:"\e9e7"}.feather-target:before{content:"\e9e8"}.feather-terminal:before{content:"\e9e9"}.feather-thermometer:before{content:"\e9ea"}.feather-thumbs-down:before{content:"\e9eb"}.feather-thumbs-up:before{content:"\e9ec"}.feather-toggle-left:before{content:"\e9ed"}.feather-toggle-right:before{content:"\e9ee"}.feather-tool:before{content:"\e9ef"}.feather-trash:before{content:"\e9f0"}.feather-trash-2:before{content:"\e9f1"}.feather-trello:before{content:"\e9f2"}.feather-trending-down:before{content:"\e9f3"}.feather-trending-up:before{content:"\e9f4"}.feather-triangle:before{content:"\e9f5"}.feather-truck:before{content:"\e9f6"}.feather-tv:before{content:"\e9f7"}.feather-twitch:before{content:"\e9f8"}.feather-twitter:before{content:"\e9f9"}.feather-type:before{content:"\e9fa"}.feather-umbrella:before{content:"\e9fb"}.feather-underline:before{content:"\e9fc"}.feather-unlock:before{content:"\e9fd"}.feather-upload:before{content:"\e9fe"}.feather-upload-cloud:before{content:"\e9ff"}.feather-user:before{content:"\ea00"}.feather-user-check:before{content:"\ea01"}.feather-user-minus:before{content:"\ea02"}.feather-user-plus:before{content:"\ea03"}.feather-user-x:before{content:"\ea04"}.feather-users:before{content:"\ea05"}.feather-video:before{content:"\ea06"}.feather-video-off:before{content:"\ea07"}.feather-voicemail:before{content:"\ea08"}.feather-volume:before{content:"\ea09"}.feather-volume-1:before{content:"\ea0a"}.feather-volume-2:before{content:"\ea0b"}.feather-volume-x:before{content:"\ea0c"}.feather-watch:before{content:"\ea0d"}.feather-wifi:before{content:"\ea0e"}.feather-wifi-off:before{content:"\ea0f"}.feather-wind:before{content:"\ea10"}.feather-x:before{content:"\ea11"}.feather-x-circle:before{content:"\ea12"}.feather-x-octagon:before{content:"\ea13"}.feather-x-square:before{content:"\ea14"}.feather-youtube:before{content:"\ea15"}.feather-zap:before{content:"\ea16"}.feather-zap-off:before{content:"\ea17"}.feather-zoom-in:before{content:"\ea18"}.feather-zoom-out:before{content:"\ea19"}
+/*!
+ * Font Awesome Free 6.1.2 by @fontawesome - https://fontawesome.com
+ * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
+ * Copyright 2022 Fonticons, Inc.
+ */.fa{font-family:var(--fa-style-family, "Font Awesome 6 Free");font-weight:var(--fa-style,900)}.fa,.fa-brands,.fa-duotone,.fa-light,.fa-regular,.fa-solid,.fa-thin,.fab,.fad,.fal,.far,.fas,.fat{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:var(--fa-display,inline-block);font-style:normal;font-variant:normal;line-height:1;text-rendering:auto}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-2xs{font-size:.625em;line-height:.1em;vertical-align:.225em}.fa-xs{font-size:.75em;line-height:.08333em;vertical-align:.125em}.fa-sm{font-size:.875em;line-height:.07143em;vertical-align:.05357em}.fa-lg{font-size:1.25em;line-height:.05em;vertical-align:-.075em}.fa-xl{font-size:1.5em;line-height:.04167em;vertical-align:-.125em}.fa-2xl{font-size:2em;line-height:.03125em;vertical-align:-.1875em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:var(--fa-li-margin,2.5em);padding-left:0}.fa-ul>li{position:relative}.fa-li{left:calc(var(--fa-li-width,2em) * -1);position:absolute;text-align:center;width:var(--fa-li-width,2em);line-height:inherit}.fa-border{border-color:var(--fa-border-color,#eee);border-radius:var(--fa-border-radius,.1em);border-style:var(--fa-border-style,solid);border-width:var(--fa-border-width,.08em);padding:var(--fa-border-padding,.2em .25em .15em)}.fa-pull-left{float:left;margin-right:var(--fa-pull-margin,.3em)}.fa-pull-right{float:right;margin-left:var(--fa-pull-margin,.3em)}.fa-beat{-webkit-animation-name:fa-beat;animation-name:fa-beat;-webkit-animation-delay:var(--fa-animation-delay,0);animation-delay:var(--fa-animation-delay,0);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,ease-in-out);animation-timing-function:var(--fa-animation-timing,ease-in-out)}.fa-bounce{-webkit-animation-name:fa-bounce;animation-name:fa-bounce;-webkit-animation-delay:var(--fa-animation-delay,0);animation-delay:var(--fa-animation-delay,0);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.28,.84,.42,1));animation-timing-function:var(--fa-animation-timing,cubic-bezier(.28,.84,.42,1))}.fa-fade{-webkit-animation-name:fa-fade;animation-name:fa-fade;-webkit-animation-delay:var(--fa-animation-delay,0);animation-delay:var(--fa-animation-delay,0);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1));animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))}.fa-beat-fade{-webkit-animation-name:fa-beat-fade;animation-name:fa-beat-fade;-webkit-animation-delay:var(--fa-animation-delay,0);animation-delay:var(--fa-animation-delay,0);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1));animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))}.fa-flip{-webkit-animation-name:fa-flip;animation-name:fa-flip;-webkit-animation-delay:var(--fa-animation-delay,0);animation-delay:var(--fa-animation-delay,0);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,ease-in-out);animation-timing-function:var(--fa-animation-timing,ease-in-out)}.fa-shake{-webkit-animation-name:fa-shake;animation-name:fa-shake;-webkit-animation-delay:var(--fa-animation-delay,0);animation-delay:var(--fa-animation-delay,0);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,linear);animation-timing-function:var(--fa-animation-timing,linear)}.fa-spin{-webkit-animation-name:fa-spin;animation-name:fa-spin;-webkit-animation-delay:var(--fa-animation-delay,0);animation-delay:var(--fa-animation-delay,0);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,2s);animation-duration:var(--fa-animation-duration,2s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,linear);animation-timing-function:var(--fa-animation-timing,linear)}.fa-spin-reverse{--fa-animation-direction:reverse}.fa-pulse,.fa-spin-pulse{-webkit-animation-name:fa-spin;animation-name:fa-spin;-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,steps(8));animation-timing-function:var(--fa-animation-timing,steps(8))}@media (prefers-reduced-motion:reduce){.fa-beat,.fa-beat-fade,.fa-bounce,.fa-fade,.fa-flip,.fa-pulse,.fa-shake,.fa-spin,.fa-spin-pulse{-webkit-animation-delay:-1ms;animation-delay:-1ms;-webkit-animation-duration:1ms;animation-duration:1ms;-webkit-animation-iteration-count:1;animation-iteration-count:1;transition-delay:0s;transition-duration:0s}}@-webkit-keyframes fa-beat{0%,90%{-webkit-transform:scale(1);transform:scale(1)}45%{-webkit-transform:scale(var(--fa-beat-scale,1.25));transform:scale(var(--fa-beat-scale,1.25))}}@keyframes fa-beat{0%,90%{-webkit-transform:scale(1);transform:scale(1)}45%{-webkit-transform:scale(var(--fa-beat-scale,1.25));transform:scale(var(--fa-beat-scale,1.25))}}@-webkit-keyframes fa-bounce{0%{-webkit-transform:scale(1,1) translateY(0);transform:scale(1,1) translateY(0)}10%{-webkit-transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0);transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0)}30%{-webkit-transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em));transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em))}50%{-webkit-transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0);transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0)}57%{-webkit-transform:scale(1,1) translateY(var(--fa-bounce-rebound,-.125em));transform:scale(1,1) translateY(var(--fa-bounce-rebound,-.125em))}64%{-webkit-transform:scale(1,1) translateY(0);transform:scale(1,1) translateY(0)}100%{-webkit-transform:scale(1,1) translateY(0);transform:scale(1,1) translateY(0)}}@keyframes fa-bounce{0%{-webkit-transform:scale(1,1) translateY(0);transform:scale(1,1) translateY(0)}10%{-webkit-transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0);transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0)}30%{-webkit-transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em));transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em))}50%{-webkit-transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0);transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0)}57%{-webkit-transform:scale(1,1) translateY(var(--fa-bounce-rebound,-.125em));transform:scale(1,1) translateY(var(--fa-bounce-rebound,-.125em))}64%{-webkit-transform:scale(1,1) translateY(0);transform:scale(1,1) translateY(0)}100%{-webkit-transform:scale(1,1) translateY(0);transform:scale(1,1) translateY(0)}}@-webkit-keyframes fa-fade{50%{opacity:var(--fa-fade-opacity,.4)}}@keyframes fa-fade{50%{opacity:var(--fa-fade-opacity,.4)}}@-webkit-keyframes fa-beat-fade{0%,100%{opacity:var(--fa-beat-fade-opacity,.4);-webkit-transform:scale(1);transform:scale(1)}50%{opacity:1;-webkit-transform:scale(var(--fa-beat-fade-scale,1.125));transform:scale(var(--fa-beat-fade-scale,1.125))}}@keyframes fa-beat-fade{0%,100%{opacity:var(--fa-beat-fade-opacity,.4);-webkit-transform:scale(1);transform:scale(1)}50%{opacity:1;-webkit-transform:scale(var(--fa-beat-fade-scale,1.125));transform:scale(var(--fa-beat-fade-scale,1.125))}}@-webkit-keyframes fa-flip{50%{-webkit-transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg));transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg))}}@keyframes fa-flip{50%{-webkit-transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg));transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg))}}@-webkit-keyframes fa-shake{0%{-webkit-transform:rotate(-15deg);transform:rotate(-15deg)}4%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}24%,8%{-webkit-transform:rotate(-18deg);transform:rotate(-18deg)}12%,28%{-webkit-transform:rotate(18deg);transform:rotate(18deg)}16%{-webkit-transform:rotate(-22deg);transform:rotate(-22deg)}20%{-webkit-transform:rotate(22deg);transform:rotate(22deg)}32%{-webkit-transform:rotate(-12deg);transform:rotate(-12deg)}36%{-webkit-transform:rotate(12deg);transform:rotate(12deg)}100%,40%{-webkit-transform:rotate(0);transform:rotate(0)}}@keyframes fa-shake{0%{-webkit-transform:rotate(-15deg);transform:rotate(-15deg)}4%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}24%,8%{-webkit-transform:rotate(-18deg);transform:rotate(-18deg)}12%,28%{-webkit-transform:rotate(18deg);transform:rotate(18deg)}16%{-webkit-transform:rotate(-22deg);transform:rotate(-22deg)}20%{-webkit-transform:rotate(22deg);transform:rotate(22deg)}32%{-webkit-transform:rotate(-12deg);transform:rotate(-12deg)}36%{-webkit-transform:rotate(12deg);transform:rotate(12deg)}100%,40%{-webkit-transform:rotate(0);transform:rotate(0)}}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.fa-rotate-90{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-webkit-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-webkit-transform:scale(-1,1);transform:scale(-1,1)}.fa-flip-vertical{-webkit-transform:scale(1,-1);transform:scale(1,-1)}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical{-webkit-transform:scale(-1,-1);transform:scale(-1,-1)}.fa-rotate-by{-webkit-transform:rotate(var(--fa-rotate-angle,none));transform:rotate(var(--fa-rotate-angle,none))}.fa-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2.5em}.fa-stack-1x,.fa-stack-2x{left:0;position:absolute;text-align:center;width:100%;z-index:var(--fa-stack-z-index,auto)}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:var(--fa-inverse,#fff)}.fa-0::before{content:"\30"}.fa-1::before{content:"\31"}.fa-2::before{content:"\32"}.fa-3::before{content:"\33"}.fa-4::before{content:"\34"}.fa-5::before{content:"\35"}.fa-6::before{content:"\36"}.fa-7::before{content:"\37"}.fa-8::before{content:"\38"}.fa-9::before{content:"\39"}.fa-a::before{content:"\41"}.fa-address-book::before{content:"\f2b9"}.fa-contact-book::before{content:"\f2b9"}.fa-address-card::before{content:"\f2bb"}.fa-contact-card::before{content:"\f2bb"}.fa-vcard::before{content:"\f2bb"}.fa-align-center::before{content:"\f037"}.fa-align-justify::before{content:"\f039"}.fa-align-left::before{content:"\f036"}.fa-align-right::before{content:"\f038"}.fa-anchor::before{content:"\f13d"}.fa-anchor-circle-check::before{content:"\e4aa"}.fa-anchor-circle-exclamation::before{content:"\e4ab"}.fa-anchor-circle-xmark::before{content:"\e4ac"}.fa-anchor-lock::before{content:"\e4ad"}.fa-angle-down::before{content:"\f107"}.fa-angle-left::before{content:"\f104"}.fa-angle-right::before{content:"\f105"}.fa-angle-up::before{content:"\f106"}.fa-angles-down::before{content:"\f103"}.fa-angle-double-down::before{content:"\f103"}.fa-angles-left::before{content:"\f100"}.fa-angle-double-left::before{content:"\f100"}.fa-angles-right::before{content:"\f101"}.fa-angle-double-right::before{content:"\f101"}.fa-angles-up::before{content:"\f102"}.fa-angle-double-up::before{content:"\f102"}.fa-ankh::before{content:"\f644"}.fa-apple-whole::before{content:"\f5d1"}.fa-apple-alt::before{content:"\f5d1"}.fa-archway::before{content:"\f557"}.fa-arrow-down::before{content:"\f063"}.fa-arrow-down-1-9::before{content:"\f162"}.fa-sort-numeric-asc::before{content:"\f162"}.fa-sort-numeric-down::before{content:"\f162"}.fa-arrow-down-9-1::before{content:"\f886"}.fa-sort-numeric-desc::before{content:"\f886"}.fa-sort-numeric-down-alt::before{content:"\f886"}.fa-arrow-down-a-z::before{content:"\f15d"}.fa-sort-alpha-asc::before{content:"\f15d"}.fa-sort-alpha-down::before{content:"\f15d"}.fa-arrow-down-long::before{content:"\f175"}.fa-long-arrow-down::before{content:"\f175"}.fa-arrow-down-short-wide::before{content:"\f884"}.fa-sort-amount-desc::before{content:"\f884"}.fa-sort-amount-down-alt::before{content:"\f884"}.fa-arrow-down-up-across-line::before{content:"\e4af"}.fa-arrow-down-up-lock::before{content:"\e4b0"}.fa-arrow-down-wide-short::before{content:"\f160"}.fa-sort-amount-asc::before{content:"\f160"}.fa-sort-amount-down::before{content:"\f160"}.fa-arrow-down-z-a::before{content:"\f881"}.fa-sort-alpha-desc::before{content:"\f881"}.fa-sort-alpha-down-alt::before{content:"\f881"}.fa-arrow-left::before{content:"\f060"}.fa-arrow-left-long::before{content:"\f177"}.fa-long-arrow-left::before{content:"\f177"}.fa-arrow-pointer::before{content:"\f245"}.fa-mouse-pointer::before{content:"\f245"}.fa-arrow-right::before{content:"\f061"}.fa-arrow-right-arrow-left::before{content:"\f0ec"}.fa-exchange::before{content:"\f0ec"}.fa-arrow-right-from-bracket::before{content:"\f08b"}.fa-sign-out::before{content:"\f08b"}.fa-arrow-right-long::before{content:"\f178"}.fa-long-arrow-right::before{content:"\f178"}.fa-arrow-right-to-bracket::before{content:"\f090"}.fa-sign-in::before{content:"\f090"}.fa-arrow-right-to-city::before{content:"\e4b3"}.fa-arrow-rotate-left::before{content:"\f0e2"}.fa-arrow-left-rotate::before{content:"\f0e2"}.fa-arrow-rotate-back::before{content:"\f0e2"}.fa-arrow-rotate-backward::before{content:"\f0e2"}.fa-undo::before{content:"\f0e2"}.fa-arrow-rotate-right::before{content:"\f01e"}.fa-arrow-right-rotate::before{content:"\f01e"}.fa-arrow-rotate-forward::before{content:"\f01e"}.fa-redo::before{content:"\f01e"}.fa-arrow-trend-down::before{content:"\e097"}.fa-arrow-trend-up::before{content:"\e098"}.fa-arrow-turn-down::before{content:"\f149"}.fa-level-down::before{content:"\f149"}.fa-arrow-turn-up::before{content:"\f148"}.fa-level-up::before{content:"\f148"}.fa-arrow-up::before{content:"\f062"}.fa-arrow-up-1-9::before{content:"\f163"}.fa-sort-numeric-up::before{content:"\f163"}.fa-arrow-up-9-1::before{content:"\f887"}.fa-sort-numeric-up-alt::before{content:"\f887"}.fa-arrow-up-a-z::before{content:"\f15e"}.fa-sort-alpha-up::before{content:"\f15e"}.fa-arrow-up-from-bracket::before{content:"\e09a"}.fa-arrow-up-from-ground-water::before{content:"\e4b5"}.fa-arrow-up-from-water-pump::before{content:"\e4b6"}.fa-arrow-up-long::before{content:"\f176"}.fa-long-arrow-up::before{content:"\f176"}.fa-arrow-up-right-dots::before{content:"\e4b7"}.fa-arrow-up-right-from-square::before{content:"\f08e"}.fa-external-link::before{content:"\f08e"}.fa-arrow-up-short-wide::before{content:"\f885"}.fa-sort-amount-up-alt::before{content:"\f885"}.fa-arrow-up-wide-short::before{content:"\f161"}.fa-sort-amount-up::before{content:"\f161"}.fa-arrow-up-z-a::before{content:"\f882"}.fa-sort-alpha-up-alt::before{content:"\f882"}.fa-arrows-down-to-line::before{content:"\e4b8"}.fa-arrows-down-to-people::before{content:"\e4b9"}.fa-arrows-left-right::before{content:"\f07e"}.fa-arrows-h::before{content:"\f07e"}.fa-arrows-left-right-to-line::before{content:"\e4ba"}.fa-arrows-rotate::before{content:"\f021"}.fa-refresh::before{content:"\f021"}.fa-sync::before{content:"\f021"}.fa-arrows-spin::before{content:"\e4bb"}.fa-arrows-split-up-and-left::before{content:"\e4bc"}.fa-arrows-to-circle::before{content:"\e4bd"}.fa-arrows-to-dot::before{content:"\e4be"}.fa-arrows-to-eye::before{content:"\e4bf"}.fa-arrows-turn-right::before{content:"\e4c0"}.fa-arrows-turn-to-dots::before{content:"\e4c1"}.fa-arrows-up-down::before{content:"\f07d"}.fa-arrows-v::before{content:"\f07d"}.fa-arrows-up-down-left-right::before{content:"\f047"}.fa-arrows::before{content:"\f047"}.fa-arrows-up-to-line::before{content:"\e4c2"}.fa-asterisk::before{content:"\2a"}.fa-at::before{content:"\40"}.fa-atom::before{content:"\f5d2"}.fa-audio-description::before{content:"\f29e"}.fa-austral-sign::before{content:"\e0a9"}.fa-award::before{content:"\f559"}.fa-b::before{content:"\42"}.fa-baby::before{content:"\f77c"}.fa-baby-carriage::before{content:"\f77d"}.fa-carriage-baby::before{content:"\f77d"}.fa-backward::before{content:"\f04a"}.fa-backward-fast::before{content:"\f049"}.fa-fast-backward::before{content:"\f049"}.fa-backward-step::before{content:"\f048"}.fa-step-backward::before{content:"\f048"}.fa-bacon::before{content:"\f7e5"}.fa-bacteria::before{content:"\e059"}.fa-bacterium::before{content:"\e05a"}.fa-bag-shopping::before{content:"\f290"}.fa-shopping-bag::before{content:"\f290"}.fa-bahai::before{content:"\f666"}.fa-haykal::before{content:"\f666"}.fa-baht-sign::before{content:"\e0ac"}.fa-ban::before{content:"\f05e"}.fa-cancel::before{content:"\f05e"}.fa-ban-smoking::before{content:"\f54d"}.fa-smoking-ban::before{content:"\f54d"}.fa-bandage::before{content:"\f462"}.fa-band-aid::before{content:"\f462"}.fa-barcode::before{content:"\f02a"}.fa-bars::before{content:"\f0c9"}.fa-navicon::before{content:"\f0c9"}.fa-bars-progress::before{content:"\f828"}.fa-tasks-alt::before{content:"\f828"}.fa-bars-staggered::before{content:"\f550"}.fa-reorder::before{content:"\f550"}.fa-stream::before{content:"\f550"}.fa-baseball::before{content:"\f433"}.fa-baseball-ball::before{content:"\f433"}.fa-baseball-bat-ball::before{content:"\f432"}.fa-basket-shopping::before{content:"\f291"}.fa-shopping-basket::before{content:"\f291"}.fa-basketball::before{content:"\f434"}.fa-basketball-ball::before{content:"\f434"}.fa-bath::before{content:"\f2cd"}.fa-bathtub::before{content:"\f2cd"}.fa-battery-empty::before{content:"\f244"}.fa-battery-0::before{content:"\f244"}.fa-battery-full::before{content:"\f240"}.fa-battery::before{content:"\f240"}.fa-battery-5::before{content:"\f240"}.fa-battery-half::before{content:"\f242"}.fa-battery-3::before{content:"\f242"}.fa-battery-quarter::before{content:"\f243"}.fa-battery-2::before{content:"\f243"}.fa-battery-three-quarters::before{content:"\f241"}.fa-battery-4::before{content:"\f241"}.fa-bed::before{content:"\f236"}.fa-bed-pulse::before{content:"\f487"}.fa-procedures::before{content:"\f487"}.fa-beer-mug-empty::before{content:"\f0fc"}.fa-beer::before{content:"\f0fc"}.fa-bell::before{content:"\f0f3"}.fa-bell-concierge::before{content:"\f562"}.fa-concierge-bell::before{content:"\f562"}.fa-bell-slash::before{content:"\f1f6"}.fa-bezier-curve::before{content:"\f55b"}.fa-bicycle::before{content:"\f206"}.fa-binoculars::before{content:"\f1e5"}.fa-biohazard::before{content:"\f780"}.fa-bitcoin-sign::before{content:"\e0b4"}.fa-blender::before{content:"\f517"}.fa-blender-phone::before{content:"\f6b6"}.fa-blog::before{content:"\f781"}.fa-bold::before{content:"\f032"}.fa-bolt::before{content:"\f0e7"}.fa-zap::before{content:"\f0e7"}.fa-bolt-lightning::before{content:"\e0b7"}.fa-bomb::before{content:"\f1e2"}.fa-bone::before{content:"\f5d7"}.fa-bong::before{content:"\f55c"}.fa-book::before{content:"\f02d"}.fa-book-atlas::before{content:"\f558"}.fa-atlas::before{content:"\f558"}.fa-book-bible::before{content:"\f647"}.fa-bible::before{content:"\f647"}.fa-book-bookmark::before{content:"\e0bb"}.fa-book-journal-whills::before{content:"\f66a"}.fa-journal-whills::before{content:"\f66a"}.fa-book-medical::before{content:"\f7e6"}.fa-book-open::before{content:"\f518"}.fa-book-open-reader::before{content:"\f5da"}.fa-book-reader::before{content:"\f5da"}.fa-book-quran::before{content:"\f687"}.fa-quran::before{content:"\f687"}.fa-book-skull::before{content:"\f6b7"}.fa-book-dead::before{content:"\f6b7"}.fa-book-tanakh::before{content:"\f827"}.fa-tanakh::before{content:"\f827"}.fa-bookmark::before{content:"\f02e"}.fa-border-all::before{content:"\f84c"}.fa-border-none::before{content:"\f850"}.fa-border-top-left::before{content:"\f853"}.fa-border-style::before{content:"\f853"}.fa-bore-hole::before{content:"\e4c3"}.fa-bottle-droplet::before{content:"\e4c4"}.fa-bottle-water::before{content:"\e4c5"}.fa-bowl-food::before{content:"\e4c6"}.fa-bowl-rice::before{content:"\e2eb"}.fa-bowling-ball::before{content:"\f436"}.fa-box::before{content:"\f466"}.fa-box-archive::before{content:"\f187"}.fa-archive::before{content:"\f187"}.fa-box-open::before{content:"\f49e"}.fa-box-tissue::before{content:"\e05b"}.fa-boxes-packing::before{content:"\e4c7"}.fa-boxes-stacked::before{content:"\f468"}.fa-boxes::before{content:"\f468"}.fa-boxes-alt::before{content:"\f468"}.fa-braille::before{content:"\f2a1"}.fa-brain::before{content:"\f5dc"}.fa-brazilian-real-sign::before{content:"\e46c"}.fa-bread-slice::before{content:"\f7ec"}.fa-bridge::before{content:"\e4c8"}.fa-bridge-circle-check::before{content:"\e4c9"}.fa-bridge-circle-exclamation::before{content:"\e4ca"}.fa-bridge-circle-xmark::before{content:"\e4cb"}.fa-bridge-lock::before{content:"\e4cc"}.fa-bridge-water::before{content:"\e4ce"}.fa-briefcase::before{content:"\f0b1"}.fa-briefcase-medical::before{content:"\f469"}.fa-broom::before{content:"\f51a"}.fa-broom-ball::before{content:"\f458"}.fa-quidditch::before{content:"\f458"}.fa-quidditch-broom-ball::before{content:"\f458"}.fa-brush::before{content:"\f55d"}.fa-bucket::before{content:"\e4cf"}.fa-bug::before{content:"\f188"}.fa-bug-slash::before{content:"\e490"}.fa-bugs::before{content:"\e4d0"}.fa-building::before{content:"\f1ad"}.fa-building-circle-arrow-right::before{content:"\e4d1"}.fa-building-circle-check::before{content:"\e4d2"}.fa-building-circle-exclamation::before{content:"\e4d3"}.fa-building-circle-xmark::before{content:"\e4d4"}.fa-building-columns::before{content:"\f19c"}.fa-bank::before{content:"\f19c"}.fa-institution::before{content:"\f19c"}.fa-museum::before{content:"\f19c"}.fa-university::before{content:"\f19c"}.fa-building-flag::before{content:"\e4d5"}.fa-building-lock::before{content:"\e4d6"}.fa-building-ngo::before{content:"\e4d7"}.fa-building-shield::before{content:"\e4d8"}.fa-building-un::before{content:"\e4d9"}.fa-building-user::before{content:"\e4da"}.fa-building-wheat::before{content:"\e4db"}.fa-bullhorn::before{content:"\f0a1"}.fa-bullseye::before{content:"\f140"}.fa-burger::before{content:"\f805"}.fa-hamburger::before{content:"\f805"}.fa-burst::before{content:"\e4dc"}.fa-bus::before{content:"\f207"}.fa-bus-simple::before{content:"\f55e"}.fa-bus-alt::before{content:"\f55e"}.fa-business-time::before{content:"\f64a"}.fa-briefcase-clock::before{content:"\f64a"}.fa-c::before{content:"\43"}.fa-cable-car::before{content:"\f7da"}.fa-tram::before{content:"\f7da"}.fa-cake-candles::before{content:"\f1fd"}.fa-birthday-cake::before{content:"\f1fd"}.fa-cake::before{content:"\f1fd"}.fa-calculator::before{content:"\f1ec"}.fa-calendar::before{content:"\f133"}.fa-calendar-check::before{content:"\f274"}.fa-calendar-day::before{content:"\f783"}.fa-calendar-days::before{content:"\f073"}.fa-calendar-alt::before{content:"\f073"}.fa-calendar-minus::before{content:"\f272"}.fa-calendar-plus::before{content:"\f271"}.fa-calendar-week::before{content:"\f784"}.fa-calendar-xmark::before{content:"\f273"}.fa-calendar-times::before{content:"\f273"}.fa-camera::before{content:"\f030"}.fa-camera-alt::before{content:"\f030"}.fa-camera-retro::before{content:"\f083"}.fa-camera-rotate::before{content:"\e0d8"}.fa-campground::before{content:"\f6bb"}.fa-candy-cane::before{content:"\f786"}.fa-cannabis::before{content:"\f55f"}.fa-capsules::before{content:"\f46b"}.fa-car::before{content:"\f1b9"}.fa-automobile::before{content:"\f1b9"}.fa-car-battery::before{content:"\f5df"}.fa-battery-car::before{content:"\f5df"}.fa-car-burst::before{content:"\f5e1"}.fa-car-crash::before{content:"\f5e1"}.fa-car-on::before{content:"\e4dd"}.fa-car-rear::before{content:"\f5de"}.fa-car-alt::before{content:"\f5de"}.fa-car-side::before{content:"\f5e4"}.fa-car-tunnel::before{content:"\e4de"}.fa-caravan::before{content:"\f8ff"}.fa-caret-down::before{content:"\f0d7"}.fa-caret-left::before{content:"\f0d9"}.fa-caret-right::before{content:"\f0da"}.fa-caret-up::before{content:"\f0d8"}.fa-carrot::before{content:"\f787"}.fa-cart-arrow-down::before{content:"\f218"}.fa-cart-flatbed::before{content:"\f474"}.fa-dolly-flatbed::before{content:"\f474"}.fa-cart-flatbed-suitcase::before{content:"\f59d"}.fa-luggage-cart::before{content:"\f59d"}.fa-cart-plus::before{content:"\f217"}.fa-cart-shopping::before{content:"\f07a"}.fa-shopping-cart::before{content:"\f07a"}.fa-cash-register::before{content:"\f788"}.fa-cat::before{content:"\f6be"}.fa-cedi-sign::before{content:"\e0df"}.fa-cent-sign::before{content:"\e3f5"}.fa-certificate::before{content:"\f0a3"}.fa-chair::before{content:"\f6c0"}.fa-chalkboard::before{content:"\f51b"}.fa-blackboard::before{content:"\f51b"}.fa-chalkboard-user::before{content:"\f51c"}.fa-chalkboard-teacher::before{content:"\f51c"}.fa-champagne-glasses::before{content:"\f79f"}.fa-glass-cheers::before{content:"\f79f"}.fa-charging-station::before{content:"\f5e7"}.fa-chart-area::before{content:"\f1fe"}.fa-area-chart::before{content:"\f1fe"}.fa-chart-bar::before{content:"\f080"}.fa-bar-chart::before{content:"\f080"}.fa-chart-column::before{content:"\e0e3"}.fa-chart-gantt::before{content:"\e0e4"}.fa-chart-line::before{content:"\f201"}.fa-line-chart::before{content:"\f201"}.fa-chart-pie::before{content:"\f200"}.fa-pie-chart::before{content:"\f200"}.fa-chart-simple::before{content:"\e473"}.fa-check::before{content:"\f00c"}.fa-check-double::before{content:"\f560"}.fa-check-to-slot::before{content:"\f772"}.fa-vote-yea::before{content:"\f772"}.fa-cheese::before{content:"\f7ef"}.fa-chess::before{content:"\f439"}.fa-chess-bishop::before{content:"\f43a"}.fa-chess-board::before{content:"\f43c"}.fa-chess-king::before{content:"\f43f"}.fa-chess-knight::before{content:"\f441"}.fa-chess-pawn::before{content:"\f443"}.fa-chess-queen::before{content:"\f445"}.fa-chess-rook::before{content:"\f447"}.fa-chevron-down::before{content:"\f078"}.fa-chevron-left::before{content:"\f053"}.fa-chevron-right::before{content:"\f054"}.fa-chevron-up::before{content:"\f077"}.fa-child::before{content:"\f1ae"}.fa-child-dress::before{content:"\e59c"}.fa-child-reaching::before{content:"\e59d"}.fa-child-rifle::before{content:"\e4e0"}.fa-children::before{content:"\e4e1"}.fa-church::before{content:"\f51d"}.fa-circle::before{content:"\f111"}.fa-circle-arrow-down::before{content:"\f0ab"}.fa-arrow-circle-down::before{content:"\f0ab"}.fa-circle-arrow-left::before{content:"\f0a8"}.fa-arrow-circle-left::before{content:"\f0a8"}.fa-circle-arrow-right::before{content:"\f0a9"}.fa-arrow-circle-right::before{content:"\f0a9"}.fa-circle-arrow-up::before{content:"\f0aa"}.fa-arrow-circle-up::before{content:"\f0aa"}.fa-circle-check::before{content:"\f058"}.fa-check-circle::before{content:"\f058"}.fa-circle-chevron-down::before{content:"\f13a"}.fa-chevron-circle-down::before{content:"\f13a"}.fa-circle-chevron-left::before{content:"\f137"}.fa-chevron-circle-left::before{content:"\f137"}.fa-circle-chevron-right::before{content:"\f138"}.fa-chevron-circle-right::before{content:"\f138"}.fa-circle-chevron-up::before{content:"\f139"}.fa-chevron-circle-up::before{content:"\f139"}.fa-circle-dollar-to-slot::before{content:"\f4b9"}.fa-donate::before{content:"\f4b9"}.fa-circle-dot::before{content:"\f192"}.fa-dot-circle::before{content:"\f192"}.fa-circle-down::before{content:"\f358"}.fa-arrow-alt-circle-down::before{content:"\f358"}.fa-circle-exclamation::before{content:"\f06a"}.fa-exclamation-circle::before{content:"\f06a"}.fa-circle-h::before{content:"\f47e"}.fa-hospital-symbol::before{content:"\f47e"}.fa-circle-half-stroke::before{content:"\f042"}.fa-adjust::before{content:"\f042"}.fa-circle-info::before{content:"\f05a"}.fa-info-circle::before{content:"\f05a"}.fa-circle-left::before{content:"\f359"}.fa-arrow-alt-circle-left::before{content:"\f359"}.fa-circle-minus::before{content:"\f056"}.fa-minus-circle::before{content:"\f056"}.fa-circle-nodes::before{content:"\e4e2"}.fa-circle-notch::before{content:"\f1ce"}.fa-circle-pause::before{content:"\f28b"}.fa-pause-circle::before{content:"\f28b"}.fa-circle-play::before{content:"\f144"}.fa-play-circle::before{content:"\f144"}.fa-circle-plus::before{content:"\f055"}.fa-plus-circle::before{content:"\f055"}.fa-circle-question::before{content:"\f059"}.fa-question-circle::before{content:"\f059"}.fa-circle-radiation::before{content:"\f7ba"}.fa-radiation-alt::before{content:"\f7ba"}.fa-circle-right::before{content:"\f35a"}.fa-arrow-alt-circle-right::before{content:"\f35a"}.fa-circle-stop::before{content:"\f28d"}.fa-stop-circle::before{content:"\f28d"}.fa-circle-up::before{content:"\f35b"}.fa-arrow-alt-circle-up::before{content:"\f35b"}.fa-circle-user::before{content:"\f2bd"}.fa-user-circle::before{content:"\f2bd"}.fa-circle-xmark::before{content:"\f057"}.fa-times-circle::before{content:"\f057"}.fa-xmark-circle::before{content:"\f057"}.fa-city::before{content:"\f64f"}.fa-clapperboard::before{content:"\e131"}.fa-clipboard::before{content:"\f328"}.fa-clipboard-check::before{content:"\f46c"}.fa-clipboard-list::before{content:"\f46d"}.fa-clipboard-question::before{content:"\e4e3"}.fa-clipboard-user::before{content:"\f7f3"}.fa-clock::before{content:"\f017"}.fa-clock-four::before{content:"\f017"}.fa-clock-rotate-left::before{content:"\f1da"}.fa-history::before{content:"\f1da"}.fa-clone::before{content:"\f24d"}.fa-closed-captioning::before{content:"\f20a"}.fa-cloud::before{content:"\f0c2"}.fa-cloud-arrow-down::before{content:"\f0ed"}.fa-cloud-download::before{content:"\f0ed"}.fa-cloud-download-alt::before{content:"\f0ed"}.fa-cloud-arrow-up::before{content:"\f0ee"}.fa-cloud-upload::before{content:"\f0ee"}.fa-cloud-upload-alt::before{content:"\f0ee"}.fa-cloud-bolt::before{content:"\f76c"}.fa-thunderstorm::before{content:"\f76c"}.fa-cloud-meatball::before{content:"\f73b"}.fa-cloud-moon::before{content:"\f6c3"}.fa-cloud-moon-rain::before{content:"\f73c"}.fa-cloud-rain::before{content:"\f73d"}.fa-cloud-showers-heavy::before{content:"\f740"}.fa-cloud-showers-water::before{content:"\e4e4"}.fa-cloud-sun::before{content:"\f6c4"}.fa-cloud-sun-rain::before{content:"\f743"}.fa-clover::before{content:"\e139"}.fa-code::before{content:"\f121"}.fa-code-branch::before{content:"\f126"}.fa-code-commit::before{content:"\f386"}.fa-code-compare::before{content:"\e13a"}.fa-code-fork::before{content:"\e13b"}.fa-code-merge::before{content:"\f387"}.fa-code-pull-request::before{content:"\e13c"}.fa-coins::before{content:"\f51e"}.fa-colon-sign::before{content:"\e140"}.fa-comment::before{content:"\f075"}.fa-comment-dollar::before{content:"\f651"}.fa-comment-dots::before{content:"\f4ad"}.fa-commenting::before{content:"\f4ad"}.fa-comment-medical::before{content:"\f7f5"}.fa-comment-slash::before{content:"\f4b3"}.fa-comment-sms::before{content:"\f7cd"}.fa-sms::before{content:"\f7cd"}.fa-comments::before{content:"\f086"}.fa-comments-dollar::before{content:"\f653"}.fa-compact-disc::before{content:"\f51f"}.fa-compass::before{content:"\f14e"}.fa-compass-drafting::before{content:"\f568"}.fa-drafting-compass::before{content:"\f568"}.fa-compress::before{content:"\f066"}.fa-computer::before{content:"\e4e5"}.fa-computer-mouse::before{content:"\f8cc"}.fa-mouse::before{content:"\f8cc"}.fa-cookie::before{content:"\f563"}.fa-cookie-bite::before{content:"\f564"}.fa-copy::before{content:"\f0c5"}.fa-copyright::before{content:"\f1f9"}.fa-couch::before{content:"\f4b8"}.fa-cow::before{content:"\f6c8"}.fa-credit-card::before{content:"\f09d"}.fa-credit-card-alt::before{content:"\f09d"}.fa-crop::before{content:"\f125"}.fa-crop-simple::before{content:"\f565"}.fa-crop-alt::before{content:"\f565"}.fa-cross::before{content:"\f654"}.fa-crosshairs::before{content:"\f05b"}.fa-crow::before{content:"\f520"}.fa-crown::before{content:"\f521"}.fa-crutch::before{content:"\f7f7"}.fa-cruzeiro-sign::before{content:"\e152"}.fa-cube::before{content:"\f1b2"}.fa-cubes::before{content:"\f1b3"}.fa-cubes-stacked::before{content:"\e4e6"}.fa-d::before{content:"\44"}.fa-database::before{content:"\f1c0"}.fa-delete-left::before{content:"\f55a"}.fa-backspace::before{content:"\f55a"}.fa-democrat::before{content:"\f747"}.fa-desktop::before{content:"\f390"}.fa-desktop-alt::before{content:"\f390"}.fa-dharmachakra::before{content:"\f655"}.fa-diagram-next::before{content:"\e476"}.fa-diagram-predecessor::before{content:"\e477"}.fa-diagram-project::before{content:"\f542"}.fa-project-diagram::before{content:"\f542"}.fa-diagram-successor::before{content:"\e47a"}.fa-diamond::before{content:"\f219"}.fa-diamond-turn-right::before{content:"\f5eb"}.fa-directions::before{content:"\f5eb"}.fa-dice::before{content:"\f522"}.fa-dice-d20::before{content:"\f6cf"}.fa-dice-d6::before{content:"\f6d1"}.fa-dice-five::before{content:"\f523"}.fa-dice-four::before{content:"\f524"}.fa-dice-one::before{content:"\f525"}.fa-dice-six::before{content:"\f526"}.fa-dice-three::before{content:"\f527"}.fa-dice-two::before{content:"\f528"}.fa-disease::before{content:"\f7fa"}.fa-display::before{content:"\e163"}.fa-divide::before{content:"\f529"}.fa-dna::before{content:"\f471"}.fa-dog::before{content:"\f6d3"}.fa-dollar-sign::before{content:"\24"}.fa-dollar::before{content:"\24"}.fa-usd::before{content:"\24"}.fa-dolly::before{content:"\f472"}.fa-dolly-box::before{content:"\f472"}.fa-dong-sign::before{content:"\e169"}.fa-door-closed::before{content:"\f52a"}.fa-door-open::before{content:"\f52b"}.fa-dove::before{content:"\f4ba"}.fa-down-left-and-up-right-to-center::before{content:"\f422"}.fa-compress-alt::before{content:"\f422"}.fa-down-long::before{content:"\f309"}.fa-long-arrow-alt-down::before{content:"\f309"}.fa-download::before{content:"\f019"}.fa-dragon::before{content:"\f6d5"}.fa-draw-polygon::before{content:"\f5ee"}.fa-droplet::before{content:"\f043"}.fa-tint::before{content:"\f043"}.fa-droplet-slash::before{content:"\f5c7"}.fa-tint-slash::before{content:"\f5c7"}.fa-drum::before{content:"\f569"}.fa-drum-steelpan::before{content:"\f56a"}.fa-drumstick-bite::before{content:"\f6d7"}.fa-dumbbell::before{content:"\f44b"}.fa-dumpster::before{content:"\f793"}.fa-dumpster-fire::before{content:"\f794"}.fa-dungeon::before{content:"\f6d9"}.fa-e::before{content:"\45"}.fa-ear-deaf::before{content:"\f2a4"}.fa-deaf::before{content:"\f2a4"}.fa-deafness::before{content:"\f2a4"}.fa-hard-of-hearing::before{content:"\f2a4"}.fa-ear-listen::before{content:"\f2a2"}.fa-assistive-listening-systems::before{content:"\f2a2"}.fa-earth-africa::before{content:"\f57c"}.fa-globe-africa::before{content:"\f57c"}.fa-earth-americas::before{content:"\f57d"}.fa-earth::before{content:"\f57d"}.fa-earth-america::before{content:"\f57d"}.fa-globe-americas::before{content:"\f57d"}.fa-earth-asia::before{content:"\f57e"}.fa-globe-asia::before{content:"\f57e"}.fa-earth-europe::before{content:"\f7a2"}.fa-globe-europe::before{content:"\f7a2"}.fa-earth-oceania::before{content:"\e47b"}.fa-globe-oceania::before{content:"\e47b"}.fa-egg::before{content:"\f7fb"}.fa-eject::before{content:"\f052"}.fa-elevator::before{content:"\e16d"}.fa-ellipsis::before{content:"\f141"}.fa-ellipsis-h::before{content:"\f141"}.fa-ellipsis-vertical::before{content:"\f142"}.fa-ellipsis-v::before{content:"\f142"}.fa-envelope::before{content:"\f0e0"}.fa-envelope-circle-check::before{content:"\e4e8"}.fa-envelope-open::before{content:"\f2b6"}.fa-envelope-open-text::before{content:"\f658"}.fa-envelopes-bulk::before{content:"\f674"}.fa-mail-bulk::before{content:"\f674"}.fa-equals::before{content:"\3d"}.fa-eraser::before{content:"\f12d"}.fa-ethernet::before{content:"\f796"}.fa-euro-sign::before{content:"\f153"}.fa-eur::before{content:"\f153"}.fa-euro::before{content:"\f153"}.fa-exclamation::before{content:"\21"}.fa-expand::before{content:"\f065"}.fa-explosion::before{content:"\e4e9"}.fa-eye::before{content:"\f06e"}.fa-eye-dropper::before{content:"\f1fb"}.fa-eye-dropper-empty::before{content:"\f1fb"}.fa-eyedropper::before{content:"\f1fb"}.fa-eye-low-vision::before{content:"\f2a8"}.fa-low-vision::before{content:"\f2a8"}.fa-eye-slash::before{content:"\f070"}.fa-f::before{content:"\46"}.fa-face-angry::before{content:"\f556"}.fa-angry::before{content:"\f556"}.fa-face-dizzy::before{content:"\f567"}.fa-dizzy::before{content:"\f567"}.fa-face-flushed::before{content:"\f579"}.fa-flushed::before{content:"\f579"}.fa-face-frown::before{content:"\f119"}.fa-frown::before{content:"\f119"}.fa-face-frown-open::before{content:"\f57a"}.fa-frown-open::before{content:"\f57a"}.fa-face-grimace::before{content:"\f57f"}.fa-grimace::before{content:"\f57f"}.fa-face-grin::before{content:"\f580"}.fa-grin::before{content:"\f580"}.fa-face-grin-beam::before{content:"\f582"}.fa-grin-beam::before{content:"\f582"}.fa-face-grin-beam-sweat::before{content:"\f583"}.fa-grin-beam-sweat::before{content:"\f583"}.fa-face-grin-hearts::before{content:"\f584"}.fa-grin-hearts::before{content:"\f584"}.fa-face-grin-squint::before{content:"\f585"}.fa-grin-squint::before{content:"\f585"}.fa-face-grin-squint-tears::before{content:"\f586"}.fa-grin-squint-tears::before{content:"\f586"}.fa-face-grin-stars::before{content:"\f587"}.fa-grin-stars::before{content:"\f587"}.fa-face-grin-tears::before{content:"\f588"}.fa-grin-tears::before{content:"\f588"}.fa-face-grin-tongue::before{content:"\f589"}.fa-grin-tongue::before{content:"\f589"}.fa-face-grin-tongue-squint::before{content:"\f58a"}.fa-grin-tongue-squint::before{content:"\f58a"}.fa-face-grin-tongue-wink::before{content:"\f58b"}.fa-grin-tongue-wink::before{content:"\f58b"}.fa-face-grin-wide::before{content:"\f581"}.fa-grin-alt::before{content:"\f581"}.fa-face-grin-wink::before{content:"\f58c"}.fa-grin-wink::before{content:"\f58c"}.fa-face-kiss::before{content:"\f596"}.fa-kiss::before{content:"\f596"}.fa-face-kiss-beam::before{content:"\f597"}.fa-kiss-beam::before{content:"\f597"}.fa-face-kiss-wink-heart::before{content:"\f598"}.fa-kiss-wink-heart::before{content:"\f598"}.fa-face-laugh::before{content:"\f599"}.fa-laugh::before{content:"\f599"}.fa-face-laugh-beam::before{content:"\f59a"}.fa-laugh-beam::before{content:"\f59a"}.fa-face-laugh-squint::before{content:"\f59b"}.fa-laugh-squint::before{content:"\f59b"}.fa-face-laugh-wink::before{content:"\f59c"}.fa-laugh-wink::before{content:"\f59c"}.fa-face-meh::before{content:"\f11a"}.fa-meh::before{content:"\f11a"}.fa-face-meh-blank::before{content:"\f5a4"}.fa-meh-blank::before{content:"\f5a4"}.fa-face-rolling-eyes::before{content:"\f5a5"}.fa-meh-rolling-eyes::before{content:"\f5a5"}.fa-face-sad-cry::before{content:"\f5b3"}.fa-sad-cry::before{content:"\f5b3"}.fa-face-sad-tear::before{content:"\f5b4"}.fa-sad-tear::before{content:"\f5b4"}.fa-face-smile::before{content:"\f118"}.fa-smile::before{content:"\f118"}.fa-face-smile-beam::before{content:"\f5b8"}.fa-smile-beam::before{content:"\f5b8"}.fa-face-smile-wink::before{content:"\f4da"}.fa-smile-wink::before{content:"\f4da"}.fa-face-surprise::before{content:"\f5c2"}.fa-surprise::before{content:"\f5c2"}.fa-face-tired::before{content:"\f5c8"}.fa-tired::before{content:"\f5c8"}.fa-fan::before{content:"\f863"}.fa-faucet::before{content:"\e005"}.fa-faucet-drip::before{content:"\e006"}.fa-fax::before{content:"\f1ac"}.fa-feather::before{content:"\f52d"}.fa-feather-pointed::before{content:"\f56b"}.fa-feather-alt::before{content:"\f56b"}.fa-ferry::before{content:"\e4ea"}.fa-file::before{content:"\f15b"}.fa-file-arrow-down::before{content:"\f56d"}.fa-file-download::before{content:"\f56d"}.fa-file-arrow-up::before{content:"\f574"}.fa-file-upload::before{content:"\f574"}.fa-file-audio::before{content:"\f1c7"}.fa-file-circle-check::before{content:"\e5a0"}.fa-file-circle-exclamation::before{content:"\e4eb"}.fa-file-circle-minus::before{content:"\e4ed"}.fa-file-circle-plus::before{content:"\e494"}.fa-file-circle-question::before{content:"\e4ef"}.fa-file-circle-xmark::before{content:"\e5a1"}.fa-file-code::before{content:"\f1c9"}.fa-file-contract::before{content:"\f56c"}.fa-file-csv::before{content:"\f6dd"}.fa-file-excel::before{content:"\f1c3"}.fa-file-export::before{content:"\f56e"}.fa-arrow-right-from-file::before{content:"\f56e"}.fa-file-image::before{content:"\f1c5"}.fa-file-import::before{content:"\f56f"}.fa-arrow-right-to-file::before{content:"\f56f"}.fa-file-invoice::before{content:"\f570"}.fa-file-invoice-dollar::before{content:"\f571"}.fa-file-lines::before{content:"\f15c"}.fa-file-alt::before{content:"\f15c"}.fa-file-text::before{content:"\f15c"}.fa-file-medical::before{content:"\f477"}.fa-file-pdf::before{content:"\f1c1"}.fa-file-pen::before{content:"\f31c"}.fa-file-edit::before{content:"\f31c"}.fa-file-powerpoint::before{content:"\f1c4"}.fa-file-prescription::before{content:"\f572"}.fa-file-shield::before{content:"\e4f0"}.fa-file-signature::before{content:"\f573"}.fa-file-video::before{content:"\f1c8"}.fa-file-waveform::before{content:"\f478"}.fa-file-medical-alt::before{content:"\f478"}.fa-file-word::before{content:"\f1c2"}.fa-file-zipper::before{content:"\f1c6"}.fa-file-archive::before{content:"\f1c6"}.fa-fill::before{content:"\f575"}.fa-fill-drip::before{content:"\f576"}.fa-film::before{content:"\f008"}.fa-filter::before{content:"\f0b0"}.fa-filter-circle-dollar::before{content:"\f662"}.fa-funnel-dollar::before{content:"\f662"}.fa-filter-circle-xmark::before{content:"\e17b"}.fa-fingerprint::before{content:"\f577"}.fa-fire::before{content:"\f06d"}.fa-fire-burner::before{content:"\e4f1"}.fa-fire-extinguisher::before{content:"\f134"}.fa-fire-flame-curved::before{content:"\f7e4"}.fa-fire-alt::before{content:"\f7e4"}.fa-fire-flame-simple::before{content:"\f46a"}.fa-burn::before{content:"\f46a"}.fa-fish::before{content:"\f578"}.fa-fish-fins::before{content:"\e4f2"}.fa-flag::before{content:"\f024"}.fa-flag-checkered::before{content:"\f11e"}.fa-flag-usa::before{content:"\f74d"}.fa-flask::before{content:"\f0c3"}.fa-flask-vial::before{content:"\e4f3"}.fa-floppy-disk::before{content:"\f0c7"}.fa-save::before{content:"\f0c7"}.fa-florin-sign::before{content:"\e184"}.fa-folder::before{content:"\f07b"}.fa-folder-blank::before{content:"\f07b"}.fa-folder-closed::before{content:"\e185"}.fa-folder-minus::before{content:"\f65d"}.fa-folder-open::before{content:"\f07c"}.fa-folder-plus::before{content:"\f65e"}.fa-folder-tree::before{content:"\f802"}.fa-font::before{content:"\f031"}.fa-football::before{content:"\f44e"}.fa-football-ball::before{content:"\f44e"}.fa-forward::before{content:"\f04e"}.fa-forward-fast::before{content:"\f050"}.fa-fast-forward::before{content:"\f050"}.fa-forward-step::before{content:"\f051"}.fa-step-forward::before{content:"\f051"}.fa-franc-sign::before{content:"\e18f"}.fa-frog::before{content:"\f52e"}.fa-futbol::before{content:"\f1e3"}.fa-futbol-ball::before{content:"\f1e3"}.fa-soccer-ball::before{content:"\f1e3"}.fa-g::before{content:"\47"}.fa-gamepad::before{content:"\f11b"}.fa-gas-pump::before{content:"\f52f"}.fa-gauge::before{content:"\f624"}.fa-dashboard::before{content:"\f624"}.fa-gauge-med::before{content:"\f624"}.fa-tachometer-alt-average::before{content:"\f624"}.fa-gauge-high::before{content:"\f625"}.fa-tachometer-alt::before{content:"\f625"}.fa-tachometer-alt-fast::before{content:"\f625"}.fa-gauge-simple::before{content:"\f629"}.fa-gauge-simple-med::before{content:"\f629"}.fa-tachometer-average::before{content:"\f629"}.fa-gauge-simple-high::before{content:"\f62a"}.fa-tachometer::before{content:"\f62a"}.fa-tachometer-fast::before{content:"\f62a"}.fa-gavel::before{content:"\f0e3"}.fa-legal::before{content:"\f0e3"}.fa-gear::before{content:"\f013"}.fa-cog::before{content:"\f013"}.fa-gears::before{content:"\f085"}.fa-cogs::before{content:"\f085"}.fa-gem::before{content:"\f3a5"}.fa-genderless::before{content:"\f22d"}.fa-ghost::before{content:"\f6e2"}.fa-gift::before{content:"\f06b"}.fa-gifts::before{content:"\f79c"}.fa-glass-water::before{content:"\e4f4"}.fa-glass-water-droplet::before{content:"\e4f5"}.fa-glasses::before{content:"\f530"}.fa-globe::before{content:"\f0ac"}.fa-golf-ball-tee::before{content:"\f450"}.fa-golf-ball::before{content:"\f450"}.fa-gopuram::before{content:"\f664"}.fa-graduation-cap::before{content:"\f19d"}.fa-mortar-board::before{content:"\f19d"}.fa-greater-than::before{content:"\3e"}.fa-greater-than-equal::before{content:"\f532"}.fa-grip::before{content:"\f58d"}.fa-grip-horizontal::before{content:"\f58d"}.fa-grip-lines::before{content:"\f7a4"}.fa-grip-lines-vertical::before{content:"\f7a5"}.fa-grip-vertical::before{content:"\f58e"}.fa-group-arrows-rotate::before{content:"\e4f6"}.fa-guarani-sign::before{content:"\e19a"}.fa-guitar::before{content:"\f7a6"}.fa-gun::before{content:"\e19b"}.fa-h::before{content:"\48"}.fa-hammer::before{content:"\f6e3"}.fa-hamsa::before{content:"\f665"}.fa-hand::before{content:"\f256"}.fa-hand-paper::before{content:"\f256"}.fa-hand-back-fist::before{content:"\f255"}.fa-hand-rock::before{content:"\f255"}.fa-hand-dots::before{content:"\f461"}.fa-allergies::before{content:"\f461"}.fa-hand-fist::before{content:"\f6de"}.fa-fist-raised::before{content:"\f6de"}.fa-hand-holding::before{content:"\f4bd"}.fa-hand-holding-dollar::before{content:"\f4c0"}.fa-hand-holding-usd::before{content:"\f4c0"}.fa-hand-holding-droplet::before{content:"\f4c1"}.fa-hand-holding-water::before{content:"\f4c1"}.fa-hand-holding-hand::before{content:"\e4f7"}.fa-hand-holding-heart::before{content:"\f4be"}.fa-hand-holding-medical::before{content:"\e05c"}.fa-hand-lizard::before{content:"\f258"}.fa-hand-middle-finger::before{content:"\f806"}.fa-hand-peace::before{content:"\f25b"}.fa-hand-point-down::before{content:"\f0a7"}.fa-hand-point-left::before{content:"\f0a5"}.fa-hand-point-right::before{content:"\f0a4"}.fa-hand-point-up::before{content:"\f0a6"}.fa-hand-pointer::before{content:"\f25a"}.fa-hand-scissors::before{content:"\f257"}.fa-hand-sparkles::before{content:"\e05d"}.fa-hand-spock::before{content:"\f259"}.fa-handcuffs::before{content:"\e4f8"}.fa-hands::before{content:"\f2a7"}.fa-sign-language::before{content:"\f2a7"}.fa-signing::before{content:"\f2a7"}.fa-hands-asl-interpreting::before{content:"\f2a3"}.fa-american-sign-language-interpreting::before{content:"\f2a3"}.fa-asl-interpreting::before{content:"\f2a3"}.fa-hands-american-sign-language-interpreting::before{content:"\f2a3"}.fa-hands-bound::before{content:"\e4f9"}.fa-hands-bubbles::before{content:"\e05e"}.fa-hands-wash::before{content:"\e05e"}.fa-hands-clapping::before{content:"\e1a8"}.fa-hands-holding::before{content:"\f4c2"}.fa-hands-holding-child::before{content:"\e4fa"}.fa-hands-holding-circle::before{content:"\e4fb"}.fa-hands-praying::before{content:"\f684"}.fa-praying-hands::before{content:"\f684"}.fa-handshake::before{content:"\f2b5"}.fa-handshake-angle::before{content:"\f4c4"}.fa-hands-helping::before{content:"\f4c4"}.fa-handshake-simple::before{content:"\f4c6"}.fa-handshake-alt::before{content:"\f4c6"}.fa-handshake-simple-slash::before{content:"\e05f"}.fa-handshake-alt-slash::before{content:"\e05f"}.fa-handshake-slash::before{content:"\e060"}.fa-hanukiah::before{content:"\f6e6"}.fa-hard-drive::before{content:"\f0a0"}.fa-hdd::before{content:"\f0a0"}.fa-hashtag::before{content:"\23"}.fa-hat-cowboy::before{content:"\f8c0"}.fa-hat-cowboy-side::before{content:"\f8c1"}.fa-hat-wizard::before{content:"\f6e8"}.fa-head-side-cough::before{content:"\e061"}.fa-head-side-cough-slash::before{content:"\e062"}.fa-head-side-mask::before{content:"\e063"}.fa-head-side-virus::before{content:"\e064"}.fa-heading::before{content:"\f1dc"}.fa-header::before{content:"\f1dc"}.fa-headphones::before{content:"\f025"}.fa-headphones-simple::before{content:"\f58f"}.fa-headphones-alt::before{content:"\f58f"}.fa-headset::before{content:"\f590"}.fa-heart::before{content:"\f004"}.fa-heart-circle-bolt::before{content:"\e4fc"}.fa-heart-circle-check::before{content:"\e4fd"}.fa-heart-circle-exclamation::before{content:"\e4fe"}.fa-heart-circle-minus::before{content:"\e4ff"}.fa-heart-circle-plus::before{content:"\e500"}.fa-heart-circle-xmark::before{content:"\e501"}.fa-heart-crack::before{content:"\f7a9"}.fa-heart-broken::before{content:"\f7a9"}.fa-heart-pulse::before{content:"\f21e"}.fa-heartbeat::before{content:"\f21e"}.fa-helicopter::before{content:"\f533"}.fa-helicopter-symbol::before{content:"\e502"}.fa-helmet-safety::before{content:"\f807"}.fa-hard-hat::before{content:"\f807"}.fa-hat-hard::before{content:"\f807"}.fa-helmet-un::before{content:"\e503"}.fa-highlighter::before{content:"\f591"}.fa-hill-avalanche::before{content:"\e507"}.fa-hill-rockslide::before{content:"\e508"}.fa-hippo::before{content:"\f6ed"}.fa-hockey-puck::before{content:"\f453"}.fa-holly-berry::before{content:"\f7aa"}.fa-horse::before{content:"\f6f0"}.fa-horse-head::before{content:"\f7ab"}.fa-hospital::before{content:"\f0f8"}.fa-hospital-alt::before{content:"\f0f8"}.fa-hospital-wide::before{content:"\f0f8"}.fa-hospital-user::before{content:"\f80d"}.fa-hot-tub-person::before{content:"\f593"}.fa-hot-tub::before{content:"\f593"}.fa-hotdog::before{content:"\f80f"}.fa-hotel::before{content:"\f594"}.fa-hourglass::before{content:"\f254"}.fa-hourglass-empty::before{content:"\f254"}.fa-hourglass-end::before{content:"\f253"}.fa-hourglass-3::before{content:"\f253"}.fa-hourglass-half::before{content:"\f252"}.fa-hourglass-2::before{content:"\f252"}.fa-hourglass-start::before{content:"\f251"}.fa-hourglass-1::before{content:"\f251"}.fa-house::before{content:"\f015"}.fa-home::before{content:"\f015"}.fa-home-alt::before{content:"\f015"}.fa-home-lg-alt::before{content:"\f015"}.fa-house-chimney::before{content:"\e3af"}.fa-home-lg::before{content:"\e3af"}.fa-house-chimney-crack::before{content:"\f6f1"}.fa-house-damage::before{content:"\f6f1"}.fa-house-chimney-medical::before{content:"\f7f2"}.fa-clinic-medical::before{content:"\f7f2"}.fa-house-chimney-user::before{content:"\e065"}.fa-house-chimney-window::before{content:"\e00d"}.fa-house-circle-check::before{content:"\e509"}.fa-house-circle-exclamation::before{content:"\e50a"}.fa-house-circle-xmark::before{content:"\e50b"}.fa-house-crack::before{content:"\e3b1"}.fa-house-fire::before{content:"\e50c"}.fa-house-flag::before{content:"\e50d"}.fa-house-flood-water::before{content:"\e50e"}.fa-house-flood-water-circle-arrow-right::before{content:"\e50f"}.fa-house-laptop::before{content:"\e066"}.fa-laptop-house::before{content:"\e066"}.fa-house-lock::before{content:"\e510"}.fa-house-medical::before{content:"\e3b2"}.fa-house-medical-circle-check::before{content:"\e511"}.fa-house-medical-circle-exclamation::before{content:"\e512"}.fa-house-medical-circle-xmark::before{content:"\e513"}.fa-house-medical-flag::before{content:"\e514"}.fa-house-signal::before{content:"\e012"}.fa-house-tsunami::before{content:"\e515"}.fa-house-user::before{content:"\e1b0"}.fa-home-user::before{content:"\e1b0"}.fa-hryvnia-sign::before{content:"\f6f2"}.fa-hryvnia::before{content:"\f6f2"}.fa-hurricane::before{content:"\f751"}.fa-i::before{content:"\49"}.fa-i-cursor::before{content:"\f246"}.fa-ice-cream::before{content:"\f810"}.fa-icicles::before{content:"\f7ad"}.fa-icons::before{content:"\f86d"}.fa-heart-music-camera-bolt::before{content:"\f86d"}.fa-id-badge::before{content:"\f2c1"}.fa-id-card::before{content:"\f2c2"}.fa-drivers-license::before{content:"\f2c2"}.fa-id-card-clip::before{content:"\f47f"}.fa-id-card-alt::before{content:"\f47f"}.fa-igloo::before{content:"\f7ae"}.fa-image::before{content:"\f03e"}.fa-image-portrait::before{content:"\f3e0"}.fa-portrait::before{content:"\f3e0"}.fa-images::before{content:"\f302"}.fa-inbox::before{content:"\f01c"}.fa-indent::before{content:"\f03c"}.fa-indian-rupee-sign::before{content:"\e1bc"}.fa-indian-rupee::before{content:"\e1bc"}.fa-inr::before{content:"\e1bc"}.fa-industry::before{content:"\f275"}.fa-infinity::before{content:"\f534"}.fa-info::before{content:"\f129"}.fa-italic::before{content:"\f033"}.fa-j::before{content:"\4a"}.fa-jar::before{content:"\e516"}.fa-jar-wheat::before{content:"\e517"}.fa-jedi::before{content:"\f669"}.fa-jet-fighter::before{content:"\f0fb"}.fa-fighter-jet::before{content:"\f0fb"}.fa-jet-fighter-up::before{content:"\e518"}.fa-joint::before{content:"\f595"}.fa-jug-detergent::before{content:"\e519"}.fa-k::before{content:"\4b"}.fa-kaaba::before{content:"\f66b"}.fa-key::before{content:"\f084"}.fa-keyboard::before{content:"\f11c"}.fa-khanda::before{content:"\f66d"}.fa-kip-sign::before{content:"\e1c4"}.fa-kit-medical::before{content:"\f479"}.fa-first-aid::before{content:"\f479"}.fa-kitchen-set::before{content:"\e51a"}.fa-kiwi-bird::before{content:"\f535"}.fa-l::before{content:"\4c"}.fa-land-mine-on::before{content:"\e51b"}.fa-landmark::before{content:"\f66f"}.fa-landmark-dome::before{content:"\f752"}.fa-landmark-alt::before{content:"\f752"}.fa-landmark-flag::before{content:"\e51c"}.fa-language::before{content:"\f1ab"}.fa-laptop::before{content:"\f109"}.fa-laptop-code::before{content:"\f5fc"}.fa-laptop-file::before{content:"\e51d"}.fa-laptop-medical::before{content:"\f812"}.fa-lari-sign::before{content:"\e1c8"}.fa-layer-group::before{content:"\f5fd"}.fa-leaf::before{content:"\f06c"}.fa-left-long::before{content:"\f30a"}.fa-long-arrow-alt-left::before{content:"\f30a"}.fa-left-right::before{content:"\f337"}.fa-arrows-alt-h::before{content:"\f337"}.fa-lemon::before{content:"\f094"}.fa-less-than::before{content:"\3c"}.fa-less-than-equal::before{content:"\f537"}.fa-life-ring::before{content:"\f1cd"}.fa-lightbulb::before{content:"\f0eb"}.fa-lines-leaning::before{content:"\e51e"}.fa-link::before{content:"\f0c1"}.fa-chain::before{content:"\f0c1"}.fa-link-slash::before{content:"\f127"}.fa-chain-broken::before{content:"\f127"}.fa-chain-slash::before{content:"\f127"}.fa-unlink::before{content:"\f127"}.fa-lira-sign::before{content:"\f195"}.fa-list::before{content:"\f03a"}.fa-list-squares::before{content:"\f03a"}.fa-list-check::before{content:"\f0ae"}.fa-tasks::before{content:"\f0ae"}.fa-list-ol::before{content:"\f0cb"}.fa-list-1-2::before{content:"\f0cb"}.fa-list-numeric::before{content:"\f0cb"}.fa-list-ul::before{content:"\f0ca"}.fa-list-dots::before{content:"\f0ca"}.fa-litecoin-sign::before{content:"\e1d3"}.fa-location-arrow::before{content:"\f124"}.fa-location-crosshairs::before{content:"\f601"}.fa-location::before{content:"\f601"}.fa-location-dot::before{content:"\f3c5"}.fa-map-marker-alt::before{content:"\f3c5"}.fa-location-pin::before{content:"\f041"}.fa-map-marker::before{content:"\f041"}.fa-location-pin-lock::before{content:"\e51f"}.fa-lock::before{content:"\f023"}.fa-lock-open::before{content:"\f3c1"}.fa-locust::before{content:"\e520"}.fa-lungs::before{content:"\f604"}.fa-lungs-virus::before{content:"\e067"}.fa-m::before{content:"\4d"}.fa-magnet::before{content:"\f076"}.fa-magnifying-glass::before{content:"\f002"}.fa-search::before{content:"\f002"}.fa-magnifying-glass-arrow-right::before{content:"\e521"}.fa-magnifying-glass-chart::before{content:"\e522"}.fa-magnifying-glass-dollar::before{content:"\f688"}.fa-search-dollar::before{content:"\f688"}.fa-magnifying-glass-location::before{content:"\f689"}.fa-search-location::before{content:"\f689"}.fa-magnifying-glass-minus::before{content:"\f010"}.fa-search-minus::before{content:"\f010"}.fa-magnifying-glass-plus::before{content:"\f00e"}.fa-search-plus::before{content:"\f00e"}.fa-manat-sign::before{content:"\e1d5"}.fa-map::before{content:"\f279"}.fa-map-location::before{content:"\f59f"}.fa-map-marked::before{content:"\f59f"}.fa-map-location-dot::before{content:"\f5a0"}.fa-map-marked-alt::before{content:"\f5a0"}.fa-map-pin::before{content:"\f276"}.fa-marker::before{content:"\f5a1"}.fa-mars::before{content:"\f222"}.fa-mars-and-venus::before{content:"\f224"}.fa-mars-and-venus-burst::before{content:"\e523"}.fa-mars-double::before{content:"\f227"}.fa-mars-stroke::before{content:"\f229"}.fa-mars-stroke-right::before{content:"\f22b"}.fa-mars-stroke-h::before{content:"\f22b"}.fa-mars-stroke-up::before{content:"\f22a"}.fa-mars-stroke-v::before{content:"\f22a"}.fa-martini-glass::before{content:"\f57b"}.fa-glass-martini-alt::before{content:"\f57b"}.fa-martini-glass-citrus::before{content:"\f561"}.fa-cocktail::before{content:"\f561"}.fa-martini-glass-empty::before{content:"\f000"}.fa-glass-martini::before{content:"\f000"}.fa-mask::before{content:"\f6fa"}.fa-mask-face::before{content:"\e1d7"}.fa-mask-ventilator::before{content:"\e524"}.fa-masks-theater::before{content:"\f630"}.fa-theater-masks::before{content:"\f630"}.fa-mattress-pillow::before{content:"\e525"}.fa-maximize::before{content:"\f31e"}.fa-expand-arrows-alt::before{content:"\f31e"}.fa-medal::before{content:"\f5a2"}.fa-memory::before{content:"\f538"}.fa-menorah::before{content:"\f676"}.fa-mercury::before{content:"\f223"}.fa-message::before{content:"\f27a"}.fa-comment-alt::before{content:"\f27a"}.fa-meteor::before{content:"\f753"}.fa-microchip::before{content:"\f2db"}.fa-microphone::before{content:"\f130"}.fa-microphone-lines::before{content:"\f3c9"}.fa-microphone-alt::before{content:"\f3c9"}.fa-microphone-lines-slash::before{content:"\f539"}.fa-microphone-alt-slash::before{content:"\f539"}.fa-microphone-slash::before{content:"\f131"}.fa-microscope::before{content:"\f610"}.fa-mill-sign::before{content:"\e1ed"}.fa-minimize::before{content:"\f78c"}.fa-compress-arrows-alt::before{content:"\f78c"}.fa-minus::before{content:"\f068"}.fa-subtract::before{content:"\f068"}.fa-mitten::before{content:"\f7b5"}.fa-mobile::before{content:"\f3ce"}.fa-mobile-android::before{content:"\f3ce"}.fa-mobile-phone::before{content:"\f3ce"}.fa-mobile-button::before{content:"\f10b"}.fa-mobile-retro::before{content:"\e527"}.fa-mobile-screen::before{content:"\f3cf"}.fa-mobile-android-alt::before{content:"\f3cf"}.fa-mobile-screen-button::before{content:"\f3cd"}.fa-mobile-alt::before{content:"\f3cd"}.fa-money-bill::before{content:"\f0d6"}.fa-money-bill-1::before{content:"\f3d1"}.fa-money-bill-alt::before{content:"\f3d1"}.fa-money-bill-1-wave::before{content:"\f53b"}.fa-money-bill-wave-alt::before{content:"\f53b"}.fa-money-bill-transfer::before{content:"\e528"}.fa-money-bill-trend-up::before{content:"\e529"}.fa-money-bill-wave::before{content:"\f53a"}.fa-money-bill-wheat::before{content:"\e52a"}.fa-money-bills::before{content:"\e1f3"}.fa-money-check::before{content:"\f53c"}.fa-money-check-dollar::before{content:"\f53d"}.fa-money-check-alt::before{content:"\f53d"}.fa-monument::before{content:"\f5a6"}.fa-moon::before{content:"\f186"}.fa-mortar-pestle::before{content:"\f5a7"}.fa-mosque::before{content:"\f678"}.fa-mosquito::before{content:"\e52b"}.fa-mosquito-net::before{content:"\e52c"}.fa-motorcycle::before{content:"\f21c"}.fa-mound::before{content:"\e52d"}.fa-mountain::before{content:"\f6fc"}.fa-mountain-city::before{content:"\e52e"}.fa-mountain-sun::before{content:"\e52f"}.fa-mug-hot::before{content:"\f7b6"}.fa-mug-saucer::before{content:"\f0f4"}.fa-coffee::before{content:"\f0f4"}.fa-music::before{content:"\f001"}.fa-n::before{content:"\4e"}.fa-naira-sign::before{content:"\e1f6"}.fa-network-wired::before{content:"\f6ff"}.fa-neuter::before{content:"\f22c"}.fa-newspaper::before{content:"\f1ea"}.fa-not-equal::before{content:"\f53e"}.fa-notdef::before{content:"\e1fe"}.fa-note-sticky::before{content:"\f249"}.fa-sticky-note::before{content:"\f249"}.fa-notes-medical::before{content:"\f481"}.fa-o::before{content:"\4f"}.fa-object-group::before{content:"\f247"}.fa-object-ungroup::before{content:"\f248"}.fa-oil-can::before{content:"\f613"}.fa-oil-well::before{content:"\e532"}.fa-om::before{content:"\f679"}.fa-otter::before{content:"\f700"}.fa-outdent::before{content:"\f03b"}.fa-dedent::before{content:"\f03b"}.fa-p::before{content:"\50"}.fa-pager::before{content:"\f815"}.fa-paint-roller::before{content:"\f5aa"}.fa-paintbrush::before{content:"\f1fc"}.fa-paint-brush::before{content:"\f1fc"}.fa-palette::before{content:"\f53f"}.fa-pallet::before{content:"\f482"}.fa-panorama::before{content:"\e209"}.fa-paper-plane::before{content:"\f1d8"}.fa-paperclip::before{content:"\f0c6"}.fa-parachute-box::before{content:"\f4cd"}.fa-paragraph::before{content:"\f1dd"}.fa-passport::before{content:"\f5ab"}.fa-paste::before{content:"\f0ea"}.fa-file-clipboard::before{content:"\f0ea"}.fa-pause::before{content:"\f04c"}.fa-paw::before{content:"\f1b0"}.fa-peace::before{content:"\f67c"}.fa-pen::before{content:"\f304"}.fa-pen-clip::before{content:"\f305"}.fa-pen-alt::before{content:"\f305"}.fa-pen-fancy::before{content:"\f5ac"}.fa-pen-nib::before{content:"\f5ad"}.fa-pen-ruler::before{content:"\f5ae"}.fa-pencil-ruler::before{content:"\f5ae"}.fa-pen-to-square::before{content:"\f044"}.fa-edit::before{content:"\f044"}.fa-pencil::before{content:"\f303"}.fa-pencil-alt::before{content:"\f303"}.fa-people-arrows::before{content:"\e068"}.fa-people-arrows-left-right::before{content:"\e068"}.fa-people-carry-box::before{content:"\f4ce"}.fa-people-carry::before{content:"\f4ce"}.fa-people-group::before{content:"\e533"}.fa-people-line::before{content:"\e534"}.fa-people-pulling::before{content:"\e535"}.fa-people-robbery::before{content:"\e536"}.fa-people-roof::before{content:"\e537"}.fa-pepper-hot::before{content:"\f816"}.fa-percent::before{content:"\25"}.fa-percentage::before{content:"\25"}.fa-person::before{content:"\f183"}.fa-male::before{content:"\f183"}.fa-person-arrow-down-to-line::before{content:"\e538"}.fa-person-arrow-up-from-line::before{content:"\e539"}.fa-person-biking::before{content:"\f84a"}.fa-biking::before{content:"\f84a"}.fa-person-booth::before{content:"\f756"}.fa-person-breastfeeding::before{content:"\e53a"}.fa-person-burst::before{content:"\e53b"}.fa-person-cane::before{content:"\e53c"}.fa-person-chalkboard::before{content:"\e53d"}.fa-person-circle-check::before{content:"\e53e"}.fa-person-circle-exclamation::before{content:"\e53f"}.fa-person-circle-minus::before{content:"\e540"}.fa-person-circle-plus::before{content:"\e541"}.fa-person-circle-question::before{content:"\e542"}.fa-person-circle-xmark::before{content:"\e543"}.fa-person-digging::before{content:"\f85e"}.fa-digging::before{content:"\f85e"}.fa-person-dots-from-line::before{content:"\f470"}.fa-diagnoses::before{content:"\f470"}.fa-person-dress::before{content:"\f182"}.fa-female::before{content:"\f182"}.fa-person-dress-burst::before{content:"\e544"}.fa-person-drowning::before{content:"\e545"}.fa-person-falling::before{content:"\e546"}.fa-person-falling-burst::before{content:"\e547"}.fa-person-half-dress::before{content:"\e548"}.fa-person-harassing::before{content:"\e549"}.fa-person-hiking::before{content:"\f6ec"}.fa-hiking::before{content:"\f6ec"}.fa-person-military-pointing::before{content:"\e54a"}.fa-person-military-rifle::before{content:"\e54b"}.fa-person-military-to-person::before{content:"\e54c"}.fa-person-praying::before{content:"\f683"}.fa-pray::before{content:"\f683"}.fa-person-pregnant::before{content:"\e31e"}.fa-person-rays::before{content:"\e54d"}.fa-person-rifle::before{content:"\e54e"}.fa-person-running::before{content:"\f70c"}.fa-running::before{content:"\f70c"}.fa-person-shelter::before{content:"\e54f"}.fa-person-skating::before{content:"\f7c5"}.fa-skating::before{content:"\f7c5"}.fa-person-skiing::before{content:"\f7c9"}.fa-skiing::before{content:"\f7c9"}.fa-person-skiing-nordic::before{content:"\f7ca"}.fa-skiing-nordic::before{content:"\f7ca"}.fa-person-snowboarding::before{content:"\f7ce"}.fa-snowboarding::before{content:"\f7ce"}.fa-person-swimming::before{content:"\f5c4"}.fa-swimmer::before{content:"\f5c4"}.fa-person-through-window::before{content:"\e5a9"}.fa-person-walking::before{content:"\f554"}.fa-walking::before{content:"\f554"}.fa-person-walking-arrow-loop-left::before{content:"\e551"}.fa-person-walking-arrow-right::before{content:"\e552"}.fa-person-walking-dashed-line-arrow-right::before{content:"\e553"}.fa-person-walking-luggage::before{content:"\e554"}.fa-person-walking-with-cane::before{content:"\f29d"}.fa-blind::before{content:"\f29d"}.fa-peseta-sign::before{content:"\e221"}.fa-peso-sign::before{content:"\e222"}.fa-phone::before{content:"\f095"}.fa-phone-flip::before{content:"\f879"}.fa-phone-alt::before{content:"\f879"}.fa-phone-slash::before{content:"\f3dd"}.fa-phone-volume::before{content:"\f2a0"}.fa-volume-control-phone::before{content:"\f2a0"}.fa-photo-film::before{content:"\f87c"}.fa-photo-video::before{content:"\f87c"}.fa-piggy-bank::before{content:"\f4d3"}.fa-pills::before{content:"\f484"}.fa-pizza-slice::before{content:"\f818"}.fa-place-of-worship::before{content:"\f67f"}.fa-plane::before{content:"\f072"}.fa-plane-arrival::before{content:"\f5af"}.fa-plane-circle-check::before{content:"\e555"}.fa-plane-circle-exclamation::before{content:"\e556"}.fa-plane-circle-xmark::before{content:"\e557"}.fa-plane-departure::before{content:"\f5b0"}.fa-plane-lock::before{content:"\e558"}.fa-plane-slash::before{content:"\e069"}.fa-plane-up::before{content:"\e22d"}.fa-plant-wilt::before{content:"\e5aa"}.fa-plate-wheat::before{content:"\e55a"}.fa-play::before{content:"\f04b"}.fa-plug::before{content:"\f1e6"}.fa-plug-circle-bolt::before{content:"\e55b"}.fa-plug-circle-check::before{content:"\e55c"}.fa-plug-circle-exclamation::before{content:"\e55d"}.fa-plug-circle-minus::before{content:"\e55e"}.fa-plug-circle-plus::before{content:"\e55f"}.fa-plug-circle-xmark::before{content:"\e560"}.fa-plus::before{content:"\2b"}.fa-add::before{content:"\2b"}.fa-plus-minus::before{content:"\e43c"}.fa-podcast::before{content:"\f2ce"}.fa-poo::before{content:"\f2fe"}.fa-poo-storm::before{content:"\f75a"}.fa-poo-bolt::before{content:"\f75a"}.fa-poop::before{content:"\f619"}.fa-power-off::before{content:"\f011"}.fa-prescription::before{content:"\f5b1"}.fa-prescription-bottle::before{content:"\f485"}.fa-prescription-bottle-medical::before{content:"\f486"}.fa-prescription-bottle-alt::before{content:"\f486"}.fa-print::before{content:"\f02f"}.fa-pump-medical::before{content:"\e06a"}.fa-pump-soap::before{content:"\e06b"}.fa-puzzle-piece::before{content:"\f12e"}.fa-q::before{content:"\51"}.fa-qrcode::before{content:"\f029"}.fa-question::before{content:"\3f"}.fa-quote-left::before{content:"\f10d"}.fa-quote-left-alt::before{content:"\f10d"}.fa-quote-right::before{content:"\f10e"}.fa-quote-right-alt::before{content:"\f10e"}.fa-r::before{content:"\52"}.fa-radiation::before{content:"\f7b9"}.fa-radio::before{content:"\f8d7"}.fa-rainbow::before{content:"\f75b"}.fa-ranking-star::before{content:"\e561"}.fa-receipt::before{content:"\f543"}.fa-record-vinyl::before{content:"\f8d9"}.fa-rectangle-ad::before{content:"\f641"}.fa-ad::before{content:"\f641"}.fa-rectangle-list::before{content:"\f022"}.fa-list-alt::before{content:"\f022"}.fa-rectangle-xmark::before{content:"\f410"}.fa-rectangle-times::before{content:"\f410"}.fa-times-rectangle::before{content:"\f410"}.fa-window-close::before{content:"\f410"}.fa-recycle::before{content:"\f1b8"}.fa-registered::before{content:"\f25d"}.fa-repeat::before{content:"\f363"}.fa-reply::before{content:"\f3e5"}.fa-mail-reply::before{content:"\f3e5"}.fa-reply-all::before{content:"\f122"}.fa-mail-reply-all::before{content:"\f122"}.fa-republican::before{content:"\f75e"}.fa-restroom::before{content:"\f7bd"}.fa-retweet::before{content:"\f079"}.fa-ribbon::before{content:"\f4d6"}.fa-right-from-bracket::before{content:"\f2f5"}.fa-sign-out-alt::before{content:"\f2f5"}.fa-right-left::before{content:"\f362"}.fa-exchange-alt::before{content:"\f362"}.fa-right-long::before{content:"\f30b"}.fa-long-arrow-alt-right::before{content:"\f30b"}.fa-right-to-bracket::before{content:"\f2f6"}.fa-sign-in-alt::before{content:"\f2f6"}.fa-ring::before{content:"\f70b"}.fa-road::before{content:"\f018"}.fa-road-barrier::before{content:"\e562"}.fa-road-bridge::before{content:"\e563"}.fa-road-circle-check::before{content:"\e564"}.fa-road-circle-exclamation::before{content:"\e565"}.fa-road-circle-xmark::before{content:"\e566"}.fa-road-lock::before{content:"\e567"}.fa-road-spikes::before{content:"\e568"}.fa-robot::before{content:"\f544"}.fa-rocket::before{content:"\f135"}.fa-rotate::before{content:"\f2f1"}.fa-sync-alt::before{content:"\f2f1"}.fa-rotate-left::before{content:"\f2ea"}.fa-rotate-back::before{content:"\f2ea"}.fa-rotate-backward::before{content:"\f2ea"}.fa-undo-alt::before{content:"\f2ea"}.fa-rotate-right::before{content:"\f2f9"}.fa-redo-alt::before{content:"\f2f9"}.fa-rotate-forward::before{content:"\f2f9"}.fa-route::before{content:"\f4d7"}.fa-rss::before{content:"\f09e"}.fa-feed::before{content:"\f09e"}.fa-ruble-sign::before{content:"\f158"}.fa-rouble::before{content:"\f158"}.fa-rub::before{content:"\f158"}.fa-ruble::before{content:"\f158"}.fa-rug::before{content:"\e569"}.fa-ruler::before{content:"\f545"}.fa-ruler-combined::before{content:"\f546"}.fa-ruler-horizontal::before{content:"\f547"}.fa-ruler-vertical::before{content:"\f548"}.fa-rupee-sign::before{content:"\f156"}.fa-rupee::before{content:"\f156"}.fa-rupiah-sign::before{content:"\e23d"}.fa-s::before{content:"\53"}.fa-sack-dollar::before{content:"\f81d"}.fa-sack-xmark::before{content:"\e56a"}.fa-sailboat::before{content:"\e445"}.fa-satellite::before{content:"\f7bf"}.fa-satellite-dish::before{content:"\f7c0"}.fa-scale-balanced::before{content:"\f24e"}.fa-balance-scale::before{content:"\f24e"}.fa-scale-unbalanced::before{content:"\f515"}.fa-balance-scale-left::before{content:"\f515"}.fa-scale-unbalanced-flip::before{content:"\f516"}.fa-balance-scale-right::before{content:"\f516"}.fa-school::before{content:"\f549"}.fa-school-circle-check::before{content:"\e56b"}.fa-school-circle-exclamation::before{content:"\e56c"}.fa-school-circle-xmark::before{content:"\e56d"}.fa-school-flag::before{content:"\e56e"}.fa-school-lock::before{content:"\e56f"}.fa-scissors::before{content:"\f0c4"}.fa-cut::before{content:"\f0c4"}.fa-screwdriver::before{content:"\f54a"}.fa-screwdriver-wrench::before{content:"\f7d9"}.fa-tools::before{content:"\f7d9"}.fa-scroll::before{content:"\f70e"}.fa-scroll-torah::before{content:"\f6a0"}.fa-torah::before{content:"\f6a0"}.fa-sd-card::before{content:"\f7c2"}.fa-section::before{content:"\e447"}.fa-seedling::before{content:"\f4d8"}.fa-sprout::before{content:"\f4d8"}.fa-server::before{content:"\f233"}.fa-shapes::before{content:"\f61f"}.fa-triangle-circle-square::before{content:"\f61f"}.fa-share::before{content:"\f064"}.fa-arrow-turn-right::before{content:"\f064"}.fa-mail-forward::before{content:"\f064"}.fa-share-from-square::before{content:"\f14d"}.fa-share-square::before{content:"\f14d"}.fa-share-nodes::before{content:"\f1e0"}.fa-share-alt::before{content:"\f1e0"}.fa-sheet-plastic::before{content:"\e571"}.fa-shekel-sign::before{content:"\f20b"}.fa-ils::before{content:"\f20b"}.fa-shekel::before{content:"\f20b"}.fa-sheqel::before{content:"\f20b"}.fa-sheqel-sign::before{content:"\f20b"}.fa-shield::before{content:"\f132"}.fa-shield-blank::before{content:"\f132"}.fa-shield-cat::before{content:"\e572"}.fa-shield-dog::before{content:"\e573"}.fa-shield-halved::before{content:"\f3ed"}.fa-shield-alt::before{content:"\f3ed"}.fa-shield-heart::before{content:"\e574"}.fa-shield-virus::before{content:"\e06c"}.fa-ship::before{content:"\f21a"}.fa-shirt::before{content:"\f553"}.fa-t-shirt::before{content:"\f553"}.fa-tshirt::before{content:"\f553"}.fa-shoe-prints::before{content:"\f54b"}.fa-shop::before{content:"\f54f"}.fa-store-alt::before{content:"\f54f"}.fa-shop-lock::before{content:"\e4a5"}.fa-shop-slash::before{content:"\e070"}.fa-store-alt-slash::before{content:"\e070"}.fa-shower::before{content:"\f2cc"}.fa-shrimp::before{content:"\e448"}.fa-shuffle::before{content:"\f074"}.fa-random::before{content:"\f074"}.fa-shuttle-space::before{content:"\f197"}.fa-space-shuttle::before{content:"\f197"}.fa-sign-hanging::before{content:"\f4d9"}.fa-sign::before{content:"\f4d9"}.fa-signal::before{content:"\f012"}.fa-signal-5::before{content:"\f012"}.fa-signal-perfect::before{content:"\f012"}.fa-signature::before{content:"\f5b7"}.fa-signs-post::before{content:"\f277"}.fa-map-signs::before{content:"\f277"}.fa-sim-card::before{content:"\f7c4"}.fa-sink::before{content:"\e06d"}.fa-sitemap::before{content:"\f0e8"}.fa-skull::before{content:"\f54c"}.fa-skull-crossbones::before{content:"\f714"}.fa-slash::before{content:"\f715"}.fa-sleigh::before{content:"\f7cc"}.fa-sliders::before{content:"\f1de"}.fa-sliders-h::before{content:"\f1de"}.fa-smog::before{content:"\f75f"}.fa-smoking::before{content:"\f48d"}.fa-snowflake::before{content:"\f2dc"}.fa-snowman::before{content:"\f7d0"}.fa-snowplow::before{content:"\f7d2"}.fa-soap::before{content:"\e06e"}.fa-socks::before{content:"\f696"}.fa-solar-panel::before{content:"\f5ba"}.fa-sort::before{content:"\f0dc"}.fa-unsorted::before{content:"\f0dc"}.fa-sort-down::before{content:"\f0dd"}.fa-sort-desc::before{content:"\f0dd"}.fa-sort-up::before{content:"\f0de"}.fa-sort-asc::before{content:"\f0de"}.fa-spa::before{content:"\f5bb"}.fa-spaghetti-monster-flying::before{content:"\f67b"}.fa-pastafarianism::before{content:"\f67b"}.fa-spell-check::before{content:"\f891"}.fa-spider::before{content:"\f717"}.fa-spinner::before{content:"\f110"}.fa-splotch::before{content:"\f5bc"}.fa-spoon::before{content:"\f2e5"}.fa-utensil-spoon::before{content:"\f2e5"}.fa-spray-can::before{content:"\f5bd"}.fa-spray-can-sparkles::before{content:"\f5d0"}.fa-air-freshener::before{content:"\f5d0"}.fa-square::before{content:"\f0c8"}.fa-square-arrow-up-right::before{content:"\f14c"}.fa-external-link-square::before{content:"\f14c"}.fa-square-caret-down::before{content:"\f150"}.fa-caret-square-down::before{content:"\f150"}.fa-square-caret-left::before{content:"\f191"}.fa-caret-square-left::before{content:"\f191"}.fa-square-caret-right::before{content:"\f152"}.fa-caret-square-right::before{content:"\f152"}.fa-square-caret-up::before{content:"\f151"}.fa-caret-square-up::before{content:"\f151"}.fa-square-check::before{content:"\f14a"}.fa-check-square::before{content:"\f14a"}.fa-square-envelope::before{content:"\f199"}.fa-envelope-square::before{content:"\f199"}.fa-square-full::before{content:"\f45c"}.fa-square-h::before{content:"\f0fd"}.fa-h-square::before{content:"\f0fd"}.fa-square-minus::before{content:"\f146"}.fa-minus-square::before{content:"\f146"}.fa-square-nfi::before{content:"\e576"}.fa-square-parking::before{content:"\f540"}.fa-parking::before{content:"\f540"}.fa-square-pen::before{content:"\f14b"}.fa-pen-square::before{content:"\f14b"}.fa-pencil-square::before{content:"\f14b"}.fa-square-person-confined::before{content:"\e577"}.fa-square-phone::before{content:"\f098"}.fa-phone-square::before{content:"\f098"}.fa-square-phone-flip::before{content:"\f87b"}.fa-phone-square-alt::before{content:"\f87b"}.fa-square-plus::before{content:"\f0fe"}.fa-plus-square::before{content:"\f0fe"}.fa-square-poll-horizontal::before{content:"\f682"}.fa-poll-h::before{content:"\f682"}.fa-square-poll-vertical::before{content:"\f681"}.fa-poll::before{content:"\f681"}.fa-square-root-variable::before{content:"\f698"}.fa-square-root-alt::before{content:"\f698"}.fa-square-rss::before{content:"\f143"}.fa-rss-square::before{content:"\f143"}.fa-square-share-nodes::before{content:"\f1e1"}.fa-share-alt-square::before{content:"\f1e1"}.fa-square-up-right::before{content:"\f360"}.fa-external-link-square-alt::before{content:"\f360"}.fa-square-virus::before{content:"\e578"}.fa-square-xmark::before{content:"\f2d3"}.fa-times-square::before{content:"\f2d3"}.fa-xmark-square::before{content:"\f2d3"}.fa-staff-snake::before{content:"\e579"}.fa-rod-asclepius::before{content:"\e579"}.fa-rod-snake::before{content:"\e579"}.fa-staff-aesculapius::before{content:"\e579"}.fa-stairs::before{content:"\e289"}.fa-stamp::before{content:"\f5bf"}.fa-stapler::before{content:"\e5af"}.fa-star::before{content:"\f005"}.fa-star-and-crescent::before{content:"\f699"}.fa-star-half::before{content:"\f089"}.fa-star-half-stroke::before{content:"\f5c0"}.fa-star-half-alt::before{content:"\f5c0"}.fa-star-of-david::before{content:"\f69a"}.fa-star-of-life::before{content:"\f621"}.fa-sterling-sign::before{content:"\f154"}.fa-gbp::before{content:"\f154"}.fa-pound-sign::before{content:"\f154"}.fa-stethoscope::before{content:"\f0f1"}.fa-stop::before{content:"\f04d"}.fa-stopwatch::before{content:"\f2f2"}.fa-stopwatch-20::before{content:"\e06f"}.fa-store::before{content:"\f54e"}.fa-store-slash::before{content:"\e071"}.fa-street-view::before{content:"\f21d"}.fa-strikethrough::before{content:"\f0cc"}.fa-stroopwafel::before{content:"\f551"}.fa-subscript::before{content:"\f12c"}.fa-suitcase::before{content:"\f0f2"}.fa-suitcase-medical::before{content:"\f0fa"}.fa-medkit::before{content:"\f0fa"}.fa-suitcase-rolling::before{content:"\f5c1"}.fa-sun::before{content:"\f185"}.fa-sun-plant-wilt::before{content:"\e57a"}.fa-superscript::before{content:"\f12b"}.fa-swatchbook::before{content:"\f5c3"}.fa-synagogue::before{content:"\f69b"}.fa-syringe::before{content:"\f48e"}.fa-t::before{content:"\54"}.fa-table::before{content:"\f0ce"}.fa-table-cells::before{content:"\f00a"}.fa-th::before{content:"\f00a"}.fa-table-cells-large::before{content:"\f009"}.fa-th-large::before{content:"\f009"}.fa-table-columns::before{content:"\f0db"}.fa-columns::before{content:"\f0db"}.fa-table-list::before{content:"\f00b"}.fa-th-list::before{content:"\f00b"}.fa-table-tennis-paddle-ball::before{content:"\f45d"}.fa-ping-pong-paddle-ball::before{content:"\f45d"}.fa-table-tennis::before{content:"\f45d"}.fa-tablet::before{content:"\f3fb"}.fa-tablet-android::before{content:"\f3fb"}.fa-tablet-button::before{content:"\f10a"}.fa-tablet-screen-button::before{content:"\f3fa"}.fa-tablet-alt::before{content:"\f3fa"}.fa-tablets::before{content:"\f490"}.fa-tachograph-digital::before{content:"\f566"}.fa-digital-tachograph::before{content:"\f566"}.fa-tag::before{content:"\f02b"}.fa-tags::before{content:"\f02c"}.fa-tape::before{content:"\f4db"}.fa-tarp::before{content:"\e57b"}.fa-tarp-droplet::before{content:"\e57c"}.fa-taxi::before{content:"\f1ba"}.fa-cab::before{content:"\f1ba"}.fa-teeth::before{content:"\f62e"}.fa-teeth-open::before{content:"\f62f"}.fa-temperature-arrow-down::before{content:"\e03f"}.fa-temperature-down::before{content:"\e03f"}.fa-temperature-arrow-up::before{content:"\e040"}.fa-temperature-up::before{content:"\e040"}.fa-temperature-empty::before{content:"\f2cb"}.fa-temperature-0::before{content:"\f2cb"}.fa-thermometer-0::before{content:"\f2cb"}.fa-thermometer-empty::before{content:"\f2cb"}.fa-temperature-full::before{content:"\f2c7"}.fa-temperature-4::before{content:"\f2c7"}.fa-thermometer-4::before{content:"\f2c7"}.fa-thermometer-full::before{content:"\f2c7"}.fa-temperature-half::before{content:"\f2c9"}.fa-temperature-2::before{content:"\f2c9"}.fa-thermometer-2::before{content:"\f2c9"}.fa-thermometer-half::before{content:"\f2c9"}.fa-temperature-high::before{content:"\f769"}.fa-temperature-low::before{content:"\f76b"}.fa-temperature-quarter::before{content:"\f2ca"}.fa-temperature-1::before{content:"\f2ca"}.fa-thermometer-1::before{content:"\f2ca"}.fa-thermometer-quarter::before{content:"\f2ca"}.fa-temperature-three-quarters::before{content:"\f2c8"}.fa-temperature-3::before{content:"\f2c8"}.fa-thermometer-3::before{content:"\f2c8"}.fa-thermometer-three-quarters::before{content:"\f2c8"}.fa-tenge-sign::before{content:"\f7d7"}.fa-tenge::before{content:"\f7d7"}.fa-tent::before{content:"\e57d"}.fa-tent-arrow-down-to-line::before{content:"\e57e"}.fa-tent-arrow-left-right::before{content:"\e57f"}.fa-tent-arrow-turn-left::before{content:"\e580"}.fa-tent-arrows-down::before{content:"\e581"}.fa-tents::before{content:"\e582"}.fa-terminal::before{content:"\f120"}.fa-text-height::before{content:"\f034"}.fa-text-slash::before{content:"\f87d"}.fa-remove-format::before{content:"\f87d"}.fa-text-width::before{content:"\f035"}.fa-thermometer::before{content:"\f491"}.fa-thumbs-down::before{content:"\f165"}.fa-thumbs-up::before{content:"\f164"}.fa-thumbtack::before{content:"\f08d"}.fa-thumb-tack::before{content:"\f08d"}.fa-ticket::before{content:"\f145"}.fa-ticket-simple::before{content:"\f3ff"}.fa-ticket-alt::before{content:"\f3ff"}.fa-timeline::before{content:"\e29c"}.fa-toggle-off::before{content:"\f204"}.fa-toggle-on::before{content:"\f205"}.fa-toilet::before{content:"\f7d8"}.fa-toilet-paper::before{content:"\f71e"}.fa-toilet-paper-slash::before{content:"\e072"}.fa-toilet-portable::before{content:"\e583"}.fa-toilets-portable::before{content:"\e584"}.fa-toolbox::before{content:"\f552"}.fa-tooth::before{content:"\f5c9"}.fa-torii-gate::before{content:"\f6a1"}.fa-tornado::before{content:"\f76f"}.fa-tower-broadcast::before{content:"\f519"}.fa-broadcast-tower::before{content:"\f519"}.fa-tower-cell::before{content:"\e585"}.fa-tower-observation::before{content:"\e586"}.fa-tractor::before{content:"\f722"}.fa-trademark::before{content:"\f25c"}.fa-traffic-light::before{content:"\f637"}.fa-trailer::before{content:"\e041"}.fa-train::before{content:"\f238"}.fa-train-subway::before{content:"\f239"}.fa-subway::before{content:"\f239"}.fa-train-tram::before{content:"\e5b4"}.fa-transgender::before{content:"\f225"}.fa-transgender-alt::before{content:"\f225"}.fa-trash::before{content:"\f1f8"}.fa-trash-arrow-up::before{content:"\f829"}.fa-trash-restore::before{content:"\f829"}.fa-trash-can::before{content:"\f2ed"}.fa-trash-alt::before{content:"\f2ed"}.fa-trash-can-arrow-up::before{content:"\f82a"}.fa-trash-restore-alt::before{content:"\f82a"}.fa-tree::before{content:"\f1bb"}.fa-tree-city::before{content:"\e587"}.fa-triangle-exclamation::before{content:"\f071"}.fa-exclamation-triangle::before{content:"\f071"}.fa-warning::before{content:"\f071"}.fa-trophy::before{content:"\f091"}.fa-trowel::before{content:"\e589"}.fa-trowel-bricks::before{content:"\e58a"}.fa-truck::before{content:"\f0d1"}.fa-truck-arrow-right::before{content:"\e58b"}.fa-truck-droplet::before{content:"\e58c"}.fa-truck-fast::before{content:"\f48b"}.fa-shipping-fast::before{content:"\f48b"}.fa-truck-field::before{content:"\e58d"}.fa-truck-field-un::before{content:"\e58e"}.fa-truck-front::before{content:"\e2b7"}.fa-truck-medical::before{content:"\f0f9"}.fa-ambulance::before{content:"\f0f9"}.fa-truck-monster::before{content:"\f63b"}.fa-truck-moving::before{content:"\f4df"}.fa-truck-pickup::before{content:"\f63c"}.fa-truck-plane::before{content:"\e58f"}.fa-truck-ramp-box::before{content:"\f4de"}.fa-truck-loading::before{content:"\f4de"}.fa-tty::before{content:"\f1e4"}.fa-teletype::before{content:"\f1e4"}.fa-turkish-lira-sign::before{content:"\e2bb"}.fa-try::before{content:"\e2bb"}.fa-turkish-lira::before{content:"\e2bb"}.fa-turn-down::before{content:"\f3be"}.fa-level-down-alt::before{content:"\f3be"}.fa-turn-up::before{content:"\f3bf"}.fa-level-up-alt::before{content:"\f3bf"}.fa-tv::before{content:"\f26c"}.fa-television::before{content:"\f26c"}.fa-tv-alt::before{content:"\f26c"}.fa-u::before{content:"\55"}.fa-umbrella::before{content:"\f0e9"}.fa-umbrella-beach::before{content:"\f5ca"}.fa-underline::before{content:"\f0cd"}.fa-universal-access::before{content:"\f29a"}.fa-unlock::before{content:"\f09c"}.fa-unlock-keyhole::before{content:"\f13e"}.fa-unlock-alt::before{content:"\f13e"}.fa-up-down::before{content:"\f338"}.fa-arrows-alt-v::before{content:"\f338"}.fa-up-down-left-right::before{content:"\f0b2"}.fa-arrows-alt::before{content:"\f0b2"}.fa-up-long::before{content:"\f30c"}.fa-long-arrow-alt-up::before{content:"\f30c"}.fa-up-right-and-down-left-from-center::before{content:"\f424"}.fa-expand-alt::before{content:"\f424"}.fa-up-right-from-square::before{content:"\f35d"}.fa-external-link-alt::before{content:"\f35d"}.fa-upload::before{content:"\f093"}.fa-user::before{content:"\f007"}.fa-user-astronaut::before{content:"\f4fb"}.fa-user-check::before{content:"\f4fc"}.fa-user-clock::before{content:"\f4fd"}.fa-user-doctor::before{content:"\f0f0"}.fa-user-md::before{content:"\f0f0"}.fa-user-gear::before{content:"\f4fe"}.fa-user-cog::before{content:"\f4fe"}.fa-user-graduate::before{content:"\f501"}.fa-user-group::before{content:"\f500"}.fa-user-friends::before{content:"\f500"}.fa-user-injured::before{content:"\f728"}.fa-user-large::before{content:"\f406"}.fa-user-alt::before{content:"\f406"}.fa-user-large-slash::before{content:"\f4fa"}.fa-user-alt-slash::before{content:"\f4fa"}.fa-user-lock::before{content:"\f502"}.fa-user-minus::before{content:"\f503"}.fa-user-ninja::before{content:"\f504"}.fa-user-nurse::before{content:"\f82f"}.fa-user-pen::before{content:"\f4ff"}.fa-user-edit::before{content:"\f4ff"}.fa-user-plus::before{content:"\f234"}.fa-user-secret::before{content:"\f21b"}.fa-user-shield::before{content:"\f505"}.fa-user-slash::before{content:"\f506"}.fa-user-tag::before{content:"\f507"}.fa-user-tie::before{content:"\f508"}.fa-user-xmark::before{content:"\f235"}.fa-user-times::before{content:"\f235"}.fa-users::before{content:"\f0c0"}.fa-users-between-lines::before{content:"\e591"}.fa-users-gear::before{content:"\f509"}.fa-users-cog::before{content:"\f509"}.fa-users-line::before{content:"\e592"}.fa-users-rays::before{content:"\e593"}.fa-users-rectangle::before{content:"\e594"}.fa-users-slash::before{content:"\e073"}.fa-users-viewfinder::before{content:"\e595"}.fa-utensils::before{content:"\f2e7"}.fa-cutlery::before{content:"\f2e7"}.fa-v::before{content:"\56"}.fa-van-shuttle::before{content:"\f5b6"}.fa-shuttle-van::before{content:"\f5b6"}.fa-vault::before{content:"\e2c5"}.fa-vector-square::before{content:"\f5cb"}.fa-venus::before{content:"\f221"}.fa-venus-double::before{content:"\f226"}.fa-venus-mars::before{content:"\f228"}.fa-vest::before{content:"\e085"}.fa-vest-patches::before{content:"\e086"}.fa-vial::before{content:"\f492"}.fa-vial-circle-check::before{content:"\e596"}.fa-vial-virus::before{content:"\e597"}.fa-vials::before{content:"\f493"}.fa-video::before{content:"\f03d"}.fa-video-camera::before{content:"\f03d"}.fa-video-slash::before{content:"\f4e2"}.fa-vihara::before{content:"\f6a7"}.fa-virus::before{content:"\e074"}.fa-virus-covid::before{content:"\e4a8"}.fa-virus-covid-slash::before{content:"\e4a9"}.fa-virus-slash::before{content:"\e075"}.fa-viruses::before{content:"\e076"}.fa-voicemail::before{content:"\f897"}.fa-volcano::before{content:"\f770"}.fa-volleyball::before{content:"\f45f"}.fa-volleyball-ball::before{content:"\f45f"}.fa-volume-high::before{content:"\f028"}.fa-volume-up::before{content:"\f028"}.fa-volume-low::before{content:"\f027"}.fa-volume-down::before{content:"\f027"}.fa-volume-off::before{content:"\f026"}.fa-volume-xmark::before{content:"\f6a9"}.fa-volume-mute::before{content:"\f6a9"}.fa-volume-times::before{content:"\f6a9"}.fa-vr-cardboard::before{content:"\f729"}.fa-w::before{content:"\57"}.fa-walkie-talkie::before{content:"\f8ef"}.fa-wallet::before{content:"\f555"}.fa-wand-magic::before{content:"\f0d0"}.fa-magic::before{content:"\f0d0"}.fa-wand-magic-sparkles::before{content:"\e2ca"}.fa-magic-wand-sparkles::before{content:"\e2ca"}.fa-wand-sparkles::before{content:"\f72b"}.fa-warehouse::before{content:"\f494"}.fa-water::before{content:"\f773"}.fa-water-ladder::before{content:"\f5c5"}.fa-ladder-water::before{content:"\f5c5"}.fa-swimming-pool::before{content:"\f5c5"}.fa-wave-square::before{content:"\f83e"}.fa-weight-hanging::before{content:"\f5cd"}.fa-weight-scale::before{content:"\f496"}.fa-weight::before{content:"\f496"}.fa-wheat-awn::before{content:"\e2cd"}.fa-wheat-alt::before{content:"\e2cd"}.fa-wheat-awn-circle-exclamation::before{content:"\e598"}.fa-wheelchair::before{content:"\f193"}.fa-wheelchair-move::before{content:"\e2ce"}.fa-wheelchair-alt::before{content:"\e2ce"}.fa-whiskey-glass::before{content:"\f7a0"}.fa-glass-whiskey::before{content:"\f7a0"}.fa-wifi::before{content:"\f1eb"}.fa-wifi-3::before{content:"\f1eb"}.fa-wifi-strong::before{content:"\f1eb"}.fa-wind::before{content:"\f72e"}.fa-window-maximize::before{content:"\f2d0"}.fa-window-minimize::before{content:"\f2d1"}.fa-window-restore::before{content:"\f2d2"}.fa-wine-bottle::before{content:"\f72f"}.fa-wine-glass::before{content:"\f4e3"}.fa-wine-glass-empty::before{content:"\f5ce"}.fa-wine-glass-alt::before{content:"\f5ce"}.fa-won-sign::before{content:"\f159"}.fa-krw::before{content:"\f159"}.fa-won::before{content:"\f159"}.fa-worm::before{content:"\e599"}.fa-wrench::before{content:"\f0ad"}.fa-x::before{content:"\58"}.fa-x-ray::before{content:"\f497"}.fa-xmark::before{content:"\f00d"}.fa-close::before{content:"\f00d"}.fa-multiply::before{content:"\f00d"}.fa-remove::before{content:"\f00d"}.fa-times::before{content:"\f00d"}.fa-xmarks-lines::before{content:"\e59a"}.fa-y::before{content:"\59"}.fa-yen-sign::before{content:"\f157"}.fa-cny::before{content:"\f157"}.fa-jpy::before{content:"\f157"}.fa-rmb::before{content:"\f157"}.fa-yen::before{content:"\f157"}.fa-yin-yang::before{content:"\f6ad"}.fa-z::before{content:"\5a"}.fa-sr-only,.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}.fa-sr-only-focusable:not(:focus),.sr-only-focusable:not(:focus){position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}:host,:root{--fa-font-brands:normal 400 1em/1 "Font Awesome 6 Brands"}@font-face{font-family:'Font Awesome 6 Brands';font-style:normal;font-weight:400;font-display:block;src:url(../fonts/fa-brands-400.woff2) format("woff2"),url(../fonts/fa-brands-400.ttf) format("truetype")}.fa-brands,.fab{font-family:'Font Awesome 6 Brands';font-weight:400}.fa-42-group:before{content:"\e080"}.fa-innosoft:before{content:"\e080"}.fa-500px:before{content:"\f26e"}.fa-accessible-icon:before{content:"\f368"}.fa-accusoft:before{content:"\f369"}.fa-adn:before{content:"\f170"}.fa-adversal:before{content:"\f36a"}.fa-affiliatetheme:before{content:"\f36b"}.fa-airbnb:before{content:"\f834"}.fa-algolia:before{content:"\f36c"}.fa-alipay:before{content:"\f642"}.fa-amazon:before{content:"\f270"}.fa-amazon-pay:before{content:"\f42c"}.fa-amilia:before{content:"\f36d"}.fa-android:before{content:"\f17b"}.fa-angellist:before{content:"\f209"}.fa-angrycreative:before{content:"\f36e"}.fa-angular:before{content:"\f420"}.fa-app-store:before{content:"\f36f"}.fa-app-store-ios:before{content:"\f370"}.fa-apper:before{content:"\f371"}.fa-apple:before{content:"\f179"}.fa-apple-pay:before{content:"\f415"}.fa-artstation:before{content:"\f77a"}.fa-asymmetrik:before{content:"\f372"}.fa-atlassian:before{content:"\f77b"}.fa-audible:before{content:"\f373"}.fa-autoprefixer:before{content:"\f41c"}.fa-avianex:before{content:"\f374"}.fa-aviato:before{content:"\f421"}.fa-aws:before{content:"\f375"}.fa-bandcamp:before{content:"\f2d5"}.fa-battle-net:before{content:"\f835"}.fa-behance:before{content:"\f1b4"}.fa-bilibili:before{content:"\e3d9"}.fa-bimobject:before{content:"\f378"}.fa-bitbucket:before{content:"\f171"}.fa-bitcoin:before{content:"\f379"}.fa-bity:before{content:"\f37a"}.fa-black-tie:before{content:"\f27e"}.fa-blackberry:before{content:"\f37b"}.fa-blogger:before{content:"\f37c"}.fa-blogger-b:before{content:"\f37d"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-bootstrap:before{content:"\f836"}.fa-bots:before{content:"\e340"}.fa-btc:before{content:"\f15a"}.fa-buffer:before{content:"\f837"}.fa-buromobelexperte:before{content:"\f37f"}.fa-buy-n-large:before{content:"\f8a6"}.fa-buysellads:before{content:"\f20d"}.fa-canadian-maple-leaf:before{content:"\f785"}.fa-cc-amazon-pay:before{content:"\f42d"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-apple-pay:before{content:"\f416"}.fa-cc-diners-club:before{content:"\f24c"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-cc-visa:before{content:"\f1f0"}.fa-centercode:before{content:"\f380"}.fa-centos:before{content:"\f789"}.fa-chrome:before{content:"\f268"}.fa-chromecast:before{content:"\f838"}.fa-cloudflare:before{content:"\e07d"}.fa-cloudscale:before{content:"\f383"}.fa-cloudsmith:before{content:"\f384"}.fa-cloudversify:before{content:"\f385"}.fa-cmplid:before{content:"\e360"}.fa-codepen:before{content:"\f1cb"}.fa-codiepie:before{content:"\f284"}.fa-confluence:before{content:"\f78d"}.fa-connectdevelop:before{content:"\f20e"}.fa-contao:before{content:"\f26d"}.fa-cotton-bureau:before{content:"\f89e"}.fa-cpanel:before{content:"\f388"}.fa-creative-commons:before{content:"\f25e"}.fa-creative-commons-by:before{content:"\f4e7"}.fa-creative-commons-nc:before{content:"\f4e8"}.fa-creative-commons-nc-eu:before{content:"\f4e9"}.fa-creative-commons-nc-jp:before{content:"\f4ea"}.fa-creative-commons-nd:before{content:"\f4eb"}.fa-creative-commons-pd:before{content:"\f4ec"}.fa-creative-commons-pd-alt:before{content:"\f4ed"}.fa-creative-commons-remix:before{content:"\f4ee"}.fa-creative-commons-sa:before{content:"\f4ef"}.fa-creative-commons-sampling:before{content:"\f4f0"}.fa-creative-commons-sampling-plus:before{content:"\f4f1"}.fa-creative-commons-share:before{content:"\f4f2"}.fa-creative-commons-zero:before{content:"\f4f3"}.fa-critical-role:before{content:"\f6c9"}.fa-css3:before{content:"\f13c"}.fa-css3-alt:before{content:"\f38b"}.fa-cuttlefish:before{content:"\f38c"}.fa-d-and-d:before{content:"\f38d"}.fa-d-and-d-beyond:before{content:"\f6ca"}.fa-dailymotion:before{content:"\e052"}.fa-dashcube:before{content:"\f210"}.fa-deezer:before{content:"\e077"}.fa-delicious:before{content:"\f1a5"}.fa-deploydog:before{content:"\f38e"}.fa-deskpro:before{content:"\f38f"}.fa-dev:before{content:"\f6cc"}.fa-deviantart:before{content:"\f1bd"}.fa-dhl:before{content:"\f790"}.fa-diaspora:before{content:"\f791"}.fa-digg:before{content:"\f1a6"}.fa-digital-ocean:before{content:"\f391"}.fa-discord:before{content:"\f392"}.fa-discourse:before{content:"\f393"}.fa-dochub:before{content:"\f394"}.fa-docker:before{content:"\f395"}.fa-draft2digital:before{content:"\f396"}.fa-dribbble:before{content:"\f17d"}.fa-dropbox:before{content:"\f16b"}.fa-drupal:before{content:"\f1a9"}.fa-dyalog:before{content:"\f399"}.fa-earlybirds:before{content:"\f39a"}.fa-ebay:before{content:"\f4f4"}.fa-edge:before{content:"\f282"}.fa-edge-legacy:before{content:"\e078"}.fa-elementor:before{content:"\f430"}.fa-ello:before{content:"\f5f1"}.fa-ember:before{content:"\f423"}.fa-empire:before{content:"\f1d1"}.fa-envira:before{content:"\f299"}.fa-erlang:before{content:"\f39d"}.fa-ethereum:before{content:"\f42e"}.fa-etsy:before{content:"\f2d7"}.fa-evernote:before{content:"\f839"}.fa-expeditedssl:before{content:"\f23e"}.fa-facebook:before{content:"\f09a"}.fa-facebook-f:before{content:"\f39e"}.fa-facebook-messenger:before{content:"\f39f"}.fa-fantasy-flight-games:before{content:"\f6dc"}.fa-fedex:before{content:"\f797"}.fa-fedora:before{content:"\f798"}.fa-figma:before{content:"\f799"}.fa-firefox:before{content:"\f269"}.fa-firefox-browser:before{content:"\e007"}.fa-first-order:before{content:"\f2b0"}.fa-first-order-alt:before{content:"\f50a"}.fa-firstdraft:before{content:"\f3a1"}.fa-flickr:before{content:"\f16e"}.fa-flipboard:before{content:"\f44d"}.fa-fly:before{content:"\f417"}.fa-font-awesome:before{content:"\f2b4"}.fa-font-awesome-flag:before{content:"\f2b4"}.fa-font-awesome-logo-full:before{content:"\f2b4"}.fa-fonticons:before{content:"\f280"}.fa-fonticons-fi:before{content:"\f3a2"}.fa-fort-awesome:before{content:"\f286"}.fa-fort-awesome-alt:before{content:"\f3a3"}.fa-forumbee:before{content:"\f211"}.fa-foursquare:before{content:"\f180"}.fa-free-code-camp:before{content:"\f2c5"}.fa-freebsd:before{content:"\f3a4"}.fa-fulcrum:before{content:"\f50b"}.fa-galactic-republic:before{content:"\f50c"}.fa-galactic-senate:before{content:"\f50d"}.fa-get-pocket:before{content:"\f265"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-git:before{content:"\f1d3"}.fa-git-alt:before{content:"\f841"}.fa-github:before{content:"\f09b"}.fa-github-alt:before{content:"\f113"}.fa-gitkraken:before{content:"\f3a6"}.fa-gitlab:before{content:"\f296"}.fa-gitter:before{content:"\f426"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-gofore:before{content:"\f3a7"}.fa-golang:before{content:"\e40f"}.fa-goodreads:before{content:"\f3a8"}.fa-goodreads-g:before{content:"\f3a9"}.fa-google:before{content:"\f1a0"}.fa-google-drive:before{content:"\f3aa"}.fa-google-pay:before{content:"\e079"}.fa-google-play:before{content:"\f3ab"}.fa-google-plus:before{content:"\f2b3"}.fa-google-plus-g:before{content:"\f0d5"}.fa-google-wallet:before{content:"\f1ee"}.fa-gratipay:before{content:"\f184"}.fa-grav:before{content:"\f2d6"}.fa-gripfire:before{content:"\f3ac"}.fa-grunt:before{content:"\f3ad"}.fa-guilded:before{content:"\e07e"}.fa-gulp:before{content:"\f3ae"}.fa-hacker-news:before{content:"\f1d4"}.fa-hackerrank:before{content:"\f5f7"}.fa-hashnode:before{content:"\e499"}.fa-hips:before{content:"\f452"}.fa-hire-a-helper:before{content:"\f3b0"}.fa-hive:before{content:"\e07f"}.fa-hooli:before{content:"\f427"}.fa-hornbill:before{content:"\f592"}.fa-hotjar:before{content:"\f3b1"}.fa-houzz:before{content:"\f27c"}.fa-html5:before{content:"\f13b"}.fa-hubspot:before{content:"\f3b2"}.fa-ideal:before{content:"\e013"}.fa-imdb:before{content:"\f2d8"}.fa-instagram:before{content:"\f16d"}.fa-instalod:before{content:"\e081"}.fa-intercom:before{content:"\f7af"}.fa-internet-explorer:before{content:"\f26b"}.fa-invision:before{content:"\f7b0"}.fa-ioxhost:before{content:"\f208"}.fa-itch-io:before{content:"\f83a"}.fa-itunes:before{content:"\f3b4"}.fa-itunes-note:before{content:"\f3b5"}.fa-java:before{content:"\f4e4"}.fa-jedi-order:before{content:"\f50e"}.fa-jenkins:before{content:"\f3b6"}.fa-jira:before{content:"\f7b1"}.fa-joget:before{content:"\f3b7"}.fa-joomla:before{content:"\f1aa"}.fa-js:before{content:"\f3b8"}.fa-jsfiddle:before{content:"\f1cc"}.fa-kaggle:before{content:"\f5fa"}.fa-keybase:before{content:"\f4f5"}.fa-keycdn:before{content:"\f3ba"}.fa-kickstarter:before{content:"\f3bb"}.fa-kickstarter-k:before{content:"\f3bc"}.fa-korvue:before{content:"\f42f"}.fa-laravel:before{content:"\f3bd"}.fa-lastfm:before{content:"\f202"}.fa-leanpub:before{content:"\f212"}.fa-less:before{content:"\f41d"}.fa-line:before{content:"\f3c0"}.fa-linkedin:before{content:"\f08c"}.fa-linkedin-in:before{content:"\f0e1"}.fa-linode:before{content:"\f2b8"}.fa-linux:before{content:"\f17c"}.fa-lyft:before{content:"\f3c3"}.fa-magento:before{content:"\f3c4"}.fa-mailchimp:before{content:"\f59e"}.fa-mandalorian:before{content:"\f50f"}.fa-markdown:before{content:"\f60f"}.fa-mastodon:before{content:"\f4f6"}.fa-maxcdn:before{content:"\f136"}.fa-mdb:before{content:"\f8ca"}.fa-medapps:before{content:"\f3c6"}.fa-medium:before{content:"\f23a"}.fa-medium-m:before{content:"\f23a"}.fa-medrt:before{content:"\f3c8"}.fa-meetup:before{content:"\f2e0"}.fa-megaport:before{content:"\f5a3"}.fa-mendeley:before{content:"\f7b3"}.fa-meta:before{content:"\e49b"}.fa-microblog:before{content:"\e01a"}.fa-microsoft:before{content:"\f3ca"}.fa-mix:before{content:"\f3cb"}.fa-mixcloud:before{content:"\f289"}.fa-mixer:before{content:"\e056"}.fa-mizuni:before{content:"\f3cc"}.fa-modx:before{content:"\f285"}.fa-monero:before{content:"\f3d0"}.fa-napster:before{content:"\f3d2"}.fa-neos:before{content:"\f612"}.fa-nfc-directional:before{content:"\e530"}.fa-nfc-symbol:before{content:"\e531"}.fa-nimblr:before{content:"\f5a8"}.fa-node:before{content:"\f419"}.fa-node-js:before{content:"\f3d3"}.fa-npm:before{content:"\f3d4"}.fa-ns8:before{content:"\f3d5"}.fa-nutritionix:before{content:"\f3d6"}.fa-octopus-deploy:before{content:"\e082"}.fa-odnoklassniki:before{content:"\f263"}.fa-old-republic:before{content:"\f510"}.fa-opencart:before{content:"\f23d"}.fa-openid:before{content:"\f19b"}.fa-opera:before{content:"\f26a"}.fa-optin-monster:before{content:"\f23c"}.fa-orcid:before{content:"\f8d2"}.fa-osi:before{content:"\f41a"}.fa-padlet:before{content:"\e4a0"}.fa-page4:before{content:"\f3d7"}.fa-pagelines:before{content:"\f18c"}.fa-palfed:before{content:"\f3d8"}.fa-patreon:before{content:"\f3d9"}.fa-paypal:before{content:"\f1ed"}.fa-perbyte:before{content:"\e083"}.fa-periscope:before{content:"\f3da"}.fa-phabricator:before{content:"\f3db"}.fa-phoenix-framework:before{content:"\f3dc"}.fa-phoenix-squadron:before{content:"\f511"}.fa-php:before{content:"\f457"}.fa-pied-piper:before{content:"\f2ae"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-pied-piper-hat:before{content:"\f4e5"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-p:before{content:"\f231"}.fa-pix:before{content:"\e43a"}.fa-playstation:before{content:"\f3df"}.fa-product-hunt:before{content:"\f288"}.fa-pushed:before{content:"\f3e1"}.fa-python:before{content:"\f3e2"}.fa-qq:before{content:"\f1d6"}.fa-quinscape:before{content:"\f459"}.fa-quora:before{content:"\f2c4"}.fa-r-project:before{content:"\f4f7"}.fa-raspberry-pi:before{content:"\f7bb"}.fa-ravelry:before{content:"\f2d9"}.fa-react:before{content:"\f41b"}.fa-reacteurope:before{content:"\f75d"}.fa-readme:before{content:"\f4d5"}.fa-rebel:before{content:"\f1d0"}.fa-red-river:before{content:"\f3e3"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-alien:before{content:"\f281"}.fa-redhat:before{content:"\f7bc"}.fa-renren:before{content:"\f18b"}.fa-replyd:before{content:"\f3e6"}.fa-researchgate:before{content:"\f4f8"}.fa-resolving:before{content:"\f3e7"}.fa-rev:before{content:"\f5b2"}.fa-rocketchat:before{content:"\f3e8"}.fa-rockrms:before{content:"\f3e9"}.fa-rust:before{content:"\e07a"}.fa-safari:before{content:"\f267"}.fa-salesforce:before{content:"\f83b"}.fa-sass:before{content:"\f41e"}.fa-schlix:before{content:"\f3ea"}.fa-screenpal:before{content:"\e570"}.fa-scribd:before{content:"\f28a"}.fa-searchengin:before{content:"\f3eb"}.fa-sellcast:before{content:"\f2da"}.fa-sellsy:before{content:"\f213"}.fa-servicestack:before{content:"\f3ec"}.fa-shirtsinbulk:before{content:"\f214"}.fa-shopify:before{content:"\e057"}.fa-shopware:before{content:"\f5b5"}.fa-simplybuilt:before{content:"\f215"}.fa-sistrix:before{content:"\f3ee"}.fa-sith:before{content:"\f512"}.fa-sitrox:before{content:"\e44a"}.fa-sketch:before{content:"\f7c6"}.fa-skyatlas:before{content:"\f216"}.fa-skype:before{content:"\f17e"}.fa-slack:before{content:"\f198"}.fa-slack-hash:before{content:"\f198"}.fa-slideshare:before{content:"\f1e7"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ab"}.fa-soundcloud:before{content:"\f1be"}.fa-sourcetree:before{content:"\f7d3"}.fa-space-awesome:before{content:"\e5ac"}.fa-speakap:before{content:"\f3f3"}.fa-speaker-deck:before{content:"\f83c"}.fa-spotify:before{content:"\f1bc"}.fa-square-behance:before{content:"\f1b5"}.fa-behance-square:before{content:"\f1b5"}.fa-square-dribbble:before{content:"\f397"}.fa-dribbble-square:before{content:"\f397"}.fa-square-facebook:before{content:"\f082"}.fa-facebook-square:before{content:"\f082"}.fa-square-font-awesome:before{content:"\e5ad"}.fa-square-font-awesome-stroke:before{content:"\f35c"}.fa-font-awesome-alt:before{content:"\f35c"}.fa-square-git:before{content:"\f1d2"}.fa-git-square:before{content:"\f1d2"}.fa-square-github:before{content:"\f092"}.fa-github-square:before{content:"\f092"}.fa-square-gitlab:before{content:"\e5ae"}.fa-gitlab-square:before{content:"\e5ae"}.fa-square-google-plus:before{content:"\f0d4"}.fa-google-plus-square:before{content:"\f0d4"}.fa-square-hacker-news:before{content:"\f3af"}.fa-hacker-news-square:before{content:"\f3af"}.fa-square-instagram:before{content:"\e055"}.fa-instagram-square:before{content:"\e055"}.fa-square-js:before{content:"\f3b9"}.fa-js-square:before{content:"\f3b9"}.fa-square-lastfm:before{content:"\f203"}.fa-lastfm-square:before{content:"\f203"}.fa-square-odnoklassniki:before{content:"\f264"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-square-pied-piper:before{content:"\e01e"}.fa-pied-piper-square:before{content:"\e01e"}.fa-square-pinterest:before{content:"\f0d3"}.fa-pinterest-square:before{content:"\f0d3"}.fa-square-reddit:before{content:"\f1a2"}.fa-reddit-square:before{content:"\f1a2"}.fa-square-snapchat:before{content:"\f2ad"}.fa-snapchat-square:before{content:"\f2ad"}.fa-square-steam:before{content:"\f1b7"}.fa-steam-square:before{content:"\f1b7"}.fa-square-tumblr:before{content:"\f174"}.fa-tumblr-square:before{content:"\f174"}.fa-square-twitter:before{content:"\f081"}.fa-twitter-square:before{content:"\f081"}.fa-square-viadeo:before{content:"\f2aa"}.fa-viadeo-square:before{content:"\f2aa"}.fa-square-vimeo:before{content:"\f194"}.fa-vimeo-square:before{content:"\f194"}.fa-square-whatsapp:before{content:"\f40c"}.fa-whatsapp-square:before{content:"\f40c"}.fa-square-xing:before{content:"\f169"}.fa-xing-square:before{content:"\f169"}.fa-square-youtube:before{content:"\f431"}.fa-youtube-square:before{content:"\f431"}.fa-squarespace:before{content:"\f5be"}.fa-stack-exchange:before{content:"\f18d"}.fa-stack-overflow:before{content:"\f16c"}.fa-stackpath:before{content:"\f842"}.fa-staylinked:before{content:"\f3f5"}.fa-steam:before{content:"\f1b6"}.fa-steam-symbol:before{content:"\f3f6"}.fa-sticker-mule:before{content:"\f3f7"}.fa-strava:before{content:"\f428"}.fa-stripe:before{content:"\f429"}.fa-stripe-s:before{content:"\f42a"}.fa-studiovinari:before{content:"\f3f8"}.fa-stumbleupon:before{content:"\f1a4"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-superpowers:before{content:"\f2dd"}.fa-supple:before{content:"\f3f9"}.fa-suse:before{content:"\f7d6"}.fa-swift:before{content:"\f8e1"}.fa-symfony:before{content:"\f83d"}.fa-teamspeak:before{content:"\f4f9"}.fa-telegram:before{content:"\f2c6"}.fa-telegram-plane:before{content:"\f2c6"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-the-red-yeti:before{content:"\f69d"}.fa-themeco:before{content:"\f5c6"}.fa-themeisle:before{content:"\f2b2"}.fa-think-peaks:before{content:"\f731"}.fa-tiktok:before{content:"\e07b"}.fa-trade-federation:before{content:"\f513"}.fa-trello:before{content:"\f181"}.fa-tumblr:before{content:"\f173"}.fa-twitch:before{content:"\f1e8"}.fa-twitter:before{content:"\f099"}.fa-typo3:before{content:"\f42b"}.fa-uber:before{content:"\f402"}.fa-ubuntu:before{content:"\f7df"}.fa-uikit:before{content:"\f403"}.fa-umbraco:before{content:"\f8e8"}.fa-uncharted:before{content:"\e084"}.fa-uniregistry:before{content:"\f404"}.fa-unity:before{content:"\e049"}.fa-unsplash:before{content:"\e07c"}.fa-untappd:before{content:"\f405"}.fa-ups:before{content:"\f7e0"}.fa-usb:before{content:"\f287"}.fa-usps:before{content:"\f7e1"}.fa-ussunnah:before{content:"\f407"}.fa-vaadin:before{content:"\f408"}.fa-viacoin:before{content:"\f237"}.fa-viadeo:before{content:"\f2a9"}.fa-viber:before{content:"\f409"}.fa-vimeo:before{content:"\f40a"}.fa-vimeo-v:before{content:"\f27d"}.fa-vine:before{content:"\f1ca"}.fa-vk:before{content:"\f189"}.fa-vnv:before{content:"\f40b"}.fa-vuejs:before{content:"\f41f"}.fa-watchman-monitoring:before{content:"\e087"}.fa-waze:before{content:"\f83f"}.fa-weebly:before{content:"\f5cc"}.fa-weibo:before{content:"\f18a"}.fa-weixin:before{content:"\f1d7"}.fa-whatsapp:before{content:"\f232"}.fa-whmcs:before{content:"\f40d"}.fa-wikipedia-w:before{content:"\f266"}.fa-windows:before{content:"\f17a"}.fa-wirsindhandwerk:before{content:"\e2d0"}.fa-wsh:before{content:"\e2d0"}.fa-wix:before{content:"\f5cf"}.fa-wizards-of-the-coast:before{content:"\f730"}.fa-wodu:before{content:"\e088"}.fa-wolf-pack-battalion:before{content:"\f514"}.fa-wordpress:before{content:"\f19a"}.fa-wordpress-simple:before{content:"\f411"}.fa-wpbeginner:before{content:"\f297"}.fa-wpexplorer:before{content:"\f2de"}.fa-wpforms:before{content:"\f298"}.fa-wpressr:before{content:"\f3e4"}.fa-rendact:before{content:"\f3e4"}.fa-xbox:before{content:"\f412"}.fa-xing:before{content:"\f168"}.fa-y-combinator:before{content:"\f23b"}.fa-yahoo:before{content:"\f19e"}.fa-yammer:before{content:"\f840"}.fa-yandex:before{content:"\f413"}.fa-yandex-international:before{content:"\f414"}.fa-yarn:before{content:"\f7e3"}.fa-yelp:before{content:"\f1e9"}.fa-yoast:before{content:"\f2b1"}.fa-youtube:before{content:"\f167"}.fa-zhihu:before{content:"\f63f"}:host,:root{--fa-font-regular:normal 400 1em/1 "Font Awesome 6 Free"}@font-face{font-family:'Font Awesome 6 Free';font-style:normal;font-weight:400;font-display:block;src:url(../fonts/fa-regular-400.woff2) format("woff2"),url(../fonts/fa-regular-400.ttf) format("truetype")}.fa-regular,.far{font-family:'Font Awesome 6 Free';font-weight:400}:host,:root{--fa-font-solid:normal 900 1em/1 "Font Awesome 6 Free"}@font-face{font-family:'Font Awesome 6 Free';font-style:normal;font-weight:900;font-display:block;src:url(../fonts/fa-solid-900.woff2) format("woff2"),url(../fonts/fa-solid-900.ttf) format("truetype")}.fa-solid,.fas{font-family:'Font Awesome 6 Free';font-weight:900}@font-face{font-family:"Font Awesome 5 Brands";font-display:block;font-weight:400;src:url(../fonts/fa-brands-400.woff2) format("woff2"),url(../fonts/fa-brands-400.ttf) format("truetype")}@font-face{font-family:"Font Awesome 5 Free";font-display:block;font-weight:900;src:url(../fonts/fa-solid-900.woff2) format("woff2"),url(../fonts/fa-solid-900.ttf) format("truetype")}@font-face{font-family:"Font Awesome 5 Free";font-display:block;font-weight:400;src:url(../fonts/fa-regular-400.woff2) format("woff2"),url(../fonts/fa-regular-400.ttf) format("truetype")}@font-face{font-family:FontAwesome;font-display:block;src:url(../fonts/fa-solid-900.woff2) format("woff2"),url(../fonts/fa-solid-900.ttf) format("truetype")}@font-face{font-family:FontAwesome;font-display:block;src:url(../fonts/fa-brands-400.woff2) format("woff2"),url(../fonts/fa-brands-400.ttf) format("truetype")}@font-face{font-family:FontAwesome;font-display:block;src:url(../fonts/fa-regular-400.woff2) format("woff2"),url(../fonts/fa-regular-400.ttf) format("truetype");unicode-range:U+F003,U+F006,U+F014,U+F016-F017,U+F01A-F01B,U+F01D,U+F022,U+F03E,U+F044,U+F046,U+F05C-F05D,U+F06E,U+F070,U+F087-F088,U+F08A,U+F094,U+F096-F097,U+F09D,U+F0A0,U+F0A2,U+F0A4-F0A7,U+F0C5,U+F0C7,U+F0E5-F0E6,U+F0EB,U+F0F6-F0F8,U+F10C,U+F114-F115,U+F118-F11A,U+F11C-F11D,U+F133,U+F147,U+F14E,U+F150-F152,U+F185-F186,U+F18E,U+F190-F192,U+F196,U+F1C1-F1C9,U+F1D9,U+F1DB,U+F1E3,U+F1EA,U+F1F7,U+F1F9,U+F20A,U+F247-F248,U+F24A,U+F24D,U+F255-F25B,U+F25D,U+F271-F274,U+F278,U+F27B,U+F28C,U+F28E,U+F29C,U+F2B5,U+F2B7,U+F2BA,U+F2BC,U+F2BE,U+F2C0-F2C1,U+F2C3,U+F2D0,U+F2D2,U+F2D4,U+F2DC}@font-face{font-family:FontAwesome;font-display:block;src:url(../fonts/fa-v4compatibility.woff2) format("woff2"),url(../fonts/fa-v4compatibility.ttf) format("truetype");unicode-range:U+F041,U+F047,U+F065-F066,U+F07D-F07E,U+F080,U+F08B,U+F08E,U+F090,U+F09A,U+F0AC,U+F0AE,U+F0B2,U+F0D0,U+F0D6,U+F0E4,U+F0EC,U+F10A-F10B,U+F123,U+F13E,U+F148-F149,U+F14C,U+F156,U+F15E,U+F160-F161,U+F163,U+F175-F178,U+F195,U+F1F8,U+F219,U+F27A}
+.fib{background-size:contain;background-position:50%;background-repeat:no-repeat}.fi{background-size:contain;background-position:50%;background-repeat:no-repeat;position:relative;display:inline-block;width:1.33333333em;line-height:1em}.fi:before{content:"\00a0"}.fi.fis{width:1em}.fi-xx{background-image:url(../img/flags/4x3/xx.svg)}.fi-xx.fis{background-image:url(../img/flags/1x1/xx.svg)}.fi-ad{background-image:url(../img/flags/4x3/ad.svg)}.fi-ad.fis{background-image:url(../img/flags/1x1/ad.svg)}.fi-ae{background-image:url(../img/flags/4x3/ae.svg)}.fi-ae.fis{background-image:url(../img/flags/1x1/ae.svg)}.fi-af{background-image:url(../img/flags/4x3/af.svg)}.fi-af.fis{background-image:url(../img/flags/1x1/af.svg)}.fi-ag{background-image:url(../img/flags/4x3/ag.svg)}.fi-ag.fis{background-image:url(../img/flags/1x1/ag.svg)}.fi-ai{background-image:url(../img/flags/4x3/ai.svg)}.fi-ai.fis{background-image:url(../img/flags/1x1/ai.svg)}.fi-al{background-image:url(../img/flags/4x3/al.svg)}.fi-al.fis{background-image:url(../img/flags/1x1/al.svg)}.fi-am{background-image:url(../img/flags/4x3/am.svg)}.fi-am.fis{background-image:url(../img/flags/1x1/am.svg)}.fi-ao{background-image:url(../img/flags/4x3/ao.svg)}.fi-ao.fis{background-image:url(../img/flags/1x1/ao.svg)}.fi-aq{background-image:url(../img/flags/4x3/aq.svg)}.fi-aq.fis{background-image:url(../img/flags/1x1/aq.svg)}.fi-ar{background-image:url(../img/flags/4x3/ar.svg)}.fi-ar.fis{background-image:url(../img/flags/1x1/ar.svg)}.fi-as{background-image:url(../img/flags/4x3/as.svg)}.fi-as.fis{background-image:url(../img/flags/1x1/as.svg)}.fi-at{background-image:url(../img/flags/4x3/at.svg)}.fi-at.fis{background-image:url(../img/flags/1x1/at.svg)}.fi-au{background-image:url(../img/flags/4x3/au.svg)}.fi-au.fis{background-image:url(../img/flags/1x1/au.svg)}.fi-aw{background-image:url(../img/flags/4x3/aw.svg)}.fi-aw.fis{background-image:url(../img/flags/1x1/aw.svg)}.fi-ax{background-image:url(../img/flags/4x3/ax.svg)}.fi-ax.fis{background-image:url(../img/flags/1x1/ax.svg)}.fi-az{background-image:url(../img/flags/4x3/az.svg)}.fi-az.fis{background-image:url(../img/flags/1x1/az.svg)}.fi-ba{background-image:url(../img/flags/4x3/ba.svg)}.fi-ba.fis{background-image:url(../img/flags/1x1/ba.svg)}.fi-bb{background-image:url(../img/flags/4x3/bb.svg)}.fi-bb.fis{background-image:url(../img/flags/1x1/bb.svg)}.fi-bd{background-image:url(../img/flags/4x3/bd.svg)}.fi-bd.fis{background-image:url(../img/flags/1x1/bd.svg)}.fi-be{background-image:url(../img/flags/4x3/be.svg)}.fi-be.fis{background-image:url(../img/flags/1x1/be.svg)}.fi-bf{background-image:url(../img/flags/4x3/bf.svg)}.fi-bf.fis{background-image:url(../img/flags/1x1/bf.svg)}.fi-bg{background-image:url(../img/flags/4x3/bg.svg)}.fi-bg.fis{background-image:url(../img/flags/1x1/bg.svg)}.fi-bh{background-image:url(../img/flags/4x3/bh.svg)}.fi-bh.fis{background-image:url(../img/flags/1x1/bh.svg)}.fi-bi{background-image:url(../img/flags/4x3/bi.svg)}.fi-bi.fis{background-image:url(../img/flags/1x1/bi.svg)}.fi-bj{background-image:url(../img/flags/4x3/bj.svg)}.fi-bj.fis{background-image:url(../img/flags/1x1/bj.svg)}.fi-bl{background-image:url(../img/flags/4x3/bl.svg)}.fi-bl.fis{background-image:url(../img/flags/1x1/bl.svg)}.fi-bm{background-image:url(../img/flags/4x3/bm.svg)}.fi-bm.fis{background-image:url(../img/flags/1x1/bm.svg)}.fi-bn{background-image:url(../img/flags/4x3/bn.svg)}.fi-bn.fis{background-image:url(../img/flags/1x1/bn.svg)}.fi-bo{background-image:url(../img/flags/4x3/bo.svg)}.fi-bo.fis{background-image:url(../img/flags/1x1/bo.svg)}.fi-bq{background-image:url(../img/flags/4x3/bq.svg)}.fi-bq.fis{background-image:url(../img/flags/1x1/bq.svg)}.fi-br{background-image:url(../img/flags/4x3/br.svg)}.fi-br.fis{background-image:url(../img/flags/1x1/br.svg)}.fi-bs{background-image:url(../img/flags/4x3/bs.svg)}.fi-bs.fis{background-image:url(../img/flags/1x1/bs.svg)}.fi-bt{background-image:url(../img/flags/4x3/bt.svg)}.fi-bt.fis{background-image:url(../img/flags/1x1/bt.svg)}.fi-bv{background-image:url(../img/flags/4x3/bv.svg)}.fi-bv.fis{background-image:url(../img/flags/1x1/bv.svg)}.fi-bw{background-image:url(../img/flags/4x3/bw.svg)}.fi-bw.fis{background-image:url(../img/flags/1x1/bw.svg)}.fi-by{background-image:url(../img/flags/4x3/by.svg)}.fi-by.fis{background-image:url(../img/flags/1x1/by.svg)}.fi-bz{background-image:url(../img/flags/4x3/bz.svg)}.fi-bz.fis{background-image:url(../img/flags/1x1/bz.svg)}.fi-ca{background-image:url(../img/flags/4x3/ca.svg)}.fi-ca.fis{background-image:url(../img/flags/1x1/ca.svg)}.fi-cc{background-image:url(../img/flags/4x3/cc.svg)}.fi-cc.fis{background-image:url(../img/flags/1x1/cc.svg)}.fi-cd{background-image:url(../img/flags/4x3/cd.svg)}.fi-cd.fis{background-image:url(../img/flags/1x1/cd.svg)}.fi-cf{background-image:url(../img/flags/4x3/cf.svg)}.fi-cf.fis{background-image:url(../img/flags/1x1/cf.svg)}.fi-cg{background-image:url(../img/flags/4x3/cg.svg)}.fi-cg.fis{background-image:url(../img/flags/1x1/cg.svg)}.fi-ch{background-image:url(../img/flags/4x3/ch.svg)}.fi-ch.fis{background-image:url(../img/flags/1x1/ch.svg)}.fi-ci{background-image:url(../img/flags/4x3/ci.svg)}.fi-ci.fis{background-image:url(../img/flags/1x1/ci.svg)}.fi-ck{background-image:url(../img/flags/4x3/ck.svg)}.fi-ck.fis{background-image:url(../img/flags/1x1/ck.svg)}.fi-cl{background-image:url(../img/flags/4x3/cl.svg)}.fi-cl.fis{background-image:url(../img/flags/1x1/cl.svg)}.fi-cm{background-image:url(../img/flags/4x3/cm.svg)}.fi-cm.fis{background-image:url(../img/flags/1x1/cm.svg)}.fi-cn{background-image:url(../img/flags/4x3/cn.svg)}.fi-cn.fis{background-image:url(../img/flags/1x1/cn.svg)}.fi-co{background-image:url(../img/flags/4x3/co.svg)}.fi-co.fis{background-image:url(../img/flags/1x1/co.svg)}.fi-cr{background-image:url(../img/flags/4x3/cr.svg)}.fi-cr.fis{background-image:url(../img/flags/1x1/cr.svg)}.fi-cu{background-image:url(../img/flags/4x3/cu.svg)}.fi-cu.fis{background-image:url(../img/flags/1x1/cu.svg)}.fi-cv{background-image:url(../img/flags/4x3/cv.svg)}.fi-cv.fis{background-image:url(../img/flags/1x1/cv.svg)}.fi-cw{background-image:url(../img/flags/4x3/cw.svg)}.fi-cw.fis{background-image:url(../img/flags/1x1/cw.svg)}.fi-cx{background-image:url(../img/flags/4x3/cx.svg)}.fi-cx.fis{background-image:url(../img/flags/1x1/cx.svg)}.fi-cy{background-image:url(../img/flags/4x3/cy.svg)}.fi-cy.fis{background-image:url(../img/flags/1x1/cy.svg)}.fi-cz{background-image:url(../img/flags/4x3/cz.svg)}.fi-cz.fis{background-image:url(../img/flags/1x1/cz.svg)}.fi-de{background-image:url(../img/flags/4x3/de.svg)}.fi-de.fis{background-image:url(../img/flags/1x1/de.svg)}.fi-dj{background-image:url(../img/flags/4x3/dj.svg)}.fi-dj.fis{background-image:url(../img/flags/1x1/dj.svg)}.fi-dk{background-image:url(../img/flags/4x3/dk.svg)}.fi-dk.fis{background-image:url(../img/flags/1x1/dk.svg)}.fi-dm{background-image:url(../img/flags/4x3/dm.svg)}.fi-dm.fis{background-image:url(../img/flags/1x1/dm.svg)}.fi-do{background-image:url(../img/flags/4x3/do.svg)}.fi-do.fis{background-image:url(../img/flags/1x1/do.svg)}.fi-dz{background-image:url(../img/flags/4x3/dz.svg)}.fi-dz.fis{background-image:url(../img/flags/1x1/dz.svg)}.fi-ec{background-image:url(../img/flags/4x3/ec.svg)}.fi-ec.fis{background-image:url(../img/flags/1x1/ec.svg)}.fi-ee{background-image:url(../img/flags/4x3/ee.svg)}.fi-ee.fis{background-image:url(../img/flags/1x1/ee.svg)}.fi-eg{background-image:url(../img/flags/4x3/eg.svg)}.fi-eg.fis{background-image:url(../img/flags/1x1/eg.svg)}.fi-eh{background-image:url(../img/flags/4x3/eh.svg)}.fi-eh.fis{background-image:url(../img/flags/1x1/eh.svg)}.fi-er{background-image:url(../img/flags/4x3/er.svg)}.fi-er.fis{background-image:url(../img/flags/1x1/er.svg)}.fi-es{background-image:url(../img/flags/4x3/es.svg)}.fi-es.fis{background-image:url(../img/flags/1x1/es.svg)}.fi-et{background-image:url(../img/flags/4x3/et.svg)}.fi-et.fis{background-image:url(../img/flags/1x1/et.svg)}.fi-fi{background-image:url(../img/flags/4x3/fi.svg)}.fi-fi.fis{background-image:url(../img/flags/1x1/fi.svg)}.fi-fj{background-image:url(../img/flags/4x3/fj.svg)}.fi-fj.fis{background-image:url(../img/flags/1x1/fj.svg)}.fi-fk{background-image:url(../img/flags/4x3/fk.svg)}.fi-fk.fis{background-image:url(../img/flags/1x1/fk.svg)}.fi-fm{background-image:url(../img/flags/4x3/fm.svg)}.fi-fm.fis{background-image:url(../img/flags/1x1/fm.svg)}.fi-fo{background-image:url(../img/flags/4x3/fo.svg)}.fi-fo.fis{background-image:url(../img/flags/1x1/fo.svg)}.fi-fr{background-image:url(../img/flags/4x3/fr.svg)}.fi-fr.fis{background-image:url(../img/flags/1x1/fr.svg)}.fi-ga{background-image:url(../img/flags/4x3/ga.svg)}.fi-ga.fis{background-image:url(../img/flags/1x1/ga.svg)}.fi-gb{background-image:url(../img/flags/4x3/gb.svg)}.fi-gb.fis{background-image:url(../img/flags/1x1/gb.svg)}.fi-gd{background-image:url(../img/flags/4x3/gd.svg)}.fi-gd.fis{background-image:url(../img/flags/1x1/gd.svg)}.fi-ge{background-image:url(../img/flags/4x3/ge.svg)}.fi-ge.fis{background-image:url(../img/flags/1x1/ge.svg)}.fi-gf{background-image:url(../img/flags/4x3/gf.svg)}.fi-gf.fis{background-image:url(../img/flags/1x1/gf.svg)}.fi-gg{background-image:url(../img/flags/4x3/gg.svg)}.fi-gg.fis{background-image:url(../img/flags/1x1/gg.svg)}.fi-gh{background-image:url(../img/flags/4x3/gh.svg)}.fi-gh.fis{background-image:url(../img/flags/1x1/gh.svg)}.fi-gi{background-image:url(../img/flags/4x3/gi.svg)}.fi-gi.fis{background-image:url(../img/flags/1x1/gi.svg)}.fi-gl{background-image:url(../img/flags/4x3/gl.svg)}.fi-gl.fis{background-image:url(../img/flags/1x1/gl.svg)}.fi-gm{background-image:url(../img/flags/4x3/gm.svg)}.fi-gm.fis{background-image:url(../img/flags/1x1/gm.svg)}.fi-gn{background-image:url(../img/flags/4x3/gn.svg)}.fi-gn.fis{background-image:url(../img/flags/1x1/gn.svg)}.fi-gp{background-image:url(../img/flags/4x3/gp.svg)}.fi-gp.fis{background-image:url(../img/flags/1x1/gp.svg)}.fi-gq{background-image:url(../img/flags/4x3/gq.svg)}.fi-gq.fis{background-image:url(../img/flags/1x1/gq.svg)}.fi-gr{background-image:url(../img/flags/4x3/gr.svg)}.fi-gr.fis{background-image:url(../img/flags/1x1/gr.svg)}.fi-gs{background-image:url(../img/flags/4x3/gs.svg)}.fi-gs.fis{background-image:url(../img/flags/1x1/gs.svg)}.fi-gt{background-image:url(../img/flags/4x3/gt.svg)}.fi-gt.fis{background-image:url(../img/flags/1x1/gt.svg)}.fi-gu{background-image:url(../img/flags/4x3/gu.svg)}.fi-gu.fis{background-image:url(../img/flags/1x1/gu.svg)}.fi-gw{background-image:url(../img/flags/4x3/gw.svg)}.fi-gw.fis{background-image:url(../img/flags/1x1/gw.svg)}.fi-gy{background-image:url(../img/flags/4x3/gy.svg)}.fi-gy.fis{background-image:url(../img/flags/1x1/gy.svg)}.fi-hk{background-image:url(../img/flags/4x3/hk.svg)}.fi-hk.fis{background-image:url(../img/flags/1x1/hk.svg)}.fi-hm{background-image:url(../img/flags/4x3/hm.svg)}.fi-hm.fis{background-image:url(../img/flags/1x1/hm.svg)}.fi-hn{background-image:url(../img/flags/4x3/hn.svg)}.fi-hn.fis{background-image:url(../img/flags/1x1/hn.svg)}.fi-hr{background-image:url(../img/flags/4x3/hr.svg)}.fi-hr.fis{background-image:url(../img/flags/1x1/hr.svg)}.fi-ht{background-image:url(../img/flags/4x3/ht.svg)}.fi-ht.fis{background-image:url(../img/flags/1x1/ht.svg)}.fi-hu{background-image:url(../img/flags/4x3/hu.svg)}.fi-hu.fis{background-image:url(../img/flags/1x1/hu.svg)}.fi-id{background-image:url(../img/flags/4x3/id.svg)}.fi-id.fis{background-image:url(../img/flags/1x1/id.svg)}.fi-ie{background-image:url(../img/flags/4x3/ie.svg)}.fi-ie.fis{background-image:url(../img/flags/1x1/ie.svg)}.fi-il{background-image:url(../img/flags/4x3/il.svg)}.fi-il.fis{background-image:url(../img/flags/1x1/il.svg)}.fi-im{background-image:url(../img/flags/4x3/im.svg)}.fi-im.fis{background-image:url(../img/flags/1x1/im.svg)}.fi-in{background-image:url(../img/flags/4x3/in.svg)}.fi-in.fis{background-image:url(../img/flags/1x1/in.svg)}.fi-io{background-image:url(../img/flags/4x3/io.svg)}.fi-io.fis{background-image:url(../img/flags/1x1/io.svg)}.fi-iq{background-image:url(../img/flags/4x3/iq.svg)}.fi-iq.fis{background-image:url(../img/flags/1x1/iq.svg)}.fi-ir{background-image:url(../img/flags/4x3/ir.svg)}.fi-ir.fis{background-image:url(../img/flags/1x1/ir.svg)}.fi-is{background-image:url(../img/flags/4x3/is.svg)}.fi-is.fis{background-image:url(../img/flags/1x1/is.svg)}.fi-it{background-image:url(../img/flags/4x3/it.svg)}.fi-it.fis{background-image:url(../img/flags/1x1/it.svg)}.fi-je{background-image:url(../img/flags/4x3/je.svg)}.fi-je.fis{background-image:url(../img/flags/1x1/je.svg)}.fi-jm{background-image:url(../img/flags/4x3/jm.svg)}.fi-jm.fis{background-image:url(../img/flags/1x1/jm.svg)}.fi-jo{background-image:url(../img/flags/4x3/jo.svg)}.fi-jo.fis{background-image:url(../img/flags/1x1/jo.svg)}.fi-jp{background-image:url(../img/flags/4x3/jp.svg)}.fi-jp.fis{background-image:url(../img/flags/1x1/jp.svg)}.fi-ke{background-image:url(../img/flags/4x3/ke.svg)}.fi-ke.fis{background-image:url(../img/flags/1x1/ke.svg)}.fi-kg{background-image:url(../img/flags/4x3/kg.svg)}.fi-kg.fis{background-image:url(../img/flags/1x1/kg.svg)}.fi-kh{background-image:url(../img/flags/4x3/kh.svg)}.fi-kh.fis{background-image:url(../img/flags/1x1/kh.svg)}.fi-ki{background-image:url(../img/flags/4x3/ki.svg)}.fi-ki.fis{background-image:url(../img/flags/1x1/ki.svg)}.fi-km{background-image:url(../img/flags/4x3/km.svg)}.fi-km.fis{background-image:url(../img/flags/1x1/km.svg)}.fi-kn{background-image:url(../img/flags/4x3/kn.svg)}.fi-kn.fis{background-image:url(../img/flags/1x1/kn.svg)}.fi-kp{background-image:url(../img/flags/4x3/kp.svg)}.fi-kp.fis{background-image:url(../img/flags/1x1/kp.svg)}.fi-kr{background-image:url(../img/flags/4x3/kr.svg)}.fi-kr.fis{background-image:url(../img/flags/1x1/kr.svg)}.fi-kw{background-image:url(../img/flags/4x3/kw.svg)}.fi-kw.fis{background-image:url(../img/flags/1x1/kw.svg)}.fi-ky{background-image:url(../img/flags/4x3/ky.svg)}.fi-ky.fis{background-image:url(../img/flags/1x1/ky.svg)}.fi-kz{background-image:url(../img/flags/4x3/kz.svg)}.fi-kz.fis{background-image:url(../img/flags/1x1/kz.svg)}.fi-la{background-image:url(../img/flags/4x3/la.svg)}.fi-la.fis{background-image:url(../img/flags/1x1/la.svg)}.fi-lb{background-image:url(../img/flags/4x3/lb.svg)}.fi-lb.fis{background-image:url(../img/flags/1x1/lb.svg)}.fi-lc{background-image:url(../img/flags/4x3/lc.svg)}.fi-lc.fis{background-image:url(../img/flags/1x1/lc.svg)}.fi-li{background-image:url(../img/flags/4x3/li.svg)}.fi-li.fis{background-image:url(../img/flags/1x1/li.svg)}.fi-lk{background-image:url(../img/flags/4x3/lk.svg)}.fi-lk.fis{background-image:url(../img/flags/1x1/lk.svg)}.fi-lr{background-image:url(../img/flags/4x3/lr.svg)}.fi-lr.fis{background-image:url(../img/flags/1x1/lr.svg)}.fi-ls{background-image:url(../img/flags/4x3/ls.svg)}.fi-ls.fis{background-image:url(../img/flags/1x1/ls.svg)}.fi-lt{background-image:url(../img/flags/4x3/lt.svg)}.fi-lt.fis{background-image:url(../img/flags/1x1/lt.svg)}.fi-lu{background-image:url(../img/flags/4x3/lu.svg)}.fi-lu.fis{background-image:url(../img/flags/1x1/lu.svg)}.fi-lv{background-image:url(../img/flags/4x3/lv.svg)}.fi-lv.fis{background-image:url(../img/flags/1x1/lv.svg)}.fi-ly{background-image:url(../img/flags/4x3/ly.svg)}.fi-ly.fis{background-image:url(../img/flags/1x1/ly.svg)}.fi-ma{background-image:url(../img/flags/4x3/ma.svg)}.fi-ma.fis{background-image:url(../img/flags/1x1/ma.svg)}.fi-mc{background-image:url(../img/flags/4x3/mc.svg)}.fi-mc.fis{background-image:url(../img/flags/1x1/mc.svg)}.fi-md{background-image:url(../img/flags/4x3/md.svg)}.fi-md.fis{background-image:url(../img/flags/1x1/md.svg)}.fi-me{background-image:url(../img/flags/4x3/me.svg)}.fi-me.fis{background-image:url(../img/flags/1x1/me.svg)}.fi-mf{background-image:url(../img/flags/4x3/mf.svg)}.fi-mf.fis{background-image:url(../img/flags/1x1/mf.svg)}.fi-mg{background-image:url(../img/flags/4x3/mg.svg)}.fi-mg.fis{background-image:url(../img/flags/1x1/mg.svg)}.fi-mh{background-image:url(../img/flags/4x3/mh.svg)}.fi-mh.fis{background-image:url(../img/flags/1x1/mh.svg)}.fi-mk{background-image:url(../img/flags/4x3/mk.svg)}.fi-mk.fis{background-image:url(../img/flags/1x1/mk.svg)}.fi-ml{background-image:url(../img/flags/4x3/ml.svg)}.fi-ml.fis{background-image:url(../img/flags/1x1/ml.svg)}.fi-mm{background-image:url(../img/flags/4x3/mm.svg)}.fi-mm.fis{background-image:url(../img/flags/1x1/mm.svg)}.fi-mn{background-image:url(../img/flags/4x3/mn.svg)}.fi-mn.fis{background-image:url(../img/flags/1x1/mn.svg)}.fi-mo{background-image:url(../img/flags/4x3/mo.svg)}.fi-mo.fis{background-image:url(../img/flags/1x1/mo.svg)}.fi-mp{background-image:url(../img/flags/4x3/mp.svg)}.fi-mp.fis{background-image:url(../img/flags/1x1/mp.svg)}.fi-mq{background-image:url(../img/flags/4x3/mq.svg)}.fi-mq.fis{background-image:url(../img/flags/1x1/mq.svg)}.fi-mr{background-image:url(../img/flags/4x3/mr.svg)}.fi-mr.fis{background-image:url(../img/flags/1x1/mr.svg)}.fi-ms{background-image:url(../img/flags/4x3/ms.svg)}.fi-ms.fis{background-image:url(../img/flags/1x1/ms.svg)}.fi-mt{background-image:url(../img/flags/4x3/mt.svg)}.fi-mt.fis{background-image:url(../img/flags/1x1/mt.svg)}.fi-mu{background-image:url(../img/flags/4x3/mu.svg)}.fi-mu.fis{background-image:url(../img/flags/1x1/mu.svg)}.fi-mv{background-image:url(../img/flags/4x3/mv.svg)}.fi-mv.fis{background-image:url(../img/flags/1x1/mv.svg)}.fi-mw{background-image:url(../img/flags/4x3/mw.svg)}.fi-mw.fis{background-image:url(../img/flags/1x1/mw.svg)}.fi-mx{background-image:url(../img/flags/4x3/mx.svg)}.fi-mx.fis{background-image:url(../img/flags/1x1/mx.svg)}.fi-my{background-image:url(../img/flags/4x3/my.svg)}.fi-my.fis{background-image:url(../img/flags/1x1/my.svg)}.fi-mz{background-image:url(../img/flags/4x3/mz.svg)}.fi-mz.fis{background-image:url(../img/flags/1x1/mz.svg)}.fi-na{background-image:url(../img/flags/4x3/na.svg)}.fi-na.fis{background-image:url(../img/flags/1x1/na.svg)}.fi-nc{background-image:url(../img/flags/4x3/nc.svg)}.fi-nc.fis{background-image:url(../img/flags/1x1/nc.svg)}.fi-ne{background-image:url(../img/flags/4x3/ne.svg)}.fi-ne.fis{background-image:url(../img/flags/1x1/ne.svg)}.fi-nf{background-image:url(../img/flags/4x3/nf.svg)}.fi-nf.fis{background-image:url(../img/flags/1x1/nf.svg)}.fi-ng{background-image:url(../img/flags/4x3/ng.svg)}.fi-ng.fis{background-image:url(../img/flags/1x1/ng.svg)}.fi-ni{background-image:url(../img/flags/4x3/ni.svg)}.fi-ni.fis{background-image:url(../img/flags/1x1/ni.svg)}.fi-nl{background-image:url(../img/flags/4x3/nl.svg)}.fi-nl.fis{background-image:url(../img/flags/1x1/nl.svg)}.fi-no{background-image:url(../img/flags/4x3/no.svg)}.fi-no.fis{background-image:url(../img/flags/1x1/no.svg)}.fi-np{background-image:url(../img/flags/4x3/np.svg)}.fi-np.fis{background-image:url(../img/flags/1x1/np.svg)}.fi-nr{background-image:url(../img/flags/4x3/nr.svg)}.fi-nr.fis{background-image:url(../img/flags/1x1/nr.svg)}.fi-nu{background-image:url(../img/flags/4x3/nu.svg)}.fi-nu.fis{background-image:url(../img/flags/1x1/nu.svg)}.fi-nz{background-image:url(../img/flags/4x3/nz.svg)}.fi-nz.fis{background-image:url(../img/flags/1x1/nz.svg)}.fi-om{background-image:url(../img/flags/4x3/om.svg)}.fi-om.fis{background-image:url(../img/flags/1x1/om.svg)}.fi-pa{background-image:url(../img/flags/4x3/pa.svg)}.fi-pa.fis{background-image:url(../img/flags/1x1/pa.svg)}.fi-pe{background-image:url(../img/flags/4x3/pe.svg)}.fi-pe.fis{background-image:url(../img/flags/1x1/pe.svg)}.fi-pf{background-image:url(../img/flags/4x3/pf.svg)}.fi-pf.fis{background-image:url(../img/flags/1x1/pf.svg)}.fi-pg{background-image:url(../img/flags/4x3/pg.svg)}.fi-pg.fis{background-image:url(../img/flags/1x1/pg.svg)}.fi-ph{background-image:url(../img/flags/4x3/ph.svg)}.fi-ph.fis{background-image:url(../img/flags/1x1/ph.svg)}.fi-pk{background-image:url(../img/flags/4x3/pk.svg)}.fi-pk.fis{background-image:url(../img/flags/1x1/pk.svg)}.fi-pl{background-image:url(../img/flags/4x3/pl.svg)}.fi-pl.fis{background-image:url(../img/flags/1x1/pl.svg)}.fi-pm{background-image:url(../img/flags/4x3/pm.svg)}.fi-pm.fis{background-image:url(../img/flags/1x1/pm.svg)}.fi-pn{background-image:url(../img/flags/4x3/pn.svg)}.fi-pn.fis{background-image:url(../img/flags/1x1/pn.svg)}.fi-pr{background-image:url(../img/flags/4x3/pr.svg)}.fi-pr.fis{background-image:url(../img/flags/1x1/pr.svg)}.fi-ps{background-image:url(../img/flags/4x3/ps.svg)}.fi-ps.fis{background-image:url(../img/flags/1x1/ps.svg)}.fi-pt{background-image:url(../img/flags/4x3/pt.svg)}.fi-pt.fis{background-image:url(../img/flags/1x1/pt.svg)}.fi-pw{background-image:url(../img/flags/4x3/pw.svg)}.fi-pw.fis{background-image:url(../img/flags/1x1/pw.svg)}.fi-py{background-image:url(../img/flags/4x3/py.svg)}.fi-py.fis{background-image:url(../img/flags/1x1/py.svg)}.fi-qa{background-image:url(../img/flags/4x3/qa.svg)}.fi-qa.fis{background-image:url(../img/flags/1x1/qa.svg)}.fi-re{background-image:url(../img/flags/4x3/re.svg)}.fi-re.fis{background-image:url(../img/flags/1x1/re.svg)}.fi-ro{background-image:url(../img/flags/4x3/ro.svg)}.fi-ro.fis{background-image:url(../img/flags/1x1/ro.svg)}.fi-rs{background-image:url(../img/flags/4x3/rs.svg)}.fi-rs.fis{background-image:url(../img/flags/1x1/rs.svg)}.fi-ru{background-image:url(../img/flags/4x3/ru.svg)}.fi-ru.fis{background-image:url(../img/flags/1x1/ru.svg)}.fi-rw{background-image:url(../img/flags/4x3/rw.svg)}.fi-rw.fis{background-image:url(../img/flags/1x1/rw.svg)}.fi-sa{background-image:url(../img/flags/4x3/sa.svg)}.fi-sa.fis{background-image:url(../img/flags/1x1/sa.svg)}.fi-sb{background-image:url(../img/flags/4x3/sb.svg)}.fi-sb.fis{background-image:url(../img/flags/1x1/sb.svg)}.fi-sc{background-image:url(../img/flags/4x3/sc.svg)}.fi-sc.fis{background-image:url(../img/flags/1x1/sc.svg)}.fi-sd{background-image:url(../img/flags/4x3/sd.svg)}.fi-sd.fis{background-image:url(../img/flags/1x1/sd.svg)}.fi-se{background-image:url(../img/flags/4x3/se.svg)}.fi-se.fis{background-image:url(../img/flags/1x1/se.svg)}.fi-sg{background-image:url(../img/flags/4x3/sg.svg)}.fi-sg.fis{background-image:url(../img/flags/1x1/sg.svg)}.fi-sh{background-image:url(../img/flags/4x3/sh.svg)}.fi-sh.fis{background-image:url(../img/flags/1x1/sh.svg)}.fi-si{background-image:url(../img/flags/4x3/si.svg)}.fi-si.fis{background-image:url(../img/flags/1x1/si.svg)}.fi-sj{background-image:url(../img/flags/4x3/sj.svg)}.fi-sj.fis{background-image:url(../img/flags/1x1/sj.svg)}.fi-sk{background-image:url(../img/flags/4x3/sk.svg)}.fi-sk.fis{background-image:url(../img/flags/1x1/sk.svg)}.fi-sl{background-image:url(../img/flags/4x3/sl.svg)}.fi-sl.fis{background-image:url(../img/flags/1x1/sl.svg)}.fi-sm{background-image:url(../img/flags/4x3/sm.svg)}.fi-sm.fis{background-image:url(../img/flags/1x1/sm.svg)}.fi-sn{background-image:url(../img/flags/4x3/sn.svg)}.fi-sn.fis{background-image:url(../img/flags/1x1/sn.svg)}.fi-so{background-image:url(../img/flags/4x3/so.svg)}.fi-so.fis{background-image:url(../img/flags/1x1/so.svg)}.fi-sr{background-image:url(../img/flags/4x3/sr.svg)}.fi-sr.fis{background-image:url(../img/flags/1x1/sr.svg)}.fi-ss{background-image:url(../img/flags/4x3/ss.svg)}.fi-ss.fis{background-image:url(../img/flags/1x1/ss.svg)}.fi-st{background-image:url(../img/flags/4x3/st.svg)}.fi-st.fis{background-image:url(../img/flags/1x1/st.svg)}.fi-sv{background-image:url(../img/flags/4x3/sv.svg)}.fi-sv.fis{background-image:url(../img/flags/1x1/sv.svg)}.fi-sx{background-image:url(../img/flags/4x3/sx.svg)}.fi-sx.fis{background-image:url(../img/flags/1x1/sx.svg)}.fi-sy{background-image:url(../img/flags/4x3/sy.svg)}.fi-sy.fis{background-image:url(../img/flags/1x1/sy.svg)}.fi-sz{background-image:url(../img/flags/4x3/sz.svg)}.fi-sz.fis{background-image:url(../img/flags/1x1/sz.svg)}.fi-tc{background-image:url(../img/flags/4x3/tc.svg)}.fi-tc.fis{background-image:url(../img/flags/1x1/tc.svg)}.fi-td{background-image:url(../img/flags/4x3/td.svg)}.fi-td.fis{background-image:url(../img/flags/1x1/td.svg)}.fi-tf{background-image:url(../img/flags/4x3/tf.svg)}.fi-tf.fis{background-image:url(../img/flags/1x1/tf.svg)}.fi-tg{background-image:url(../img/flags/4x3/tg.svg)}.fi-tg.fis{background-image:url(../img/flags/1x1/tg.svg)}.fi-th{background-image:url(../img/flags/4x3/th.svg)}.fi-th.fis{background-image:url(../img/flags/1x1/th.svg)}.fi-tj{background-image:url(../img/flags/4x3/tj.svg)}.fi-tj.fis{background-image:url(../img/flags/1x1/tj.svg)}.fi-tk{background-image:url(../img/flags/4x3/tk.svg)}.fi-tk.fis{background-image:url(../img/flags/1x1/tk.svg)}.fi-tl{background-image:url(../img/flags/4x3/tl.svg)}.fi-tl.fis{background-image:url(../img/flags/1x1/tl.svg)}.fi-tm{background-image:url(../img/flags/4x3/tm.svg)}.fi-tm.fis{background-image:url(../img/flags/1x1/tm.svg)}.fi-tn{background-image:url(../img/flags/4x3/tn.svg)}.fi-tn.fis{background-image:url(../img/flags/1x1/tn.svg)}.fi-to{background-image:url(../img/flags/4x3/to.svg)}.fi-to.fis{background-image:url(../img/flags/1x1/to.svg)}.fi-tr{background-image:url(../img/flags/4x3/tr.svg)}.fi-tr.fis{background-image:url(../img/flags/1x1/tr.svg)}.fi-tt{background-image:url(../img/flags/4x3/tt.svg)}.fi-tt.fis{background-image:url(../img/flags/1x1/tt.svg)}.fi-tv{background-image:url(../img/flags/4x3/tv.svg)}.fi-tv.fis{background-image:url(../img/flags/1x1/tv.svg)}.fi-tw{background-image:url(../img/flags/4x3/tw.svg)}.fi-tw.fis{background-image:url(../img/flags/1x1/tw.svg)}.fi-tz{background-image:url(../img/flags/4x3/tz.svg)}.fi-tz.fis{background-image:url(../img/flags/1x1/tz.svg)}.fi-ua{background-image:url(../img/flags/4x3/ua.svg)}.fi-ua.fis{background-image:url(../img/flags/1x1/ua.svg)}.fi-ug{background-image:url(../img/flags/4x3/ug.svg)}.fi-ug.fis{background-image:url(../img/flags/1x1/ug.svg)}.fi-um{background-image:url(../img/flags/4x3/um.svg)}.fi-um.fis{background-image:url(../img/flags/1x1/um.svg)}.fi-us{background-image:url(../img/flags/4x3/us.svg)}.fi-us.fis{background-image:url(../img/flags/1x1/us.svg)}.fi-uy{background-image:url(../img/flags/4x3/uy.svg)}.fi-uy.fis{background-image:url(../img/flags/1x1/uy.svg)}.fi-uz{background-image:url(../img/flags/4x3/uz.svg)}.fi-uz.fis{background-image:url(../img/flags/1x1/uz.svg)}.fi-va{background-image:url(../img/flags/4x3/va.svg)}.fi-va.fis{background-image:url(../img/flags/1x1/va.svg)}.fi-vc{background-image:url(../img/flags/4x3/vc.svg)}.fi-vc.fis{background-image:url(../img/flags/1x1/vc.svg)}.fi-ve{background-image:url(../img/flags/4x3/ve.svg)}.fi-ve.fis{background-image:url(../img/flags/1x1/ve.svg)}.fi-vg{background-image:url(../img/flags/4x3/vg.svg)}.fi-vg.fis{background-image:url(../img/flags/1x1/vg.svg)}.fi-vi{background-image:url(../img/flags/4x3/vi.svg)}.fi-vi.fis{background-image:url(../img/flags/1x1/vi.svg)}.fi-vn{background-image:url(../img/flags/4x3/vn.svg)}.fi-vn.fis{background-image:url(../img/flags/1x1/vn.svg)}.fi-vu{background-image:url(../img/flags/4x3/vu.svg)}.fi-vu.fis{background-image:url(../img/flags/1x1/vu.svg)}.fi-wf{background-image:url(../img/flags/4x3/wf.svg)}.fi-wf.fis{background-image:url(../img/flags/1x1/wf.svg)}.fi-ws{background-image:url(../img/flags/4x3/ws.svg)}.fi-ws.fis{background-image:url(../img/flags/1x1/ws.svg)}.fi-ye{background-image:url(../img/flags/4x3/ye.svg)}.fi-ye.fis{background-image:url(../img/flags/1x1/ye.svg)}.fi-yt{background-image:url(../img/flags/4x3/yt.svg)}.fi-yt.fis{background-image:url(../img/flags/1x1/yt.svg)}.fi-za{background-image:url(../img/flags/4x3/za.svg)}.fi-za.fis{background-image:url(../img/flags/1x1/za.svg)}.fi-zm{background-image:url(../img/flags/4x3/zm.svg)}.fi-zm.fis{background-image:url(../img/flags/1x1/zm.svg)}.fi-zw{background-image:url(../img/flags/4x3/zw.svg)}.fi-zw.fis{background-image:url(../img/flags/1x1/zw.svg)}.fi-ac{background-image:url(../img/flags/4x3/ac.svg)}.fi-ac.fis{background-image:url(../img/flags/1x1/ac.svg)}.fi-cp{background-image:url(../img/flags/4x3/cp.svg)}.fi-cp.fis{background-image:url(../img/flags/1x1/cp.svg)}.fi-dg{background-image:url(../img/flags/4x3/dg.svg)}.fi-dg.fis{background-image:url(../img/flags/1x1/dg.svg)}.fi-ea{background-image:url(../img/flags/4x3/ea.svg)}.fi-ea.fis{background-image:url(../img/flags/1x1/ea.svg)}.fi-es-ct{background-image:url(../img/flags/4x3/es-ct.svg)}.fi-es-ct.fis{background-image:url(../img/flags/1x1/es-ct.svg)}.fi-es-ga{background-image:url(../img/flags/4x3/es-ga.svg)}.fi-es-ga.fis{background-image:url(../img/flags/1x1/es-ga.svg)}.fi-eu{background-image:url(../img/flags/4x3/eu.svg)}.fi-eu.fis{background-image:url(../img/flags/1x1/eu.svg)}.fi-gb-eng{background-image:url(../img/flags/4x3/gb-eng.svg)}.fi-gb-eng.fis{background-image:url(../img/flags/1x1/gb-eng.svg)}.fi-gb-nir{background-image:url(../img/flags/4x3/gb-nir.svg)}.fi-gb-nir.fis{background-image:url(../img/flags/1x1/gb-nir.svg)}.fi-gb-sct{background-image:url(../img/flags/4x3/gb-sct.svg)}.fi-gb-sct.fis{background-image:url(../img/flags/1x1/gb-sct.svg)}.fi-gb-wls{background-image:url(../img/flags/4x3/gb-wls.svg)}.fi-gb-wls.fis{background-image:url(../img/flags/1x1/gb-wls.svg)}.fi-ic{background-image:url(../img/flags/4x3/ic.svg)}.fi-ic.fis{background-image:url(../img/flags/1x1/ic.svg)}.fi-ta{background-image:url(../img/flags/4x3/ta.svg)}.fi-ta.fis{background-image:url(../img/flags/1x1/ta.svg)}.fi-un{background-image:url(../img/flags/4x3/un.svg)}.fi-un.fis{background-image:url(../img/flags/1x1/un.svg)}.fi-xk{background-image:url(../img/flags/4x3/xk.svg)}.fi-xk.fis{background-image:url(../img/flags/1x1/xk.svg)}
+.swal2-popup.swal2-toast{flex-direction:row;align-items:center;width:auto;padding:.625em;overflow-y:hidden;background:#fff;box-shadow:0 0 .625em #d9d9d9}.swal2-popup.swal2-toast .swal2-header{flex-direction:row}.swal2-popup.swal2-toast .swal2-title{flex-grow:1;justify-content:flex-start;margin:0 .6em;font-size:1em}.swal2-popup.swal2-toast .swal2-footer{margin:.5em 0 0;padding:.5em 0 0;font-size:.8em}.swal2-popup.swal2-toast .swal2-close{position:static;width:.8em;height:.8em;line-height:.8}.swal2-popup.swal2-toast .swal2-content{justify-content:flex-start;font-size:1em}.swal2-popup.swal2-toast .swal2-icon{width:2em;min-width:2em;height:2em;margin:0}.swal2-popup.swal2-toast .swal2-icon .swal2-icon-content{display:flex;align-items:center;font-size:1.8em;font-weight:700}@media (-ms-high-contrast:active),(-ms-high-contrast:none){.swal2-popup.swal2-toast .swal2-icon .swal2-icon-content{font-size:.25em}}.swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring{width:2em;height:2em}.swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line]{top:.875em;width:1.375em}.swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left]{left:.3125em}.swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right]{right:.3125em}.swal2-popup.swal2-toast .swal2-actions{flex-basis:auto!important;width:auto;height:auto;margin:0 .3125em}.swal2-popup.swal2-toast .swal2-styled{margin:0 .3125em;padding:.3125em .625em;font-size:1em}.swal2-popup.swal2-toast .swal2-styled:focus{box-shadow:0 0 0 1px #fff,0 0 0 3px rgba(50,100,150,.4)}.swal2-popup.swal2-toast .swal2-success{border-color:#a5dc86}.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line]{position:absolute;width:1.6em;height:3em;transform:rotate(45deg);border-radius:50%}.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=left]{top:-.8em;left:-.5em;transform:rotate(-45deg);transform-origin:2em 2em;border-radius:4em 0 0 4em}.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=right]{top:-.25em;left:.9375em;transform-origin:0 1.5em;border-radius:0 4em 4em 0}.swal2-popup.swal2-toast .swal2-success .swal2-success-ring{width:2em;height:2em}.swal2-popup.swal2-toast .swal2-success .swal2-success-fix{top:0;left:.4375em;width:.4375em;height:2.6875em}.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line]{height:.3125em}.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=tip]{top:1.125em;left:.1875em;width:.75em}.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=long]{top:.9375em;right:.1875em;width:1.375em}.swal2-popup.swal2-toast .swal2-success.swal2-icon-show .swal2-success-line-tip{animation:c .75s}.swal2-popup.swal2-toast .swal2-success.swal2-icon-show .swal2-success-line-long{animation:d .75s}.swal2-popup.swal2-toast.swal2-show{animation:a .5s}.swal2-popup.swal2-toast.swal2-hide{animation:b .1s forwards}.swal2-container{display:flex;position:fixed;z-index:5;top:0;right:0;bottom:0;left:0;flex-direction:row;align-items:center;justify-content:center;padding:.625em;overflow-x:hidden;transition:background-color .1s;-webkit-overflow-scrolling:touch}.swal2-container.swal2-backdrop-show{background:rgba(0,0,0,.4)}.swal2-container.swal2-backdrop-hide{background:0 0!important}.swal2-container.swal2-top{align-items:flex-start}.swal2-container.swal2-top-left,.swal2-container.swal2-top-start{align-items:flex-start;justify-content:flex-start}.swal2-container.swal2-top-end,.swal2-container.swal2-top-right{align-items:flex-start;justify-content:flex-end}.swal2-container.swal2-center{align-items:center}.swal2-container.swal2-center-left,.swal2-container.swal2-center-start{align-items:center;justify-content:flex-start}.swal2-container.swal2-center-end,.swal2-container.swal2-center-right{align-items:center;justify-content:flex-end}.swal2-container.swal2-bottom{align-items:flex-end}.swal2-container.swal2-bottom-left,.swal2-container.swal2-bottom-start{align-items:flex-end;justify-content:flex-start}.swal2-container.swal2-bottom-end,.swal2-container.swal2-bottom-right{align-items:flex-end;justify-content:flex-end}.swal2-container.swal2-bottom-end>:first-child,.swal2-container.swal2-bottom-left>:first-child,.swal2-container.swal2-bottom-right>:first-child,.swal2-container.swal2-bottom-start>:first-child,.swal2-container.swal2-bottom>:first-child{margin-top:auto}.swal2-container.swal2-grow-fullscreen>.swal2-modal{display:flex!important;flex:1;align-self:stretch;justify-content:center}.swal2-container.swal2-grow-row>.swal2-modal{display:flex!important;flex:1;align-content:center;justify-content:center}.swal2-container.swal2-grow-column{flex:1;flex-direction:column}.swal2-container.swal2-grow-column.swal2-bottom,.swal2-container.swal2-grow-column.swal2-center,.swal2-container.swal2-grow-column.swal2-top{align-items:center}.swal2-container.swal2-grow-column.swal2-bottom-left,.swal2-container.swal2-grow-column.swal2-bottom-start,.swal2-container.swal2-grow-column.swal2-center-left,.swal2-container.swal2-grow-column.swal2-center-start,.swal2-container.swal2-grow-column.swal2-top-left,.swal2-container.swal2-grow-column.swal2-top-start{align-items:flex-start}.swal2-container.swal2-grow-column.swal2-bottom-end,.swal2-container.swal2-grow-column.swal2-bottom-right,.swal2-container.swal2-grow-column.swal2-center-end,.swal2-container.swal2-grow-column.swal2-center-right,.swal2-container.swal2-grow-column.swal2-top-end,.swal2-container.swal2-grow-column.swal2-top-right{align-items:flex-end}.swal2-container.swal2-grow-column>.swal2-modal{display:flex!important;flex:1;align-content:center;justify-content:center}.swal2-container:not(.swal2-top):not(.swal2-top-start):not(.swal2-top-end):not(.swal2-top-left):not(.swal2-top-right):not(.swal2-center-start):not(.swal2-center-end):not(.swal2-center-left):not(.swal2-center-right):not(.swal2-bottom):not(.swal2-bottom-start):not(.swal2-bottom-end):not(.swal2-bottom-left):not(.swal2-bottom-right):not(.swal2-grow-fullscreen)>.swal2-modal{margin:auto}@media (-ms-high-contrast:active),(-ms-high-contrast:none){.swal2-container .swal2-modal{margin:0!important}}.swal2-popup{display:none;position:relative;box-sizing:border-box;flex-direction:column;justify-content:center;width:32em;max-width:100%;padding:1.25em;border:none;border-radius:.3125em;background:#fff;font-family:inherit;font-size:1rem}.swal2-popup:focus{outline:0}.swal2-popup.swal2-loading{overflow-y:hidden}.swal2-header{display:flex;flex-direction:column;align-items:center}.swal2-title{position:relative;max-width:100%;margin:0 0 .4em;padding:0;color:#595959;font-size:1.875em;font-weight:600;text-align:center;text-transform:none;word-wrap:break-word}.swal2-actions{display:flex;z-index:1;flex-wrap:wrap;align-items:center;justify-content:center;width:100%;margin:1.25em auto 0}.swal2-actions:not(.swal2-loading) .swal2-styled[disabled]{opacity:.4}.swal2-actions:not(.swal2-loading) .swal2-styled:hover{background-image:linear-gradient(rgba(0,0,0,.1),rgba(0,0,0,.1))}.swal2-actions:not(.swal2-loading) .swal2-styled:active{background-image:linear-gradient(rgba(0,0,0,.2),rgba(0,0,0,.2))}.swal2-actions.swal2-loading .swal2-styled.swal2-confirm{box-sizing:border-box;width:2.5em;height:2.5em;margin:.46875em;padding:0;animation:l 1.5s linear 0s infinite normal;border:.25em solid transparent;border-radius:100%;border-color:transparent;background-color:transparent!important;color:transparent;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.swal2-actions.swal2-loading .swal2-styled.swal2-cancel{margin-right:30px;margin-left:30px}.swal2-actions.swal2-loading :not(.swal2-styled).swal2-confirm:after{content:"";display:inline-block;width:15px;height:15px;margin-left:5px;animation:l 1.5s linear 0s infinite normal;border:3px solid #999;border-radius:50%;border-right-color:transparent;box-shadow:1px 1px 1px #fff}.swal2-styled{margin:.3125em;padding:.625em 2em;box-shadow:none;font-weight:500}.swal2-styled:not([disabled]){cursor:pointer}.swal2-styled.swal2-confirm{background:initial;background-color:#3085d6}.swal2-styled.swal2-cancel,.swal2-styled.swal2-confirm{border:0;border-radius:.25em;color:#fff;font-size:1.0625em}.swal2-styled.swal2-cancel{background:initial;background-color:#aaa}.swal2-styled:focus{outline:0;box-shadow:0 0 0 1px #fff,0 0 0 3px rgba(50,100,150,.4)}.swal2-styled::-moz-focus-inner{border:0}.swal2-footer{justify-content:center;margin:1.25em 0 0;padding:1em 0 0;border-top:1px solid #eee;color:#545454;font-size:1em}.swal2-timer-progress-bar{position:absolute;bottom:0;left:0;width:100%;height:.25em;background:rgba(0,0,0,.2)}.swal2-image{max-width:100%;margin:1.25em auto}.swal2-close{position:absolute;z-index:2;top:0;right:0;justify-content:center;width:1.2em;height:1.2em;padding:0;overflow:hidden;transition:color .1s ease-out;border:none;border-radius:0;outline:initial;background:0 0;color:#ccc;font-family:serif;font-size:2.5em;line-height:1.2;cursor:pointer}.swal2-close:hover{transform:none;background:0 0;color:#f27474}.swal2-close::-moz-focus-inner{border:0}.swal2-content{z-index:1;justify-content:center;margin:0;padding:0;color:#545454;font-size:1.125em;font-weight:400;line-height:normal;text-align:center;word-wrap:break-word}.swal2-checkbox,.swal2-file,.swal2-input,.swal2-radio,.swal2-select,.swal2-textarea{margin:1em auto}.swal2-file,.swal2-input,.swal2-textarea{box-sizing:border-box;width:100%;transition:border-color .3s,box-shadow .3s;border:1px solid #d9d9d9;border-radius:.1875em;background:inherit;box-shadow:inset 0 1px 1px rgba(0,0,0,.06);color:inherit;font-size:1.125em}.swal2-file.swal2-inputerror,.swal2-input.swal2-inputerror,.swal2-textarea.swal2-inputerror{border-color:#f27474!important;box-shadow:0 0 2px #f27474!important}.swal2-file:focus,.swal2-input:focus,.swal2-textarea:focus{border:1px solid #b4dbed;outline:0;box-shadow:0 0 3px #c4e6f5}.swal2-file:-ms-input-placeholder,.swal2-file::-ms-input-placeholder,.swal2-input:-ms-input-placeholder,.swal2-input::-ms-input-placeholder,.swal2-textarea:-ms-input-placeholder,.swal2-textarea::-ms-input-placeholder{color:#ccc}.swal2-file::placeholder,.swal2-input::placeholder,.swal2-textarea::placeholder{color:#ccc}.swal2-range{margin:1em auto;background:#fff}.swal2-range input{width:80%}.swal2-range output{width:20%;color:inherit;font-weight:600;text-align:center}.swal2-range input,.swal2-range output{height:2.625em;padding:0;font-size:1.125em;line-height:2.625em}.swal2-input{height:2.625em;padding:0 .75em}.swal2-input[type=number]{max-width:10em}.swal2-file{background:inherit;font-size:1.125em}.swal2-textarea{height:6.75em;padding:.75em}.swal2-select{min-width:50%;max-width:100%;padding:.375em .625em;background:inherit;color:inherit;font-size:1.125em}.swal2-checkbox,.swal2-radio{align-items:center;justify-content:center;background:#fff;color:inherit}.swal2-checkbox label,.swal2-radio label{margin:0 .6em;font-size:1.125em}.swal2-checkbox input,.swal2-radio input{margin:0 .4em}.swal2-validation-message{display:none;align-items:center;justify-content:center;padding:.625em;overflow:hidden;background:#f0f0f0;color:#666;font-size:1em;font-weight:300}.swal2-validation-message:before{content:"!";display:inline-block;width:1.5em;min-width:1.5em;height:1.5em;margin:0 .625em;border-radius:50%;background-color:#f27474;color:#fff;font-weight:600;line-height:1.5em;text-align:center}.swal2-icon{position:relative;box-sizing:content-box;justify-content:center;width:5em;height:5em;margin:1.25em auto 1.875em;border:.25em solid transparent;border-radius:50%;font-family:inherit;line-height:5em;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.swal2-icon .swal2-icon-content{display:flex;align-items:center;font-size:3.75em}.swal2-icon.swal2-error{border-color:#f27474;color:#f27474}.swal2-icon.swal2-error .swal2-x-mark{position:relative;flex-grow:1}.swal2-icon.swal2-error [class^=swal2-x-mark-line]{display:block;position:absolute;top:2.3125em;width:2.9375em;height:.3125em;border-radius:.125em;background-color:#f27474}.swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left]{left:1.0625em;transform:rotate(45deg)}.swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right]{right:1em;transform:rotate(-45deg)}.swal2-icon.swal2-error.swal2-icon-show{animation:k .5s}.swal2-icon.swal2-error.swal2-icon-show .swal2-x-mark{animation:j .5s}.swal2-icon.swal2-warning{border-color:#facea8;color:#f8bb86}.swal2-icon.swal2-info{border-color:#9de0f6;color:#3fc3ee}.swal2-icon.swal2-question{border-color:#c9dae1;color:#87adbd}.swal2-icon.swal2-success{border-color:#a5dc86;color:#a5dc86}.swal2-icon.swal2-success [class^=swal2-success-circular-line]{position:absolute;width:3.75em;height:7.5em;transform:rotate(45deg);border-radius:50%}.swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=left]{top:-.4375em;left:-2.0635em;transform:rotate(-45deg);transform-origin:3.75em 3.75em;border-radius:7.5em 0 0 7.5em}.swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=right]{top:-.6875em;left:1.875em;transform:rotate(-45deg);transform-origin:0 3.75em;border-radius:0 7.5em 7.5em 0}.swal2-icon.swal2-success .swal2-success-ring{position:absolute;z-index:2;top:-.25em;left:-.25em;box-sizing:content-box;width:100%;height:100%;border:.25em solid hsla(98,55%,69%,.3);border-radius:50%}.swal2-icon.swal2-success .swal2-success-fix{position:absolute;z-index:1;top:.5em;left:1.625em;width:.4375em;height:5.625em;transform:rotate(-45deg)}.swal2-icon.swal2-success [class^=swal2-success-line]{display:block;position:absolute;z-index:2;height:.3125em;border-radius:.125em;background-color:#a5dc86}.swal2-icon.swal2-success [class^=swal2-success-line][class$=tip]{top:2.875em;left:.8125em;width:1.5625em;transform:rotate(45deg)}.swal2-icon.swal2-success [class^=swal2-success-line][class$=long]{top:2.375em;right:.5em;width:2.9375em;transform:rotate(-45deg)}.swal2-icon.swal2-success.swal2-icon-show .swal2-success-line-tip{animation:g .75s}.swal2-icon.swal2-success.swal2-icon-show .swal2-success-line-long{animation:h .75s}.swal2-icon.swal2-success.swal2-icon-show .swal2-success-circular-line-right{animation:i 4.25s ease-in}.swal2-progress-steps{align-items:center;margin:0 0 1.25em;padding:0;background:inherit;font-weight:600}.swal2-progress-steps li{display:inline-block;position:relative}.swal2-progress-steps .swal2-progress-step{z-index:4;width:2em;height:2em;border-radius:2em;background:#3085d6;color:#fff;line-height:2em;text-align:center}.swal2-progress-steps .swal2-progress-step.swal2-active-progress-step{background:#3085d6}.swal2-progress-steps .swal2-progress-step.swal2-active-progress-step~.swal2-progress-step{background:#add8e6;color:#fff}.swal2-progress-steps .swal2-progress-step.swal2-active-progress-step~.swal2-progress-step-line{background:#add8e6}.swal2-progress-steps .swal2-progress-step-line{z-index:3;width:2.5em;height:.4em;margin:0 -1px;background:#3085d6}[class^=swal2]{-webkit-tap-highlight-color:transparent}.swal2-show{animation:e .3s}.swal2-hide{animation:f .15s forwards}.swal2-noanimation{transition:none}.swal2-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}.swal2-rtl .swal2-close{right:auto;left:0}.swal2-rtl .swal2-timer-progress-bar{right:0;left:auto}@supports (-ms-accelerator:true){.swal2-range input{width:100%!important}.swal2-range output{display:none}}@media (-ms-high-contrast:active),(-ms-high-contrast:none){.swal2-range input{width:100%!important}.swal2-range output{display:none}}@-moz-document url-prefix(){.swal2-close:focus{outline:2px solid rgba(50,100,150,.4)}}@keyframes a{0%{transform:translateY(-.625em) rotate(2deg)}33%{transform:translateY(0) rotate(-2deg)}66%{transform:translateY(.3125em) rotate(2deg)}to{transform:translateY(0) rotate(0)}}@keyframes b{to{transform:rotate(1deg);opacity:0}}@keyframes c{0%{top:.5625em;left:.0625em;width:0}54%{top:.125em;left:.125em;width:0}70%{top:.625em;left:-.25em;width:1.625em}84%{top:1.0625em;left:.75em;width:.5em}to{top:1.125em;left:.1875em;width:.75em}}@keyframes d{0%{top:1.625em;right:1.375em;width:0}65%{top:1.25em;right:.9375em;width:0}84%{top:.9375em;right:0;width:1.125em}to{top:.9375em;right:.1875em;width:1.375em}}@keyframes e{0%{transform:scale(.7)}45%{transform:scale(1.05)}80%{transform:scale(.95)}to{transform:scale(1)}}@keyframes f{0%{transform:scale(1);opacity:1}to{transform:scale(.5);opacity:0}}@keyframes g{0%{top:1.1875em;left:.0625em;width:0}54%{top:1.0625em;left:.125em;width:0}70%{top:2.1875em;left:-.375em;width:3.125em}84%{top:3em;left:1.3125em;width:1.0625em}to{top:2.8125em;left:.8125em;width:1.5625em}}@keyframes h{0%{top:3.375em;right:2.875em;width:0}65%{top:3.375em;right:2.875em;width:0}84%{top:2.1875em;right:0;width:3.4375em}to{top:2.375em;right:.5em;width:2.9375em}}@keyframes i{0%{transform:rotate(-45deg)}5%{transform:rotate(-45deg)}12%{transform:rotate(-405deg)}to{transform:rotate(-405deg)}}@keyframes j{0%{margin-top:1.625em;transform:scale(.4);opacity:0}50%{margin-top:1.625em;transform:scale(.4);opacity:0}80%{margin-top:-.375em;transform:scale(1.15)}to{margin-top:0;transform:scale(1);opacity:1}}@keyframes k{0%{transform:rotateX(100deg);opacity:0}to{transform:rotateX(0);opacity:1}}@keyframes l{0%{transform:rotate(0)}to{transform:rotate(1turn)}}body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown){overflow:hidden}body.swal2-height-auto{height:auto!important}body.swal2-no-backdrop .swal2-container{top:auto;right:auto;bottom:auto;left:auto;max-width:calc(100% - .625em * 2);background-color:transparent!important}body.swal2-no-backdrop .swal2-container>.swal2-modal{box-shadow:0 0 10px rgba(0,0,0,.4)}body.swal2-no-backdrop .swal2-container.swal2-top{top:0;left:50%;transform:translateX(-50%)}body.swal2-no-backdrop .swal2-container.swal2-top-left,body.swal2-no-backdrop .swal2-container.swal2-top-start{top:0;left:0}body.swal2-no-backdrop .swal2-container.swal2-top-end,body.swal2-no-backdrop .swal2-container.swal2-top-right{top:0;right:0}body.swal2-no-backdrop .swal2-container.swal2-center{top:50%;left:50%;transform:translate(-50%,-50%)}body.swal2-no-backdrop .swal2-container.swal2-center-left,body.swal2-no-backdrop .swal2-container.swal2-center-start{top:50%;left:0;transform:translateY(-50%)}body.swal2-no-backdrop .swal2-container.swal2-center-end,body.swal2-no-backdrop .swal2-container.swal2-center-right{top:50%;right:0;transform:translateY(-50%)}body.swal2-no-backdrop .swal2-container.swal2-bottom{bottom:0;left:50%;transform:translateX(-50%)}body.swal2-no-backdrop .swal2-container.swal2-bottom-left,body.swal2-no-backdrop .swal2-container.swal2-bottom-start{bottom:0;left:0}body.swal2-no-backdrop .swal2-container.swal2-bottom-end,body.swal2-no-backdrop .swal2-container.swal2-bottom-right{right:0;bottom:0}@media print{body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown){overflow-y:scroll!important}body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown)>[aria-hidden=true]{display:none}body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) .swal2-container{position:static!important}}body.swal2-toast-shown .swal2-container{background-color:transparent}body.swal2-toast-shown .swal2-container.swal2-top{top:0;right:auto;bottom:auto;left:50%;transform:translateX(-50%)}body.swal2-toast-shown .swal2-container.swal2-top-end,body.swal2-toast-shown .swal2-container.swal2-top-right{top:0;right:0;bottom:auto;left:auto}body.swal2-toast-shown .swal2-container.swal2-top-left,body.swal2-toast-shown .swal2-container.swal2-top-start{top:0;right:auto;bottom:auto;left:0}body.swal2-toast-shown .swal2-container.swal2-center-left,body.swal2-toast-shown .swal2-container.swal2-center-start{top:50%;right:auto;bottom:auto;left:0;transform:translateY(-50%)}body.swal2-toast-shown .swal2-container.swal2-center{top:50%;right:auto;bottom:auto;left:50%;transform:translate(-50%,-50%)}body.swal2-toast-shown .swal2-container.swal2-center-end,body.swal2-toast-shown .swal2-container.swal2-center-right{top:50%;right:0;bottom:auto;left:auto;transform:translateY(-50%)}body.swal2-toast-shown .swal2-container.swal2-bottom-left,body.swal2-toast-shown .swal2-container.swal2-bottom-start{top:auto;right:auto;bottom:0;left:0}body.swal2-toast-shown .swal2-container.swal2-bottom{top:auto;right:auto;bottom:0;left:50%;transform:translateX(-50%)}body.swal2-toast-shown .swal2-container.swal2-bottom-end,body.swal2-toast-shown .swal2-container.swal2-bottom-right{top:auto;right:0;bottom:0;left:auto}body.swal2-toast-column .swal2-toast{flex-direction:column;align-items:stretch}body.swal2-toast-column .swal2-toast .swal2-actions{flex:1;align-self:stretch;height:2.2em;margin-top:.3125em}body.swal2-toast-column .swal2-toast .swal2-loading{justify-content:center}body.swal2-toast-column .swal2-toast .swal2-input{height:2em;margin:.3125em auto;font-size:1em}body.swal2-toast-column .swal2-toast .swal2-validation-message{font-size:1em}
+/*# sourceMappingURL=vendors.min.css.map */
diff --git a/dasena-web/public/assets/admin/vendors/css/vendors.min.css.map b/dasena-web/public/assets/admin/vendors/css/vendors.min.css.map
new file mode 100644
index 0000000..6833d37
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/css/vendors.min.css.map
@@ -0,0 +1 @@
+{"version":3,"sources":["animate.min.css","bsicon.min.css","feather.min.css","fontawesome.min.css","flagicon.min.css","sweetalert2.min.css"],"names":[],"mappings":"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BAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,UACC,iBAAkB,gCAEnB,cACC,iBAAkB,gCAEnB,UACC,iBAAkB,gCAEnB,cACC,iBAAkB,gCAEnB,OACC,iBAAkB,6BAEnB,WACC,iBAAkB,6BAEnB,WACC,iBAAkB,iCAEnB,eACC,iBAAkB,iCAEnB,WACC,iBAAkB,iCAEnB,eACC,iBAAkB,iCAEnB,WACC,iBAAkB,iCAEnB,eACC,iBAAkB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","file":"vendors.min.css","sourcesContent":[]}
\ No newline at end of file
diff --git a/dasena-web/public/assets/admin/vendors/fonts/bootstrap-icons.woff b/dasena-web/public/assets/admin/vendors/fonts/bootstrap-icons.woff
new file mode 100644
index 0000000..cf0a6d0
Binary files /dev/null and b/dasena-web/public/assets/admin/vendors/fonts/bootstrap-icons.woff differ
diff --git a/dasena-web/public/assets/admin/vendors/fonts/bootstrap-icons.woff2 b/dasena-web/public/assets/admin/vendors/fonts/bootstrap-icons.woff2
new file mode 100644
index 0000000..ecc8f4c
Binary files /dev/null and b/dasena-web/public/assets/admin/vendors/fonts/bootstrap-icons.woff2 differ
diff --git a/dasena-web/public/assets/admin/vendors/fonts/fa-brands-400.ttf b/dasena-web/public/assets/admin/vendors/fonts/fa-brands-400.ttf
new file mode 100644
index 0000000..24ca8b1
Binary files /dev/null and b/dasena-web/public/assets/admin/vendors/fonts/fa-brands-400.ttf differ
diff --git a/dasena-web/public/assets/admin/vendors/fonts/fa-brands-400.woff2 b/dasena-web/public/assets/admin/vendors/fonts/fa-brands-400.woff2
new file mode 100644
index 0000000..e67e5cd
Binary files /dev/null and b/dasena-web/public/assets/admin/vendors/fonts/fa-brands-400.woff2 differ
diff --git a/dasena-web/public/assets/admin/vendors/fonts/fa-regular-400.ttf b/dasena-web/public/assets/admin/vendors/fonts/fa-regular-400.ttf
new file mode 100644
index 0000000..c5ac009
Binary files /dev/null and b/dasena-web/public/assets/admin/vendors/fonts/fa-regular-400.ttf differ
diff --git a/dasena-web/public/assets/admin/vendors/fonts/fa-regular-400.woff2 b/dasena-web/public/assets/admin/vendors/fonts/fa-regular-400.woff2
new file mode 100644
index 0000000..7dca1d9
Binary files /dev/null and b/dasena-web/public/assets/admin/vendors/fonts/fa-regular-400.woff2 differ
diff --git a/dasena-web/public/assets/admin/vendors/fonts/fa-solid-900.ttf b/dasena-web/public/assets/admin/vendors/fonts/fa-solid-900.ttf
new file mode 100644
index 0000000..43ba1cc
Binary files /dev/null and b/dasena-web/public/assets/admin/vendors/fonts/fa-solid-900.ttf differ
diff --git a/dasena-web/public/assets/admin/vendors/fonts/fa-solid-900.woff2 b/dasena-web/public/assets/admin/vendors/fonts/fa-solid-900.woff2
new file mode 100644
index 0000000..4a7f966
Binary files /dev/null and b/dasena-web/public/assets/admin/vendors/fonts/fa-solid-900.woff2 differ
diff --git a/dasena-web/public/assets/admin/vendors/fonts/fa-v4compatibility.ttf b/dasena-web/public/assets/admin/vendors/fonts/fa-v4compatibility.ttf
new file mode 100644
index 0000000..243bc25
Binary files /dev/null and b/dasena-web/public/assets/admin/vendors/fonts/fa-v4compatibility.ttf differ
diff --git a/dasena-web/public/assets/admin/vendors/fonts/fa-v4compatibility.woff2 b/dasena-web/public/assets/admin/vendors/fonts/fa-v4compatibility.woff2
new file mode 100644
index 0000000..e18a16d
Binary files /dev/null and b/dasena-web/public/assets/admin/vendors/fonts/fa-v4compatibility.woff2 differ
diff --git a/dasena-web/public/assets/admin/vendors/fonts/feather.eot b/dasena-web/public/assets/admin/vendors/fonts/feather.eot
new file mode 100644
index 0000000..4c5e959
Binary files /dev/null and b/dasena-web/public/assets/admin/vendors/fonts/feather.eot differ
diff --git a/dasena-web/public/assets/admin/vendors/fonts/feather.ttf b/dasena-web/public/assets/admin/vendors/fonts/feather.ttf
new file mode 100644
index 0000000..e55b3e9
Binary files /dev/null and b/dasena-web/public/assets/admin/vendors/fonts/feather.ttf differ
diff --git a/dasena-web/public/assets/admin/vendors/fonts/feather.woff b/dasena-web/public/assets/admin/vendors/fonts/feather.woff
new file mode 100644
index 0000000..99046fe
Binary files /dev/null and b/dasena-web/public/assets/admin/vendors/fonts/feather.woff differ
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/ac.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/ac.svg
new file mode 100644
index 0000000..3840caf
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/ac.svg
@@ -0,0 +1,76 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/ad.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/ad.svg
new file mode 100644
index 0000000..f1d7fde
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/ad.svg
@@ -0,0 +1,148 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/ae.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/ae.svg
new file mode 100644
index 0000000..058c16e
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/ae.svg
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/af.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/af.svg
new file mode 100644
index 0000000..04d064a
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/af.svg
@@ -0,0 +1,81 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/ag.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/ag.svg
new file mode 100644
index 0000000..c4c9ee2
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/ag.svg
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/ai.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/ai.svg
new file mode 100644
index 0000000..a82f26e
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/ai.svg
@@ -0,0 +1,758 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/al.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/al.svg
new file mode 100644
index 0000000..d4c6d5d
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/al.svg
@@ -0,0 +1,5 @@
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/am.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/am.svg
new file mode 100644
index 0000000..a188adf
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/am.svg
@@ -0,0 +1,5 @@
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/ao.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/ao.svg
new file mode 100644
index 0000000..ba77036
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/ao.svg
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/aq.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/aq.svg
new file mode 100644
index 0000000..a4d9a20
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/aq.svg
@@ -0,0 +1,5 @@
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/ar.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/ar.svg
new file mode 100644
index 0000000..1db3825
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/ar.svg
@@ -0,0 +1,32 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/as.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/as.svg
new file mode 100644
index 0000000..3c9c8b5
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/as.svg
@@ -0,0 +1,73 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/at.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/at.svg
new file mode 100644
index 0000000..4736319
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/at.svg
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/au.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/au.svg
new file mode 100644
index 0000000..d0465a2
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/au.svg
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/aw.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/aw.svg
new file mode 100644
index 0000000..6445b66
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/aw.svg
@@ -0,0 +1,186 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/ax.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/ax.svg
new file mode 100644
index 0000000..43cd591
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/ax.svg
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/az.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/az.svg
new file mode 100644
index 0000000..eedd9e6
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/az.svg
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/ba.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/ba.svg
new file mode 100644
index 0000000..28184da
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/ba.svg
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/bb.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/bb.svg
new file mode 100644
index 0000000..026bb0a
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/bb.svg
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/bd.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/bd.svg
new file mode 100644
index 0000000..86fcfba
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/bd.svg
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/be.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/be.svg
new file mode 100644
index 0000000..31b9723
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/be.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/bf.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/bf.svg
new file mode 100644
index 0000000..a5078df
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/bf.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/bg.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/bg.svg
new file mode 100644
index 0000000..16fe7e0
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/bg.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/bh.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/bh.svg
new file mode 100644
index 0000000..2d131aa
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/bh.svg
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/bi.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/bi.svg
new file mode 100644
index 0000000..db5df38
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/bi.svg
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/bj.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/bj.svg
new file mode 100644
index 0000000..34c30b1
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/bj.svg
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/bl.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/bl.svg
new file mode 100644
index 0000000..65550d9
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/bl.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/bm.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/bm.svg
new file mode 100644
index 0000000..0dca49b
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/bm.svg
@@ -0,0 +1,97 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/bn.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/bn.svg
new file mode 100644
index 0000000..afad727
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/bn.svg
@@ -0,0 +1,36 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/bo.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/bo.svg
new file mode 100644
index 0000000..5f1311a
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/bo.svg
@@ -0,0 +1,678 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/bq.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/bq.svg
new file mode 100644
index 0000000..4b9168e
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/bq.svg
@@ -0,0 +1,5 @@
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/br.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/br.svg
new file mode 100644
index 0000000..6c854ac
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/br.svg
@@ -0,0 +1,45 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/bs.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/bs.svg
new file mode 100644
index 0000000..6914138
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/bs.svg
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/bt.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/bt.svg
new file mode 100644
index 0000000..0a9dfeb
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/bt.svg
@@ -0,0 +1,89 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/bv.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/bv.svg
new file mode 100644
index 0000000..36fefad
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/bv.svg
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/bw.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/bw.svg
new file mode 100644
index 0000000..d276018
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/bw.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/by.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/by.svg
new file mode 100644
index 0000000..9fd7121
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/by.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/bz.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/bz.svg
new file mode 100644
index 0000000..48bd0b0
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/bz.svg
@@ -0,0 +1,145 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/ca.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/ca.svg
new file mode 100644
index 0000000..84cde34
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/ca.svg
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/cc.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/cc.svg
new file mode 100644
index 0000000..d107bdc
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/cc.svg
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/cd.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/cd.svg
new file mode 100644
index 0000000..4c804d8
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/cd.svg
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/cefta.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/cefta.svg
new file mode 100644
index 0000000..1fcc0aa
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/cefta.svg
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/cf.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/cf.svg
new file mode 100644
index 0000000..667fc93
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/cf.svg
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/cg.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/cg.svg
new file mode 100644
index 0000000..df4e316
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/cg.svg
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/ch.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/ch.svg
new file mode 100644
index 0000000..52578bf
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/ch.svg
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/ci.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/ci.svg
new file mode 100644
index 0000000..2abf641
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/ci.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/ck.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/ck.svg
new file mode 100644
index 0000000..43a1057
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/ck.svg
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/cl.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/cl.svg
new file mode 100644
index 0000000..7cc494d
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/cl.svg
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/cm.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/cm.svg
new file mode 100644
index 0000000..9233b92
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/cm.svg
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/cn.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/cn.svg
new file mode 100644
index 0000000..7f27dae
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/cn.svg
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/co.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/co.svg
new file mode 100644
index 0000000..5804bfe
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/co.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/cp.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/cp.svg
new file mode 100644
index 0000000..c3157fb
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/cp.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/cr.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/cr.svg
new file mode 100644
index 0000000..4e7889e
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/cr.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/cu.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/cu.svg
new file mode 100644
index 0000000..e059e78
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/cu.svg
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/cv.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/cv.svg
new file mode 100644
index 0000000..cb8b597
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/cv.svg
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/cw.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/cw.svg
new file mode 100644
index 0000000..88fddec
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/cw.svg
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/cx.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/cx.svg
new file mode 100644
index 0000000..44d3757
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/cx.svg
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/cy.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/cy.svg
new file mode 100644
index 0000000..58d87e7
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/cy.svg
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/cz.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/cz.svg
new file mode 100644
index 0000000..dcd0a6b
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/cz.svg
@@ -0,0 +1,5 @@
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/de.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/de.svg
new file mode 100644
index 0000000..ccb5ff1
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/de.svg
@@ -0,0 +1,5 @@
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/dg.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/dg.svg
new file mode 100644
index 0000000..fd238df
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/dg.svg
@@ -0,0 +1,129 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/dj.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/dj.svg
new file mode 100644
index 0000000..9530b06
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/dj.svg
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/dk.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/dk.svg
new file mode 100644
index 0000000..5aaaa19
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/dk.svg
@@ -0,0 +1,5 @@
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/dm.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/dm.svg
new file mode 100644
index 0000000..0bcf5b2
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/dm.svg
@@ -0,0 +1,152 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/do.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/do.svg
new file mode 100644
index 0000000..f5906d0
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/do.svg
@@ -0,0 +1,6745 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/dz.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/dz.svg
new file mode 100644
index 0000000..8abcd25
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/dz.svg
@@ -0,0 +1,5 @@
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/ea.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/ea.svg
new file mode 100644
index 0000000..bab6a69
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/ea.svg
@@ -0,0 +1,547 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/ec.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/ec.svg
new file mode 100644
index 0000000..06495b9
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/ec.svg
@@ -0,0 +1,138 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/ee.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/ee.svg
new file mode 100644
index 0000000..a921ce4
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/ee.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/eg.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/eg.svg
new file mode 100644
index 0000000..900abc6
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/eg.svg
@@ -0,0 +1,38 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/eh.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/eh.svg
new file mode 100644
index 0000000..0f9d3c2
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/eh.svg
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/er.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/er.svg
new file mode 100644
index 0000000..8f04e39
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/er.svg
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/es-ct.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/es-ct.svg
new file mode 100644
index 0000000..a06a2e3
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/es-ct.svg
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/es-ga.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/es-ga.svg
new file mode 100644
index 0000000..bb1abbb
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/es-ga.svg
@@ -0,0 +1,187 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/es.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/es.svg
new file mode 100644
index 0000000..f9c9b4b
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/es.svg
@@ -0,0 +1,547 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/et.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/et.svg
new file mode 100644
index 0000000..0c62956
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/et.svg
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/eu.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/eu.svg
new file mode 100644
index 0000000..f992981
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/eu.svg
@@ -0,0 +1,28 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/fi.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/fi.svg
new file mode 100644
index 0000000..aba2ef3
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/fi.svg
@@ -0,0 +1,5 @@
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/fj.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/fj.svg
new file mode 100644
index 0000000..e2ca5b4
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/fj.svg
@@ -0,0 +1,123 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/fk.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/fk.svg
new file mode 100644
index 0000000..1156f36
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/fk.svg
@@ -0,0 +1,89 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/fm.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/fm.svg
new file mode 100644
index 0000000..4077f47
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/fm.svg
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/fo.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/fo.svg
new file mode 100644
index 0000000..2a2b065
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/fo.svg
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/fr.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/fr.svg
new file mode 100644
index 0000000..dfa34e8
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/fr.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/ga.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/ga.svg
new file mode 100644
index 0000000..113a5b5
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/ga.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/gb-eng.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/gb-eng.svg
new file mode 100644
index 0000000..ee48fed
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/gb-eng.svg
@@ -0,0 +1,5 @@
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/gb-nir.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/gb-nir.svg
new file mode 100644
index 0000000..c4d2a85
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/gb-nir.svg
@@ -0,0 +1,131 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/gb-sct.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/gb-sct.svg
new file mode 100644
index 0000000..44d38cc
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/gb-sct.svg
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/gb-wls.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/gb-wls.svg
new file mode 100644
index 0000000..3126882
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/gb-wls.svg
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/gb.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/gb.svg
new file mode 100644
index 0000000..b261273
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/gb.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/gd.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/gd.svg
new file mode 100644
index 0000000..97d87f4
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/gd.svg
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/ge.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/ge.svg
new file mode 100644
index 0000000..f0af103
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/ge.svg
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/gf.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/gf.svg
new file mode 100644
index 0000000..81b3e44
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/gf.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/gg.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/gg.svg
new file mode 100644
index 0000000..23aca9e
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/gg.svg
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/gh.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/gh.svg
new file mode 100644
index 0000000..84f4bab
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/gh.svg
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/gi.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/gi.svg
new file mode 100644
index 0000000..ded225d
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/gi.svg
@@ -0,0 +1,32 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/gl.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/gl.svg
new file mode 100644
index 0000000..eaa817b
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/gl.svg
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/gm.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/gm.svg
new file mode 100644
index 0000000..2a8f724
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/gm.svg
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/gn.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/gn.svg
new file mode 100644
index 0000000..ae81f9d
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/gn.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/gp.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/gp.svg
new file mode 100644
index 0000000..143250f
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/gp.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/gq.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/gq.svg
new file mode 100644
index 0000000..3fb086e
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/gq.svg
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/gr.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/gr.svg
new file mode 100644
index 0000000..a268830
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/gr.svg
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/gs.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/gs.svg
new file mode 100644
index 0000000..791bf01
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/gs.svg
@@ -0,0 +1,132 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/gt.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/gt.svg
new file mode 100644
index 0000000..790f9a1
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/gt.svg
@@ -0,0 +1,220 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/gu.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/gu.svg
new file mode 100644
index 0000000..316edc8
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/gu.svg
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+
+
+ G
+ U
+ A
+ M
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/gw.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/gw.svg
new file mode 100644
index 0000000..cae163d
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/gw.svg
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/gy.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/gy.svg
new file mode 100644
index 0000000..8188c44
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/gy.svg
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/hk.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/hk.svg
new file mode 100644
index 0000000..e55b2fd
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/hk.svg
@@ -0,0 +1,30 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/hm.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/hm.svg
new file mode 100644
index 0000000..51e236a
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/hm.svg
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/hn.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/hn.svg
new file mode 100644
index 0000000..432ead6
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/hn.svg
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/hr.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/hr.svg
new file mode 100644
index 0000000..8e98781
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/hr.svg
@@ -0,0 +1,56 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/ht.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/ht.svg
new file mode 100644
index 0000000..965dd03
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/ht.svg
@@ -0,0 +1,116 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/hu.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/hu.svg
new file mode 100644
index 0000000..088242d
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/hu.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/ic.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/ic.svg
new file mode 100644
index 0000000..096603d
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/ic.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/id.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/id.svg
new file mode 100644
index 0000000..df08018
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/id.svg
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/ie.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/ie.svg
new file mode 100644
index 0000000..e13de22
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/ie.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/il.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/il.svg
new file mode 100644
index 0000000..9c19148
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/il.svg
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/im.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/im.svg
new file mode 100644
index 0000000..af18aa4
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/im.svg
@@ -0,0 +1,36 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/in.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/in.svg
new file mode 100644
index 0000000..7b79eeb
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/in.svg
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/io.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/io.svg
new file mode 100644
index 0000000..6eadd53
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/io.svg
@@ -0,0 +1,129 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/iq.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/iq.svg
new file mode 100644
index 0000000..f009ae2
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/iq.svg
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/ir.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/ir.svg
new file mode 100644
index 0000000..45f6eec
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/ir.svg
@@ -0,0 +1,219 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/is.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/is.svg
new file mode 100644
index 0000000..7b79052
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/is.svg
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/it.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/it.svg
new file mode 100644
index 0000000..b9596d0
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/it.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/je.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/je.svg
new file mode 100644
index 0000000..de73a00
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/je.svg
@@ -0,0 +1,44 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/jm.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/jm.svg
new file mode 100644
index 0000000..e2c0e54
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/jm.svg
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/jo.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/jo.svg
new file mode 100644
index 0000000..43888cb
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/jo.svg
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/jp.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/jp.svg
new file mode 100644
index 0000000..c3aeaa6
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/jp.svg
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/ke.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/ke.svg
new file mode 100644
index 0000000..ad76b35
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/ke.svg
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/kg.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/kg.svg
new file mode 100644
index 0000000..ab37474
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/kg.svg
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/kh.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/kh.svg
new file mode 100644
index 0000000..adda387
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/kh.svg
@@ -0,0 +1,61 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/ki.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/ki.svg
new file mode 100644
index 0000000..58586c0
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/ki.svg
@@ -0,0 +1,36 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/km.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/km.svg
new file mode 100644
index 0000000..3831b1d
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/km.svg
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/kn.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/kn.svg
new file mode 100644
index 0000000..24dec7e
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/kn.svg
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/kp.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/kp.svg
new file mode 100644
index 0000000..16f7ac2
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/kp.svg
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/kr.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/kr.svg
new file mode 100644
index 0000000..ca75181
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/kr.svg
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/kw.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/kw.svg
new file mode 100644
index 0000000..f9d34d0
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/kw.svg
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/ky.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/ky.svg
new file mode 100644
index 0000000..4c99478
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/ky.svg
@@ -0,0 +1,109 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/kz.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/kz.svg
new file mode 100644
index 0000000..364fbc1
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/kz.svg
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/la.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/la.svg
new file mode 100644
index 0000000..7fcf263
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/la.svg
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/lb.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/lb.svg
new file mode 100644
index 0000000..6cbf329
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/lb.svg
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/lc.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/lc.svg
new file mode 100644
index 0000000..d39c7f6
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/lc.svg
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/li.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/li.svg
new file mode 100644
index 0000000..260c8f6
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/li.svg
@@ -0,0 +1,43 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/lk.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/lk.svg
new file mode 100644
index 0000000..3fc4f4d
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/lk.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/lr.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/lr.svg
new file mode 100644
index 0000000..03ebae5
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/lr.svg
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/ls.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/ls.svg
new file mode 100644
index 0000000..aa8810b
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/ls.svg
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/lt.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/lt.svg
new file mode 100644
index 0000000..52ada94
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/lt.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/lu.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/lu.svg
new file mode 100644
index 0000000..5c0d6da
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/lu.svg
@@ -0,0 +1,5 @@
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/lv.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/lv.svg
new file mode 100644
index 0000000..5af883c
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/lv.svg
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/ly.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/ly.svg
new file mode 100644
index 0000000..5ff903a
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/ly.svg
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/ma.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/ma.svg
new file mode 100644
index 0000000..8041667
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/ma.svg
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/mc.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/mc.svg
new file mode 100644
index 0000000..04173a4
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/mc.svg
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/md.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/md.svg
new file mode 100644
index 0000000..8720921
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/md.svg
@@ -0,0 +1,71 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/me.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/me.svg
new file mode 100644
index 0000000..fbd8b86
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/me.svg
@@ -0,0 +1,118 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/mf.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/mf.svg
new file mode 100644
index 0000000..4722c61
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/mf.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/mg.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/mg.svg
new file mode 100644
index 0000000..4f901ca
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/mg.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/mh.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/mh.svg
new file mode 100644
index 0000000..8ff2256
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/mh.svg
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/mk.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/mk.svg
new file mode 100644
index 0000000..0ee923a
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/mk.svg
@@ -0,0 +1,5 @@
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/ml.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/ml.svg
new file mode 100644
index 0000000..665d6b2
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/ml.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/mm.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/mm.svg
new file mode 100644
index 0000000..9b235f3
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/mm.svg
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/mn.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/mn.svg
new file mode 100644
index 0000000..c9d6104
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/mn.svg
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/mo.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/mo.svg
new file mode 100644
index 0000000..f79bf12
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/mo.svg
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/mp.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/mp.svg
new file mode 100644
index 0000000..6fef8fd
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/mp.svg
@@ -0,0 +1,86 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/mq.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/mq.svg
new file mode 100644
index 0000000..3a1e55b
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/mq.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/mr.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/mr.svg
new file mode 100644
index 0000000..a98ec2a
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/mr.svg
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/ms.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/ms.svg
new file mode 100644
index 0000000..ba504db
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/ms.svg
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/mt.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/mt.svg
new file mode 100644
index 0000000..a9f58e1
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/mt.svg
@@ -0,0 +1,50 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/mu.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/mu.svg
new file mode 100644
index 0000000..2afe1d3
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/mu.svg
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/mv.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/mv.svg
new file mode 100644
index 0000000..c9a6c5b
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/mv.svg
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/mw.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/mw.svg
new file mode 100644
index 0000000..5de0311
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/mw.svg
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/mx.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/mx.svg
new file mode 100644
index 0000000..4b0c5d4
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/mx.svg
@@ -0,0 +1,378 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/my.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/my.svg
new file mode 100644
index 0000000..79ff5cc
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/my.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/mz.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/mz.svg
new file mode 100644
index 0000000..cceb0de
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/mz.svg
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/na.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/na.svg
new file mode 100644
index 0000000..5cb08a3
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/na.svg
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/nc.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/nc.svg
new file mode 100644
index 0000000..7063a99
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/nc.svg
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/ne.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/ne.svg
new file mode 100644
index 0000000..a96b027
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/ne.svg
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/nf.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/nf.svg
new file mode 100644
index 0000000..e47b4cd
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/nf.svg
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/ng.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/ng.svg
new file mode 100644
index 0000000..62813e8
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/ng.svg
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/ni.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/ni.svg
new file mode 100644
index 0000000..265a71c
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/ni.svg
@@ -0,0 +1,129 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/nl.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/nl.svg
new file mode 100644
index 0000000..eb0e360
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/nl.svg
@@ -0,0 +1,5 @@
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/no.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/no.svg
new file mode 100644
index 0000000..939920d
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/no.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/np.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/np.svg
new file mode 100644
index 0000000..2819b65
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/np.svg
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/nr.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/nr.svg
new file mode 100644
index 0000000..d506071
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/nr.svg
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/nu.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/nu.svg
new file mode 100644
index 0000000..ce31672
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/nu.svg
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/nz.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/nz.svg
new file mode 100644
index 0000000..e61ed29
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/nz.svg
@@ -0,0 +1,36 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/om.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/om.svg
new file mode 100644
index 0000000..ff624ae
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/om.svg
@@ -0,0 +1,115 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/pa.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/pa.svg
new file mode 100644
index 0000000..2c53cdd
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/pa.svg
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/pe.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/pe.svg
new file mode 100644
index 0000000..bbb8f78
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/pe.svg
@@ -0,0 +1,244 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/pf.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/pf.svg
new file mode 100644
index 0000000..2aff155
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/pf.svg
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/pg.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/pg.svg
new file mode 100644
index 0000000..63dff19
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/pg.svg
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/ph.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/ph.svg
new file mode 100644
index 0000000..fee5308
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/ph.svg
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/pk.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/pk.svg
new file mode 100644
index 0000000..7a12a49
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/pk.svg
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/pl.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/pl.svg
new file mode 100644
index 0000000..8c43577
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/pl.svg
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/pm.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/pm.svg
new file mode 100644
index 0000000..c9fabd9
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/pm.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/pn.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/pn.svg
new file mode 100644
index 0000000..a546e21
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/pn.svg
@@ -0,0 +1,53 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/pr.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/pr.svg
new file mode 100644
index 0000000..29cc0ed
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/pr.svg
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/ps.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/ps.svg
new file mode 100644
index 0000000..a4ab807
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/ps.svg
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/pt.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/pt.svg
new file mode 100644
index 0000000..43cdb97
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/pt.svg
@@ -0,0 +1,57 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/pw.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/pw.svg
new file mode 100644
index 0000000..439a583
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/pw.svg
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/py.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/py.svg
new file mode 100644
index 0000000..86ec718
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/py.svg
@@ -0,0 +1,156 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/qa.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/qa.svg
new file mode 100644
index 0000000..4edb827
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/qa.svg
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/re.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/re.svg
new file mode 100644
index 0000000..41d87d9
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/re.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/ro.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/ro.svg
new file mode 100644
index 0000000..e6cf0f6
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/ro.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/rs.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/rs.svg
new file mode 100644
index 0000000..c87e41b
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/rs.svg
@@ -0,0 +1,296 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/ru.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/ru.svg
new file mode 100644
index 0000000..485c24e
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/ru.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/rw.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/rw.svg
new file mode 100644
index 0000000..55c48e6
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/rw.svg
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/sa.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/sa.svg
new file mode 100644
index 0000000..6ea572d
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/sa.svg
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/sb.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/sb.svg
new file mode 100644
index 0000000..5bea33d
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/sb.svg
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/sc.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/sc.svg
new file mode 100644
index 0000000..2996bac
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/sc.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/sd.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/sd.svg
new file mode 100644
index 0000000..c2de460
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/sd.svg
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/se.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/se.svg
new file mode 100644
index 0000000..bae316d
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/se.svg
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/sg.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/sg.svg
new file mode 100644
index 0000000..5c60b94
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/sg.svg
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/sh.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/sh.svg
new file mode 100644
index 0000000..4285db8
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/sh.svg
@@ -0,0 +1,76 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/si.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/si.svg
new file mode 100644
index 0000000..3beab9b
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/si.svg
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/sj.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/sj.svg
new file mode 100644
index 0000000..ecb9c79
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/sj.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/sk.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/sk.svg
new file mode 100644
index 0000000..3e4ff50
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/sk.svg
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/sl.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/sl.svg
new file mode 100644
index 0000000..7eda1e8
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/sl.svg
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/sm.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/sm.svg
new file mode 100644
index 0000000..fec66d8
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/sm.svg
@@ -0,0 +1,73 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/sn.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/sn.svg
new file mode 100644
index 0000000..ff9cf2e
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/sn.svg
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/so.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/so.svg
new file mode 100644
index 0000000..39cf47b
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/so.svg
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/sr.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/sr.svg
new file mode 100644
index 0000000..0ca3596
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/sr.svg
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/ss.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/ss.svg
new file mode 100644
index 0000000..e950241
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/ss.svg
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/st.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/st.svg
new file mode 100644
index 0000000..6c834b3
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/st.svg
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/sv.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/sv.svg
new file mode 100644
index 0000000..95f1da0
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/sv.svg
@@ -0,0 +1,594 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/sx.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/sx.svg
new file mode 100644
index 0000000..4b6ec4b
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/sx.svg
@@ -0,0 +1,56 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/sy.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/sy.svg
new file mode 100644
index 0000000..b910dd8
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/sy.svg
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/sz.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/sz.svg
new file mode 100644
index 0000000..2f19ee1
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/sz.svg
@@ -0,0 +1,34 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/ta.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/ta.svg
new file mode 100644
index 0000000..ce1542d
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/ta.svg
@@ -0,0 +1,76 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/tc.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/tc.svg
new file mode 100644
index 0000000..c3caf3f
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/tc.svg
@@ -0,0 +1,50 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/td.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/td.svg
new file mode 100644
index 0000000..9bb0ce6
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/td.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/tf.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/tf.svg
new file mode 100644
index 0000000..8d85a2b
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/tf.svg
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/tg.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/tg.svg
new file mode 100644
index 0000000..96dc042
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/tg.svg
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/th.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/th.svg
new file mode 100644
index 0000000..35141d3
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/th.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/tj.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/tj.svg
new file mode 100644
index 0000000..93bb4a8
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/tj.svg
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/tk.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/tk.svg
new file mode 100644
index 0000000..e9f5b42
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/tk.svg
@@ -0,0 +1,5 @@
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/tl.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/tl.svg
new file mode 100644
index 0000000..09b7ed1
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/tl.svg
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/tm.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/tm.svg
new file mode 100644
index 0000000..0ad764a
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/tm.svg
@@ -0,0 +1,202 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/tn.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/tn.svg
new file mode 100644
index 0000000..327e0bb
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/tn.svg
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/to.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/to.svg
new file mode 100644
index 0000000..3f1b600
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/to.svg
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/tr.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/tr.svg
new file mode 100644
index 0000000..9a882a2
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/tr.svg
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/tt.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/tt.svg
new file mode 100644
index 0000000..8413969
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/tt.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/tv.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/tv.svg
new file mode 100644
index 0000000..098b916
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/tv.svg
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/tw.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/tw.svg
new file mode 100644
index 0000000..067edaa
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/tw.svg
@@ -0,0 +1,32 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/tz.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/tz.svg
new file mode 100644
index 0000000..dfb0233
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/tz.svg
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/ua.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/ua.svg
new file mode 100644
index 0000000..7ceb894
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/ua.svg
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/ug.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/ug.svg
new file mode 100644
index 0000000..3acd558
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/ug.svg
@@ -0,0 +1,30 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/um.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/um.svg
new file mode 100644
index 0000000..8fda3e9
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/um.svg
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/un.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/un.svg
new file mode 100644
index 0000000..258cb01
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/un.svg
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/undefined.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/undefined.svg
new file mode 100644
index 0000000..d70df1a
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/undefined.svg
@@ -0,0 +1,31 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/us.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/us.svg
new file mode 100644
index 0000000..cb52ca6
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/us.svg
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/uy.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/uy.svg
new file mode 100644
index 0000000..f4a502f
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/uy.svg
@@ -0,0 +1,28 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/uz.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/uz.svg
new file mode 100644
index 0000000..48d62e3
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/uz.svg
@@ -0,0 +1,30 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/va.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/va.svg
new file mode 100644
index 0000000..5c8e878
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/va.svg
@@ -0,0 +1,479 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/vc.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/vc.svg
new file mode 100644
index 0000000..f347db9
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/vc.svg
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/ve.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/ve.svg
new file mode 100644
index 0000000..2d02c6a
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/ve.svg
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/vg.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/vg.svg
new file mode 100644
index 0000000..7a3bbab
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/vg.svg
@@ -0,0 +1,63 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/vi.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/vi.svg
new file mode 100644
index 0000000..114995e
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/vi.svg
@@ -0,0 +1,28 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/vn.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/vn.svg
new file mode 100644
index 0000000..865d264
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/vn.svg
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/vu.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/vu.svg
new file mode 100644
index 0000000..09add70
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/vu.svg
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/wf.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/wf.svg
new file mode 100644
index 0000000..a45b0f1
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/wf.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/ws.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/ws.svg
new file mode 100644
index 0000000..ab08fdb
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/ws.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/xk.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/xk.svg
new file mode 100644
index 0000000..1e43b95
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/xk.svg
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/xx.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/xx.svg
new file mode 100644
index 0000000..ccf6c1f
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/xx.svg
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/ye.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/ye.svg
new file mode 100644
index 0000000..4cac4a8
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/ye.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/yt.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/yt.svg
new file mode 100644
index 0000000..56e76bd
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/yt.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/za.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/za.svg
new file mode 100644
index 0000000..7bbe274
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/za.svg
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/zm.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/zm.svg
new file mode 100644
index 0000000..9506601
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/zm.svg
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/1x1/zw.svg b/dasena-web/public/assets/admin/vendors/img/flags/1x1/zw.svg
new file mode 100644
index 0000000..1533a81
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/1x1/zw.svg
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/ac.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/ac.svg
new file mode 100644
index 0000000..1a6d508
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/ac.svg
@@ -0,0 +1,76 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/ad.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/ad.svg
new file mode 100644
index 0000000..726f981
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/ad.svg
@@ -0,0 +1,150 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/ae.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/ae.svg
new file mode 100644
index 0000000..b7acdbd
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/ae.svg
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/af.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/af.svg
new file mode 100644
index 0000000..6e75539
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/af.svg
@@ -0,0 +1,81 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/ag.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/ag.svg
new file mode 100644
index 0000000..3bce748
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/ag.svg
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/ai.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/ai.svg
new file mode 100644
index 0000000..cf91b39
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/ai.svg
@@ -0,0 +1,758 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/al.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/al.svg
new file mode 100644
index 0000000..4e7098f
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/al.svg
@@ -0,0 +1,5 @@
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/am.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/am.svg
new file mode 100644
index 0000000..99fa4dc
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/am.svg
@@ -0,0 +1,5 @@
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/ao.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/ao.svg
new file mode 100644
index 0000000..4dc39f6
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/ao.svg
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/aq.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/aq.svg
new file mode 100644
index 0000000..53840cc
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/aq.svg
@@ -0,0 +1,5 @@
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/ar.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/ar.svg
new file mode 100644
index 0000000..d1810f2
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/ar.svg
@@ -0,0 +1,32 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/as.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/as.svg
new file mode 100644
index 0000000..88e2ca5
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/as.svg
@@ -0,0 +1,72 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/at.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/at.svg
new file mode 100644
index 0000000..c282508
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/at.svg
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/au.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/au.svg
new file mode 100644
index 0000000..407fef4
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/au.svg
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/aw.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/aw.svg
new file mode 100644
index 0000000..e840233
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/aw.svg
@@ -0,0 +1,186 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/ax.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/ax.svg
new file mode 100644
index 0000000..9f04648
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/ax.svg
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/az.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/az.svg
new file mode 100644
index 0000000..8e56ef5
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/az.svg
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/ba.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/ba.svg
new file mode 100644
index 0000000..7c30421
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/ba.svg
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/bb.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/bb.svg
new file mode 100644
index 0000000..420a688
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/bb.svg
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/bd.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/bd.svg
new file mode 100644
index 0000000..16b794d
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/bd.svg
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/be.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/be.svg
new file mode 100644
index 0000000..327f28f
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/be.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/bf.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/bf.svg
new file mode 100644
index 0000000..4713822
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/bf.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/bg.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/bg.svg
new file mode 100644
index 0000000..b100dd0
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/bg.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/bh.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/bh.svg
new file mode 100644
index 0000000..7a2ea54
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/bh.svg
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/bi.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/bi.svg
new file mode 100644
index 0000000..a37bc67
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/bi.svg
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/bj.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/bj.svg
new file mode 100644
index 0000000..871c57e
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/bj.svg
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/bl.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/bl.svg
new file mode 100644
index 0000000..15803ff
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/bl.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/bm.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/bm.svg
new file mode 100644
index 0000000..330d5ec
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/bm.svg
@@ -0,0 +1,97 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/bn.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/bn.svg
new file mode 100644
index 0000000..19f15fa
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/bn.svg
@@ -0,0 +1,36 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/bo.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/bo.svg
new file mode 100644
index 0000000..391e226
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/bo.svg
@@ -0,0 +1,676 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/bq.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/bq.svg
new file mode 100644
index 0000000..0e6bc76
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/bq.svg
@@ -0,0 +1,5 @@
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/br.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/br.svg
new file mode 100644
index 0000000..354a701
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/br.svg
@@ -0,0 +1,45 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/bs.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/bs.svg
new file mode 100644
index 0000000..b26d476
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/bs.svg
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/bt.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/bt.svg
new file mode 100644
index 0000000..cea6006
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/bt.svg
@@ -0,0 +1,89 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/bv.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/bv.svg
new file mode 100644
index 0000000..86431fc
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/bv.svg
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/bw.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/bw.svg
new file mode 100644
index 0000000..a1c8db0
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/bw.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/by.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/by.svg
new file mode 100644
index 0000000..20ae52b
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/by.svg
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/bz.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/bz.svg
new file mode 100644
index 0000000..fbc6d7c
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/bz.svg
@@ -0,0 +1,145 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/ca.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/ca.svg
new file mode 100644
index 0000000..f1b2c96
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/ca.svg
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/cc.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/cc.svg
new file mode 100644
index 0000000..c4457de
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/cc.svg
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/cd.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/cd.svg
new file mode 100644
index 0000000..e106ddd
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/cd.svg
@@ -0,0 +1,5 @@
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/cefta.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/cefta.svg
new file mode 100644
index 0000000..d66e18b
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/cefta.svg
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/cf.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/cf.svg
new file mode 100644
index 0000000..fd30063
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/cf.svg
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/cg.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/cg.svg
new file mode 100644
index 0000000..a290234
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/cg.svg
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/ch.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/ch.svg
new file mode 100644
index 0000000..b42d670
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/ch.svg
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/ci.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/ci.svg
new file mode 100644
index 0000000..e400f0c
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/ci.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/ck.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/ck.svg
new file mode 100644
index 0000000..18e547b
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/ck.svg
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/cl.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/cl.svg
new file mode 100644
index 0000000..50218c8
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/cl.svg
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/cm.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/cm.svg
new file mode 100644
index 0000000..d06f656
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/cm.svg
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/cn.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/cn.svg
new file mode 100644
index 0000000..2416236
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/cn.svg
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/co.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/co.svg
new file mode 100644
index 0000000..ebd0a0f
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/co.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/cp.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/cp.svg
new file mode 100644
index 0000000..b3efb07
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/cp.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/cr.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/cr.svg
new file mode 100644
index 0000000..5a409ee
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/cr.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/cu.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/cu.svg
new file mode 100644
index 0000000..31cf99c
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/cu.svg
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/cv.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/cv.svg
new file mode 100644
index 0000000..381985a
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/cv.svg
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/cw.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/cw.svg
new file mode 100644
index 0000000..4294b5b
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/cw.svg
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/cx.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/cx.svg
new file mode 100644
index 0000000..39fa9b0
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/cx.svg
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/cy.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/cy.svg
new file mode 100644
index 0000000..b72473a
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/cy.svg
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/cz.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/cz.svg
new file mode 100644
index 0000000..7913de3
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/cz.svg
@@ -0,0 +1,5 @@
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/de.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/de.svg
new file mode 100644
index 0000000..b08334b
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/de.svg
@@ -0,0 +1,5 @@
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/dg.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/dg.svg
new file mode 100644
index 0000000..8ba6750
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/dg.svg
@@ -0,0 +1,129 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/dj.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/dj.svg
new file mode 100644
index 0000000..674d7ef
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/dj.svg
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/dk.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/dk.svg
new file mode 100644
index 0000000..563277f
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/dk.svg
@@ -0,0 +1,5 @@
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/dm.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/dm.svg
new file mode 100644
index 0000000..7fa4dd8
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/dm.svg
@@ -0,0 +1,152 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/do.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/do.svg
new file mode 100644
index 0000000..e8114b3
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/do.svg
@@ -0,0 +1,6745 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/dz.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/dz.svg
new file mode 100644
index 0000000..5ff29a7
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/dz.svg
@@ -0,0 +1,5 @@
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/ea.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/ea.svg
new file mode 100644
index 0000000..d55c9b6
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/ea.svg
@@ -0,0 +1,544 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/ec.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/ec.svg
new file mode 100644
index 0000000..65b7885
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/ec.svg
@@ -0,0 +1,138 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/ee.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/ee.svg
new file mode 100644
index 0000000..36ea288
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/ee.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/eg.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/eg.svg
new file mode 100644
index 0000000..728538b
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/eg.svg
@@ -0,0 +1,38 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/eh.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/eh.svg
new file mode 100644
index 0000000..8743371
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/eh.svg
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/er.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/er.svg
new file mode 100644
index 0000000..2705295
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/er.svg
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/es-ct.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/es-ct.svg
new file mode 100644
index 0000000..4d85911
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/es-ct.svg
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/es-ga.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/es-ga.svg
new file mode 100644
index 0000000..cc52c84
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/es-ga.svg
@@ -0,0 +1,187 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/es.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/es.svg
new file mode 100644
index 0000000..815e0f8
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/es.svg
@@ -0,0 +1,544 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/et.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/et.svg
new file mode 100644
index 0000000..7075040
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/et.svg
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/eu.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/eu.svg
new file mode 100644
index 0000000..1bb04ec
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/eu.svg
@@ -0,0 +1,28 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/fi.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/fi.svg
new file mode 100644
index 0000000..470be2d
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/fi.svg
@@ -0,0 +1,5 @@
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/fj.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/fj.svg
new file mode 100644
index 0000000..2d7cd98
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/fj.svg
@@ -0,0 +1,120 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/fk.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/fk.svg
new file mode 100644
index 0000000..8aeee57
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/fk.svg
@@ -0,0 +1,90 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/fm.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/fm.svg
new file mode 100644
index 0000000..baa9668
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/fm.svg
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/fo.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/fo.svg
new file mode 100644
index 0000000..898f669
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/fo.svg
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/fr.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/fr.svg
new file mode 100644
index 0000000..1be6191
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/fr.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/ga.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/ga.svg
new file mode 100644
index 0000000..76edab4
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/ga.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/gb-eng.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/gb-eng.svg
new file mode 100644
index 0000000..12e3b67
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/gb-eng.svg
@@ -0,0 +1,5 @@
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/gb-nir.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/gb-nir.svg
new file mode 100644
index 0000000..e34b224
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/gb-nir.svg
@@ -0,0 +1,132 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/gb-sct.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/gb-sct.svg
new file mode 100644
index 0000000..f50cd32
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/gb-sct.svg
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/gb-wls.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/gb-wls.svg
new file mode 100644
index 0000000..6e15fd0
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/gb-wls.svg
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/gb.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/gb.svg
new file mode 100644
index 0000000..dbac25e
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/gb.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/gd.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/gd.svg
new file mode 100644
index 0000000..dad1107
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/gd.svg
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/ge.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/ge.svg
new file mode 100644
index 0000000..453898b
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/ge.svg
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/gf.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/gf.svg
new file mode 100644
index 0000000..f8752d9
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/gf.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/gg.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/gg.svg
new file mode 100644
index 0000000..e40a838
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/gg.svg
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/gh.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/gh.svg
new file mode 100644
index 0000000..a6497de
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/gh.svg
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/gi.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/gi.svg
new file mode 100644
index 0000000..64a69e8
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/gi.svg
@@ -0,0 +1,32 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/gl.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/gl.svg
new file mode 100644
index 0000000..eb5a52e
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/gl.svg
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/gm.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/gm.svg
new file mode 100644
index 0000000..2fbcb19
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/gm.svg
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/gn.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/gn.svg
new file mode 100644
index 0000000..40d6ad4
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/gn.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/gp.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/gp.svg
new file mode 100644
index 0000000..1b38158
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/gp.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/gq.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/gq.svg
new file mode 100644
index 0000000..ba2acf2
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/gq.svg
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/gr.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/gr.svg
new file mode 100644
index 0000000..599741e
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/gr.svg
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/gs.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/gs.svg
new file mode 100644
index 0000000..7e0692c
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/gs.svg
@@ -0,0 +1,133 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/gt.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/gt.svg
new file mode 100644
index 0000000..be45324
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/gt.svg
@@ -0,0 +1,220 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/gu.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/gu.svg
new file mode 100644
index 0000000..a5584ff
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/gu.svg
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+
+
+ G
+ U
+ A
+ M
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/gw.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/gw.svg
new file mode 100644
index 0000000..9e0aeeb
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/gw.svg
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/gy.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/gy.svg
new file mode 100644
index 0000000..f4d9b8a
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/gy.svg
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/hk.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/hk.svg
new file mode 100644
index 0000000..e32924f
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/hk.svg
@@ -0,0 +1,30 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/hm.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/hm.svg
new file mode 100644
index 0000000..c0748d3
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/hm.svg
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/hn.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/hn.svg
new file mode 100644
index 0000000..6f92950
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/hn.svg
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/hr.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/hr.svg
new file mode 100644
index 0000000..70115ae
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/hr.svg
@@ -0,0 +1,58 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/ht.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/ht.svg
new file mode 100644
index 0000000..9cddb29
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/ht.svg
@@ -0,0 +1,116 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/hu.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/hu.svg
new file mode 100644
index 0000000..baddf7f
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/hu.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/ic.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/ic.svg
new file mode 100644
index 0000000..81e6ee2
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/ic.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/id.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/id.svg
new file mode 100644
index 0000000..3b7c8fc
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/id.svg
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/ie.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/ie.svg
new file mode 100644
index 0000000..049be14
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/ie.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/il.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/il.svg
new file mode 100644
index 0000000..d9d8213
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/il.svg
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/im.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/im.svg
new file mode 100644
index 0000000..ce1243c
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/im.svg
@@ -0,0 +1,36 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/in.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/in.svg
new file mode 100644
index 0000000..53c29b3
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/in.svg
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/io.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/io.svg
new file mode 100644
index 0000000..c0ed2af
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/io.svg
@@ -0,0 +1,129 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/iq.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/iq.svg
new file mode 100644
index 0000000..6891785
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/iq.svg
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/ir.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/ir.svg
new file mode 100644
index 0000000..c937a36
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/ir.svg
@@ -0,0 +1,219 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/is.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/is.svg
new file mode 100644
index 0000000..b0828a4
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/is.svg
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/it.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/it.svg
new file mode 100644
index 0000000..20a8bfd
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/it.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/je.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/je.svg
new file mode 100644
index 0000000..b65965c
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/je.svg
@@ -0,0 +1,45 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/jm.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/jm.svg
new file mode 100644
index 0000000..e03a342
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/jm.svg
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/jo.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/jo.svg
new file mode 100644
index 0000000..df0ce75
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/jo.svg
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/jp.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/jp.svg
new file mode 100644
index 0000000..90af6c4
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/jp.svg
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/ke.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/ke.svg
new file mode 100644
index 0000000..ad190f5
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/ke.svg
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/kg.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/kg.svg
new file mode 100644
index 0000000..1d237fe
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/kg.svg
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/kh.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/kh.svg
new file mode 100644
index 0000000..984e84e
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/kh.svg
@@ -0,0 +1,61 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/ki.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/ki.svg
new file mode 100644
index 0000000..c469370
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/ki.svg
@@ -0,0 +1,36 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/km.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/km.svg
new file mode 100644
index 0000000..fda3a53
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/km.svg
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/kn.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/kn.svg
new file mode 100644
index 0000000..f96b06c
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/kn.svg
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/kp.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/kp.svg
new file mode 100644
index 0000000..b405e45
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/kp.svg
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/kr.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/kr.svg
new file mode 100644
index 0000000..39fa999
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/kr.svg
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/kw.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/kw.svg
new file mode 100644
index 0000000..d55aa19
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/kw.svg
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/ky.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/ky.svg
new file mode 100644
index 0000000..103af5b
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/ky.svg
@@ -0,0 +1,109 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/kz.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/kz.svg
new file mode 100644
index 0000000..64776c3
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/kz.svg
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/la.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/la.svg
new file mode 100644
index 0000000..cd7ea9d
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/la.svg
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/lb.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/lb.svg
new file mode 100644
index 0000000..f8b8b6d
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/lb.svg
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/lc.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/lc.svg
new file mode 100644
index 0000000..46bbc6c
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/lc.svg
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/li.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/li.svg
new file mode 100644
index 0000000..d557d31
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/li.svg
@@ -0,0 +1,43 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/lk.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/lk.svg
new file mode 100644
index 0000000..416c0f0
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/lk.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/lr.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/lr.svg
new file mode 100644
index 0000000..0025221
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/lr.svg
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/ls.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/ls.svg
new file mode 100644
index 0000000..e701650
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/ls.svg
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/lt.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/lt.svg
new file mode 100644
index 0000000..90ec5d2
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/lt.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/lu.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/lu.svg
new file mode 100644
index 0000000..c31d2bf
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/lu.svg
@@ -0,0 +1,5 @@
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/lv.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/lv.svg
new file mode 100644
index 0000000..6a9e75e
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/lv.svg
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/ly.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/ly.svg
new file mode 100644
index 0000000..7324a87
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/ly.svg
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/ma.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/ma.svg
new file mode 100644
index 0000000..7ce56ef
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/ma.svg
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/mc.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/mc.svg
new file mode 100644
index 0000000..9cb6c9e
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/mc.svg
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/md.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/md.svg
new file mode 100644
index 0000000..a806572
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/md.svg
@@ -0,0 +1,70 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/me.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/me.svg
new file mode 100644
index 0000000..b56cce0
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/me.svg
@@ -0,0 +1,116 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/mf.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/mf.svg
new file mode 100644
index 0000000..0e5ae11
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/mf.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/mg.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/mg.svg
new file mode 100644
index 0000000..5fa2d24
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/mg.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/mh.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/mh.svg
new file mode 100644
index 0000000..46351e5
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/mh.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/mk.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/mk.svg
new file mode 100644
index 0000000..4f5cae7
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/mk.svg
@@ -0,0 +1,5 @@
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/ml.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/ml.svg
new file mode 100644
index 0000000..6f6b716
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/ml.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/mm.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/mm.svg
new file mode 100644
index 0000000..3527782
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/mm.svg
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/mn.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/mn.svg
new file mode 100644
index 0000000..56cb072
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/mn.svg
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/mo.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/mo.svg
new file mode 100644
index 0000000..6b70cc7
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/mo.svg
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/mp.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/mp.svg
new file mode 100644
index 0000000..d94f688
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/mp.svg
@@ -0,0 +1,86 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/mq.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/mq.svg
new file mode 100644
index 0000000..750b396
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/mq.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/mr.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/mr.svg
new file mode 100644
index 0000000..e9cc291
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/mr.svg
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/ms.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/ms.svg
new file mode 100644
index 0000000..a1e52d9
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/ms.svg
@@ -0,0 +1,33 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/mt.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/mt.svg
new file mode 100644
index 0000000..676e801
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/mt.svg
@@ -0,0 +1,49 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/mu.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/mu.svg
new file mode 100644
index 0000000..82d7a3b
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/mu.svg
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/mv.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/mv.svg
new file mode 100644
index 0000000..10450f9
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/mv.svg
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/mw.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/mw.svg
new file mode 100644
index 0000000..113aae5
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/mw.svg
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/mx.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/mx.svg
new file mode 100644
index 0000000..4219195
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/mx.svg
@@ -0,0 +1,382 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/my.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/my.svg
new file mode 100644
index 0000000..773a432
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/my.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/mz.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/mz.svg
new file mode 100644
index 0000000..dab81a6
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/mz.svg
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/na.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/na.svg
new file mode 100644
index 0000000..3b9202b
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/na.svg
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/nc.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/nc.svg
new file mode 100644
index 0000000..9679540
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/nc.svg
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/ne.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/ne.svg
new file mode 100644
index 0000000..39a82b8
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/ne.svg
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/nf.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/nf.svg
new file mode 100644
index 0000000..ecdb4a3
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/nf.svg
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/ng.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/ng.svg
new file mode 100644
index 0000000..81eb35f
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/ng.svg
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/ni.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/ni.svg
new file mode 100644
index 0000000..64d2aa0
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/ni.svg
@@ -0,0 +1,129 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/nl.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/nl.svg
new file mode 100644
index 0000000..4faaf49
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/nl.svg
@@ -0,0 +1,5 @@
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/no.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/no.svg
new file mode 100644
index 0000000..a5f2a15
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/no.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/np.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/np.svg
new file mode 100644
index 0000000..2f5e1f3
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/np.svg
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/nr.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/nr.svg
new file mode 100644
index 0000000..c7db7dd
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/nr.svg
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/nu.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/nu.svg
new file mode 100644
index 0000000..4067baf
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/nu.svg
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/nz.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/nz.svg
new file mode 100644
index 0000000..8ae592a
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/nz.svg
@@ -0,0 +1,36 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/om.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/om.svg
new file mode 100644
index 0000000..5be12ed
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/om.svg
@@ -0,0 +1,115 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/pa.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/pa.svg
new file mode 100644
index 0000000..658c87e
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/pa.svg
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/pe.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/pe.svg
new file mode 100644
index 0000000..eeb29a3
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/pe.svg
@@ -0,0 +1,244 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/pf.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/pf.svg
new file mode 100644
index 0000000..1b35cdb
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/pf.svg
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/pg.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/pg.svg
new file mode 100644
index 0000000..1080add
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/pg.svg
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/ph.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/ph.svg
new file mode 100644
index 0000000..65489e1
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/ph.svg
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/pk.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/pk.svg
new file mode 100644
index 0000000..0babde6
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/pk.svg
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/pl.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/pl.svg
new file mode 100644
index 0000000..0fa5145
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/pl.svg
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/pm.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/pm.svg
new file mode 100644
index 0000000..42bfcee
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/pm.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/pn.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/pn.svg
new file mode 100644
index 0000000..972792f
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/pn.svg
@@ -0,0 +1,53 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/pr.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/pr.svg
new file mode 100644
index 0000000..964b421
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/pr.svg
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/ps.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/ps.svg
new file mode 100644
index 0000000..ddd1dc1
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/ps.svg
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/pt.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/pt.svg
new file mode 100644
index 0000000..afd2e4a
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/pt.svg
@@ -0,0 +1,57 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/pw.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/pw.svg
new file mode 100644
index 0000000..77547c7
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/pw.svg
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/py.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/py.svg
new file mode 100644
index 0000000..bfbf01f
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/py.svg
@@ -0,0 +1,157 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/qa.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/qa.svg
new file mode 100644
index 0000000..bd493c3
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/qa.svg
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/re.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/re.svg
new file mode 100644
index 0000000..6c56aa4
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/re.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/ro.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/ro.svg
new file mode 100644
index 0000000..fda0f7b
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/ro.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/rs.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/rs.svg
new file mode 100644
index 0000000..86ad291
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/rs.svg
@@ -0,0 +1,292 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/ru.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/ru.svg
new file mode 100644
index 0000000..f4d27ef
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/ru.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/rw.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/rw.svg
new file mode 100644
index 0000000..2c6c5d9
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/rw.svg
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/sa.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/sa.svg
new file mode 100644
index 0000000..6fcf86b
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/sa.svg
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/sb.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/sb.svg
new file mode 100644
index 0000000..f450a9c
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/sb.svg
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/sc.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/sc.svg
new file mode 100644
index 0000000..9a46b36
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/sc.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/sd.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/sd.svg
new file mode 100644
index 0000000..c00a1a5
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/sd.svg
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/se.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/se.svg
new file mode 100644
index 0000000..0e41780
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/se.svg
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/sg.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/sg.svg
new file mode 100644
index 0000000..c0d3d08
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/sg.svg
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/sh.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/sh.svg
new file mode 100644
index 0000000..131b069
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/sh.svg
@@ -0,0 +1,76 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/si.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/si.svg
new file mode 100644
index 0000000..223fc49
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/si.svg
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/sj.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/sj.svg
new file mode 100644
index 0000000..bb2799c
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/sj.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/sk.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/sk.svg
new file mode 100644
index 0000000..a1953fa
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/sk.svg
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/sl.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/sl.svg
new file mode 100644
index 0000000..a07baf7
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/sl.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/sm.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/sm.svg
new file mode 100644
index 0000000..0892990
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/sm.svg
@@ -0,0 +1,75 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/sn.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/sn.svg
new file mode 100644
index 0000000..7c0673d
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/sn.svg
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/so.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/so.svg
new file mode 100644
index 0000000..4d4337a
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/so.svg
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/sr.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/sr.svg
new file mode 100644
index 0000000..5e71c40
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/sr.svg
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/ss.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/ss.svg
new file mode 100644
index 0000000..73804d8
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/ss.svg
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/st.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/st.svg
new file mode 100644
index 0000000..2259f31
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/st.svg
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/sv.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/sv.svg
new file mode 100644
index 0000000..752dd3d
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/sv.svg
@@ -0,0 +1,594 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/sx.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/sx.svg
new file mode 100644
index 0000000..bcc90d6
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/sx.svg
@@ -0,0 +1,56 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/sy.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/sy.svg
new file mode 100644
index 0000000..29636ae
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/sy.svg
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/sz.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/sz.svg
new file mode 100644
index 0000000..02ef495
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/sz.svg
@@ -0,0 +1,34 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/ta.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/ta.svg
new file mode 100644
index 0000000..b68ad23
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/ta.svg
@@ -0,0 +1,76 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/tc.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/tc.svg
new file mode 100644
index 0000000..dbdb716
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/tc.svg
@@ -0,0 +1,50 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/td.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/td.svg
new file mode 100644
index 0000000..9fadf85
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/td.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/tf.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/tf.svg
new file mode 100644
index 0000000..4572f4e
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/tf.svg
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/tg.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/tg.svg
new file mode 100644
index 0000000..8d763cb
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/tg.svg
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/th.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/th.svg
new file mode 100644
index 0000000..1e93a61
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/th.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/tj.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/tj.svg
new file mode 100644
index 0000000..563c97b
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/tj.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/tk.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/tk.svg
new file mode 100644
index 0000000..65bab13
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/tk.svg
@@ -0,0 +1,5 @@
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/tl.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/tl.svg
new file mode 100644
index 0000000..1f11e92
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/tl.svg
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/tm.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/tm.svg
new file mode 100644
index 0000000..3c72f09
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/tm.svg
@@ -0,0 +1,205 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/tn.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/tn.svg
new file mode 100644
index 0000000..7367688
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/tn.svg
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/to.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/to.svg
new file mode 100644
index 0000000..d072337
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/to.svg
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/tr.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/tr.svg
new file mode 100644
index 0000000..a92804f
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/tr.svg
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/tt.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/tt.svg
new file mode 100644
index 0000000..14adbe0
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/tt.svg
@@ -0,0 +1,5 @@
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/tv.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/tv.svg
new file mode 100644
index 0000000..675210e
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/tv.svg
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/tw.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/tw.svg
new file mode 100644
index 0000000..78f3b9d
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/tw.svg
@@ -0,0 +1,34 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/tz.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/tz.svg
new file mode 100644
index 0000000..ca74eec
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/tz.svg
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/ua.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/ua.svg
new file mode 100644
index 0000000..a339eb1
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/ua.svg
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/ug.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/ug.svg
new file mode 100644
index 0000000..f9c5e1b
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/ug.svg
@@ -0,0 +1,30 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/um.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/um.svg
new file mode 100644
index 0000000..7b91838
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/um.svg
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/un.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/un.svg
new file mode 100644
index 0000000..b04c3c4
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/un.svg
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/undefined.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/undefined.svg
new file mode 100644
index 0000000..d70df1a
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/undefined.svg
@@ -0,0 +1,31 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/us.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/us.svg
new file mode 100644
index 0000000..73b6245
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/us.svg
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/uy.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/uy.svg
new file mode 100644
index 0000000..1634d71
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/uy.svg
@@ -0,0 +1,28 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/uz.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/uz.svg
new file mode 100644
index 0000000..8c6a532
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/uz.svg
@@ -0,0 +1,30 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/va.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/va.svg
new file mode 100644
index 0000000..6a03dc4
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/va.svg
@@ -0,0 +1,479 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/vc.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/vc.svg
new file mode 100644
index 0000000..450f6f0
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/vc.svg
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/ve.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/ve.svg
new file mode 100644
index 0000000..77bb549
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/ve.svg
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/vg.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/vg.svg
new file mode 100644
index 0000000..39023a9
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/vg.svg
@@ -0,0 +1,63 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/vi.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/vi.svg
new file mode 100644
index 0000000..8a0941f
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/vi.svg
@@ -0,0 +1,28 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/vn.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/vn.svg
new file mode 100644
index 0000000..c557e3a
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/vn.svg
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/vu.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/vu.svg
new file mode 100644
index 0000000..32f4377
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/vu.svg
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/wf.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/wf.svg
new file mode 100644
index 0000000..b0cc4c7
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/wf.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/ws.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/ws.svg
new file mode 100644
index 0000000..0e758a7
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/ws.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/xk.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/xk.svg
new file mode 100644
index 0000000..0edc0c7
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/xk.svg
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/xx.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/xx.svg
new file mode 100644
index 0000000..34515ce
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/xx.svg
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/ye.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/ye.svg
new file mode 100644
index 0000000..61f0ed6
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/ye.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/yt.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/yt.svg
new file mode 100644
index 0000000..e84f439
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/yt.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/za.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/za.svg
new file mode 100644
index 0000000..0c1f3af
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/za.svg
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/zm.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/zm.svg
new file mode 100644
index 0000000..84c99c2
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/zm.svg
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/4x3/zw.svg b/dasena-web/public/assets/admin/vendors/img/flags/4x3/zw.svg
new file mode 100644
index 0000000..64e8d48
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/flags/4x3/zw.svg
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/us/ak.png b/dasena-web/public/assets/admin/vendors/img/flags/us/ak.png
new file mode 100644
index 0000000..cc3bb61
Binary files /dev/null and b/dasena-web/public/assets/admin/vendors/img/flags/us/ak.png differ
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/us/al.png b/dasena-web/public/assets/admin/vendors/img/flags/us/al.png
new file mode 100644
index 0000000..6bd24b1
Binary files /dev/null and b/dasena-web/public/assets/admin/vendors/img/flags/us/al.png differ
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/us/ar.png b/dasena-web/public/assets/admin/vendors/img/flags/us/ar.png
new file mode 100644
index 0000000..0322532
Binary files /dev/null and b/dasena-web/public/assets/admin/vendors/img/flags/us/ar.png differ
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/us/as - Copy.png b/dasena-web/public/assets/admin/vendors/img/flags/us/as - Copy.png
new file mode 100644
index 0000000..a81cbec
Binary files /dev/null and b/dasena-web/public/assets/admin/vendors/img/flags/us/as - Copy.png differ
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/us/as.png b/dasena-web/public/assets/admin/vendors/img/flags/us/as.png
new file mode 100644
index 0000000..a81cbec
Binary files /dev/null and b/dasena-web/public/assets/admin/vendors/img/flags/us/as.png differ
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/us/az.png b/dasena-web/public/assets/admin/vendors/img/flags/us/az.png
new file mode 100644
index 0000000..f00ffd5
Binary files /dev/null and b/dasena-web/public/assets/admin/vendors/img/flags/us/az.png differ
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/us/ca.png b/dasena-web/public/assets/admin/vendors/img/flags/us/ca.png
new file mode 100644
index 0000000..6322f38
Binary files /dev/null and b/dasena-web/public/assets/admin/vendors/img/flags/us/ca.png differ
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/us/co.png b/dasena-web/public/assets/admin/vendors/img/flags/us/co.png
new file mode 100644
index 0000000..a81cbec
Binary files /dev/null and b/dasena-web/public/assets/admin/vendors/img/flags/us/co.png differ
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/us/ct.png b/dasena-web/public/assets/admin/vendors/img/flags/us/ct.png
new file mode 100644
index 0000000..edff2dd
Binary files /dev/null and b/dasena-web/public/assets/admin/vendors/img/flags/us/ct.png differ
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/us/dc.png b/dasena-web/public/assets/admin/vendors/img/flags/us/dc.png
new file mode 100644
index 0000000..b5a4c60
Binary files /dev/null and b/dasena-web/public/assets/admin/vendors/img/flags/us/dc.png differ
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/us/de.png b/dasena-web/public/assets/admin/vendors/img/flags/us/de.png
new file mode 100644
index 0000000..0a25291
Binary files /dev/null and b/dasena-web/public/assets/admin/vendors/img/flags/us/de.png differ
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/us/fl.png b/dasena-web/public/assets/admin/vendors/img/flags/us/fl.png
new file mode 100644
index 0000000..4abbe3f
Binary files /dev/null and b/dasena-web/public/assets/admin/vendors/img/flags/us/fl.png differ
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/us/ga.png b/dasena-web/public/assets/admin/vendors/img/flags/us/ga.png
new file mode 100644
index 0000000..e542db0
Binary files /dev/null and b/dasena-web/public/assets/admin/vendors/img/flags/us/ga.png differ
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/us/gu.png b/dasena-web/public/assets/admin/vendors/img/flags/us/gu.png
new file mode 100644
index 0000000..659f849
Binary files /dev/null and b/dasena-web/public/assets/admin/vendors/img/flags/us/gu.png differ
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/us/hi.png b/dasena-web/public/assets/admin/vendors/img/flags/us/hi.png
new file mode 100644
index 0000000..b61eff5
Binary files /dev/null and b/dasena-web/public/assets/admin/vendors/img/flags/us/hi.png differ
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/us/ia.png b/dasena-web/public/assets/admin/vendors/img/flags/us/ia.png
new file mode 100644
index 0000000..1d09f41
Binary files /dev/null and b/dasena-web/public/assets/admin/vendors/img/flags/us/ia.png differ
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/us/id.png b/dasena-web/public/assets/admin/vendors/img/flags/us/id.png
new file mode 100644
index 0000000..4af9f5c
Binary files /dev/null and b/dasena-web/public/assets/admin/vendors/img/flags/us/id.png differ
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/us/il.png b/dasena-web/public/assets/admin/vendors/img/flags/us/il.png
new file mode 100644
index 0000000..ac004ff
Binary files /dev/null and b/dasena-web/public/assets/admin/vendors/img/flags/us/il.png differ
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/us/in.png b/dasena-web/public/assets/admin/vendors/img/flags/us/in.png
new file mode 100644
index 0000000..e9d8e7d
Binary files /dev/null and b/dasena-web/public/assets/admin/vendors/img/flags/us/in.png differ
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/us/ks.png b/dasena-web/public/assets/admin/vendors/img/flags/us/ks.png
new file mode 100644
index 0000000..3427fa6
Binary files /dev/null and b/dasena-web/public/assets/admin/vendors/img/flags/us/ks.png differ
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/us/ky.png b/dasena-web/public/assets/admin/vendors/img/flags/us/ky.png
new file mode 100644
index 0000000..708b1ca
Binary files /dev/null and b/dasena-web/public/assets/admin/vendors/img/flags/us/ky.png differ
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/us/la.png b/dasena-web/public/assets/admin/vendors/img/flags/us/la.png
new file mode 100644
index 0000000..40796b5
Binary files /dev/null and b/dasena-web/public/assets/admin/vendors/img/flags/us/la.png differ
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/us/ma.png b/dasena-web/public/assets/admin/vendors/img/flags/us/ma.png
new file mode 100644
index 0000000..a72ca7b
Binary files /dev/null and b/dasena-web/public/assets/admin/vendors/img/flags/us/ma.png differ
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/us/md.png b/dasena-web/public/assets/admin/vendors/img/flags/us/md.png
new file mode 100644
index 0000000..ad2ea99
Binary files /dev/null and b/dasena-web/public/assets/admin/vendors/img/flags/us/md.png differ
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/us/me.png b/dasena-web/public/assets/admin/vendors/img/flags/us/me.png
new file mode 100644
index 0000000..d9320d4
Binary files /dev/null and b/dasena-web/public/assets/admin/vendors/img/flags/us/me.png differ
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/us/mi.png b/dasena-web/public/assets/admin/vendors/img/flags/us/mi.png
new file mode 100644
index 0000000..b5a4c60
Binary files /dev/null and b/dasena-web/public/assets/admin/vendors/img/flags/us/mi.png differ
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/us/mn.png b/dasena-web/public/assets/admin/vendors/img/flags/us/mn.png
new file mode 100644
index 0000000..49df07f
Binary files /dev/null and b/dasena-web/public/assets/admin/vendors/img/flags/us/mn.png differ
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/us/mo.png b/dasena-web/public/assets/admin/vendors/img/flags/us/mo.png
new file mode 100644
index 0000000..659f849
Binary files /dev/null and b/dasena-web/public/assets/admin/vendors/img/flags/us/mo.png differ
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/us/mp.png b/dasena-web/public/assets/admin/vendors/img/flags/us/mp.png
new file mode 100644
index 0000000..3096543
Binary files /dev/null and b/dasena-web/public/assets/admin/vendors/img/flags/us/mp.png differ
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/us/ms.png b/dasena-web/public/assets/admin/vendors/img/flags/us/ms.png
new file mode 100644
index 0000000..1111612
Binary files /dev/null and b/dasena-web/public/assets/admin/vendors/img/flags/us/ms.png differ
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/us/mt.png b/dasena-web/public/assets/admin/vendors/img/flags/us/mt.png
new file mode 100644
index 0000000..fd25612
Binary files /dev/null and b/dasena-web/public/assets/admin/vendors/img/flags/us/mt.png differ
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/us/nc.png b/dasena-web/public/assets/admin/vendors/img/flags/us/nc.png
new file mode 100644
index 0000000..22d8c99
Binary files /dev/null and b/dasena-web/public/assets/admin/vendors/img/flags/us/nc.png differ
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/us/nd.png b/dasena-web/public/assets/admin/vendors/img/flags/us/nd.png
new file mode 100644
index 0000000..15a44b9
Binary files /dev/null and b/dasena-web/public/assets/admin/vendors/img/flags/us/nd.png differ
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/us/ne.png b/dasena-web/public/assets/admin/vendors/img/flags/us/ne.png
new file mode 100644
index 0000000..a733f7f
Binary files /dev/null and b/dasena-web/public/assets/admin/vendors/img/flags/us/ne.png differ
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/us/nh.png b/dasena-web/public/assets/admin/vendors/img/flags/us/nh.png
new file mode 100644
index 0000000..60f2a4e
Binary files /dev/null and b/dasena-web/public/assets/admin/vendors/img/flags/us/nh.png differ
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/us/nj.png b/dasena-web/public/assets/admin/vendors/img/flags/us/nj.png
new file mode 100644
index 0000000..e47bf88
Binary files /dev/null and b/dasena-web/public/assets/admin/vendors/img/flags/us/nj.png differ
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/us/nm.png b/dasena-web/public/assets/admin/vendors/img/flags/us/nm.png
new file mode 100644
index 0000000..7ca6b36
Binary files /dev/null and b/dasena-web/public/assets/admin/vendors/img/flags/us/nm.png differ
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/us/nv.png b/dasena-web/public/assets/admin/vendors/img/flags/us/nv.png
new file mode 100644
index 0000000..3096543
Binary files /dev/null and b/dasena-web/public/assets/admin/vendors/img/flags/us/nv.png differ
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/us/ny.png b/dasena-web/public/assets/admin/vendors/img/flags/us/ny.png
new file mode 100644
index 0000000..71ffe82
Binary files /dev/null and b/dasena-web/public/assets/admin/vendors/img/flags/us/ny.png differ
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/us/oh.png b/dasena-web/public/assets/admin/vendors/img/flags/us/oh.png
new file mode 100644
index 0000000..abe417a
Binary files /dev/null and b/dasena-web/public/assets/admin/vendors/img/flags/us/oh.png differ
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/us/ok.png b/dasena-web/public/assets/admin/vendors/img/flags/us/ok.png
new file mode 100644
index 0000000..616ceae
Binary files /dev/null and b/dasena-web/public/assets/admin/vendors/img/flags/us/ok.png differ
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/us/or.png b/dasena-web/public/assets/admin/vendors/img/flags/us/or.png
new file mode 100644
index 0000000..4ec2435
Binary files /dev/null and b/dasena-web/public/assets/admin/vendors/img/flags/us/or.png differ
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/us/pa.png b/dasena-web/public/assets/admin/vendors/img/flags/us/pa.png
new file mode 100644
index 0000000..9cc943b
Binary files /dev/null and b/dasena-web/public/assets/admin/vendors/img/flags/us/pa.png differ
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/us/pr.png b/dasena-web/public/assets/admin/vendors/img/flags/us/pr.png
new file mode 100644
index 0000000..495d3f7
Binary files /dev/null and b/dasena-web/public/assets/admin/vendors/img/flags/us/pr.png differ
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/us/ri.png b/dasena-web/public/assets/admin/vendors/img/flags/us/ri.png
new file mode 100644
index 0000000..d716142
Binary files /dev/null and b/dasena-web/public/assets/admin/vendors/img/flags/us/ri.png differ
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/us/sc.png b/dasena-web/public/assets/admin/vendors/img/flags/us/sc.png
new file mode 100644
index 0000000..495d3f7
Binary files /dev/null and b/dasena-web/public/assets/admin/vendors/img/flags/us/sc.png differ
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/us/sd.png b/dasena-web/public/assets/admin/vendors/img/flags/us/sd.png
new file mode 100644
index 0000000..6160e31
Binary files /dev/null and b/dasena-web/public/assets/admin/vendors/img/flags/us/sd.png differ
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/us/tn.png b/dasena-web/public/assets/admin/vendors/img/flags/us/tn.png
new file mode 100644
index 0000000..1c35175
Binary files /dev/null and b/dasena-web/public/assets/admin/vendors/img/flags/us/tn.png differ
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/us/tx.png b/dasena-web/public/assets/admin/vendors/img/flags/us/tx.png
new file mode 100644
index 0000000..7953734
Binary files /dev/null and b/dasena-web/public/assets/admin/vendors/img/flags/us/tx.png differ
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/us/um.png b/dasena-web/public/assets/admin/vendors/img/flags/us/um.png
new file mode 100644
index 0000000..1d09f41
Binary files /dev/null and b/dasena-web/public/assets/admin/vendors/img/flags/us/um.png differ
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/us/undefined.png b/dasena-web/public/assets/admin/vendors/img/flags/us/undefined.png
new file mode 100644
index 0000000..57e4dcf
Binary files /dev/null and b/dasena-web/public/assets/admin/vendors/img/flags/us/undefined.png differ
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/us/ut.png b/dasena-web/public/assets/admin/vendors/img/flags/us/ut.png
new file mode 100644
index 0000000..41cee85
Binary files /dev/null and b/dasena-web/public/assets/admin/vendors/img/flags/us/ut.png differ
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/us/va.png b/dasena-web/public/assets/admin/vendors/img/flags/us/va.png
new file mode 100644
index 0000000..6876f16
Binary files /dev/null and b/dasena-web/public/assets/admin/vendors/img/flags/us/va.png differ
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/us/vi.png b/dasena-web/public/assets/admin/vendors/img/flags/us/vi.png
new file mode 100644
index 0000000..ac004ff
Binary files /dev/null and b/dasena-web/public/assets/admin/vendors/img/flags/us/vi.png differ
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/us/vt.png b/dasena-web/public/assets/admin/vendors/img/flags/us/vt.png
new file mode 100644
index 0000000..b65d37d
Binary files /dev/null and b/dasena-web/public/assets/admin/vendors/img/flags/us/vt.png differ
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/us/wa.png b/dasena-web/public/assets/admin/vendors/img/flags/us/wa.png
new file mode 100644
index 0000000..43e3fa5
Binary files /dev/null and b/dasena-web/public/assets/admin/vendors/img/flags/us/wa.png differ
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/us/wi.png b/dasena-web/public/assets/admin/vendors/img/flags/us/wi.png
new file mode 100644
index 0000000..48e1f94
Binary files /dev/null and b/dasena-web/public/assets/admin/vendors/img/flags/us/wi.png differ
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/us/wv.png b/dasena-web/public/assets/admin/vendors/img/flags/us/wv.png
new file mode 100644
index 0000000..b58dbf7
Binary files /dev/null and b/dasena-web/public/assets/admin/vendors/img/flags/us/wv.png differ
diff --git a/dasena-web/public/assets/admin/vendors/img/flags/us/wy.png b/dasena-web/public/assets/admin/vendors/img/flags/us/wy.png
new file mode 100644
index 0000000..eb6071f
Binary files /dev/null and b/dasena-web/public/assets/admin/vendors/img/flags/us/wy.png differ
diff --git a/dasena-web/public/assets/admin/vendors/img/loading.gif b/dasena-web/public/assets/admin/vendors/img/loading.gif
new file mode 100644
index 0000000..5bb90fd
Binary files /dev/null and b/dasena-web/public/assets/admin/vendors/img/loading.gif differ
diff --git a/dasena-web/public/assets/admin/vendors/img/preloader.svg b/dasena-web/public/assets/admin/vendors/img/preloader.svg
new file mode 100644
index 0000000..885e308
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/img/preloader.svg
@@ -0,0 +1 @@
+
diff --git a/dasena-web/public/assets/admin/vendors/img/upload/placeholder.jpg b/dasena-web/public/assets/admin/vendors/img/upload/placeholder.jpg
new file mode 100644
index 0000000..57e4dcf
Binary files /dev/null and b/dasena-web/public/assets/admin/vendors/img/upload/placeholder.jpg differ
diff --git a/dasena-web/public/assets/admin/vendors/js/apexcharts.min.js b/dasena-web/public/assets/admin/vendors/js/apexcharts.min.js
new file mode 100644
index 0000000..5f2ac02
--- /dev/null
+++ b/dasena-web/public/assets/admin/vendors/js/apexcharts.min.js
@@ -0,0 +1,2 @@
+!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):(t=t||self).ApexCharts=e()}(this,function(){"use strict";function C(t){return(C="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function s(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function E(t,e){for(var i=0;i>16,t=a>>8&255,a=255&a;return"#"+(16777216+65536*(Math.round((i-e)*s)+e)+256*(Math.round((i-t)*s)+t)+(Math.round((i-a)*s)+a)).toString(16).slice(1)}},{key:"shadeColor",value:function(t,e){return 7\{\}\[\]\\\/]/gi,e)}},{key:"negToZero",value:function(t){return t<0?0:t}},{key:"moveIndexInArray",value:function(t,e,i){if(i>=t.length)for(var s=i-t.length+1;s--;)t.push(void 0);return t.splice(i,0,t.splice(e,1)[0]),t}},{key:"extractNumber",value:function(t){return parseFloat(t.replace(/[^\d\.]*/g,""))}},{key:"randomString",value:function(t){for(var e="",i="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz",s=0;s";break;case"easeinout":t="<>";break;case"swing":t=function(t){return--t*t*(2.70158*t+1.70158)+1};break;case"bounce":t=function(t){return t<1/2.75?7.5625*t*t:t<2/2.75?7.5625*(t-=1.5/2.75)*t+.75:t<2.5/2.75?7.5625*(t-=2.25/2.75)*t+.9375:7.5625*(t-=2.625/2.75)*t+.984375};break;case"elastic":t=function(t){return t===!!t?t:Math.pow(2,-10*t)*Math.sin((t-.075)*(2*Math.PI)/.3)+1};break;default:t="<>"}this.w.globals.easing=t}},{key:"animateLine",value:function(t,e,i,s){t.attr(e).animate(s).attr(i)}},{key:"animateCircleRadius",value:function(t,e,i,s,a){t.attr({r:e=e||0}).animate(s,a).attr({r:i})}},{key:"animateCircle",value:function(t,e,i,s,a){t.attr({r:e.r,cx:e.cx,cy:e.cy}).animate(s,a).attr({r:i.r,cx:i.cx,cy:i.cy})}},{key:"animateRect",value:function(t,e,i,s,a){t.attr(e).animate(s).attr(i).afterAll(function(){a()})}},{key:"animatePathsGradually",value:function(t){var e=t.el,i=t.j,s=t.pathFrom,a=t.pathTo,n=t.speed,o=t.delay,r=t.strokeWidth,l=this.w,t=0;l.config.chart.animations.animateGradually.enabled&&(t=l.config.chart.animations.animateGradually.delay),l.config.chart.animations.dynamicAnimation.enabled&&l.globals.dataChanged&&(t=0),this.morphSVG(e,i,s,a,n,r,o*t)}},{key:"showDelayedElements",value:function(){this.w.globals.delayedElements.forEach(function(t){t.el.classList.remove("hidden")})}},{key:"morphSVG",value:function(t,e,i,s,a,n,o){var r=this,l=this.w;i=i||t.attr("pathFrom"),s=s||t.attr("pathTo"),(!i||-1=i){for(var s=e.length-3;0s.globals.gridWidth||(null===t.x2?(l=this.graphics.drawLine(o+t.offsetX,0+t.offsetY,o+t.offsetX,s.globals.gridHeight+t.offsetY,t.borderColor,h),e.appendChild(l.node)):(a=(t.x2-a)/(n/s.globals.gridWidth),(a="category"!==s.config.xaxis.type&&!s.config.xaxis.convertedCatToNumeric||this.invertAxis||s.globals.isXNumeric?a:this.getStringX(t.x2))n.globals.gridWidth||(n={pSize:t.marker.size,pWidth:t.marker.strokeWidth,pointFillColor:t.marker.fillColor,pointStrokeColor:t.marker.strokeColor,shape:t.marker.shape,radius:t.marker.radius,class:"apexcharts-point-annotation-marker "+t.marker.cssClass},n=this.graphics.drawMarker(o+t.marker.offsetX,l+t.marker.offsetY,n),e.appendChild(n.node),n=t.label.text||"",(n=this.graphics.drawText({x:o+t.label.offsetX,y:r+t.label.offsetY,text:n,textAnchor:t.label.textAnchor,fontSize:t.label.style.fontSize,fontFamily:t.label.style.fontFamily,foreColor:t.label.style.color,cssClass:"apexcharts-point-annotation-label "+t.label.style.cssClass})).attr({rel:i}),e.appendChild(n.node),t.customSVG.SVG&&((n=this.graphics.group({class:"apexcharts-point-annotations-custom-svg "+t.customSVG.cssClass})).attr({transform:"translate(".concat(o+t.customSVG.offsetX,", ").concat(r+t.customSVG.offsetY,")")}),n.node.innerHTML=t.customSVG.SVG,e.appendChild(n.node)))}},{key:"drawPointAnnotations",value:function(){var i=this,t=this.w,s=this.graphics.group({class:"apexcharts-point-annotations"});return t.config.annotations.points.map(function(t,e){i.addPointAnnotation(t,s.node,e)}),s}},{key:"setOrientations",value:function(t){var e=1Open: '+(t=t.w).globals.seriesCandleO[e][i]+'
High: '+t.globals.seriesCandleH[e][i]+'
Low: '+t.globals.seriesCandleL[e][i]+'
Close: '+t.globals.seriesCandleC[e][i]+"
"}},states:{active:{filter:{type:"none"}}},xaxis:{crosshairs:{width:1}}}}},{key:"rangeBar",value:function(){return{stroke:{width:0},plotOptions:{bar:{dataLabels:{position:"center"}}},dataLabels:{enabled:!1,formatter:function(t,e){e.ctx;var i=e.seriesIndex,s=e.dataPointIndex,a=e.w,e=a.globals.seriesRangeStart[i][s];return a.globals.seriesRangeEnd[i][s]-e},style:{colors:["#fff"]}},tooltip:{shared:!1,followCursor:!0,custom:function(t){var e=t.ctx,i=t.seriesIndex,s=t.dataPointIndex,a=t.w,n=a.globals.seriesRangeStart[i][s],o=a.globals.seriesRangeEnd[i][s],r="",t=a.globals.colors[i],o=void 0===a.config.tooltip.x.formatter?"datetime"===a.config.xaxis.type?(r=(e=new y(e)).formatDate(new Date(n),a.config.tooltip.x.format,!0,!0),e.formatDate(new Date(o),a.config.tooltip.x.format,!0,!0)):(r=n,o):(r=a.config.tooltip.x.formatter(n),a.config.tooltip.x.formatter(o)),s=a.globals.labels[s];return'