diff --git a/app/Http/Controllers/Cpanel/DashboardController.php b/app/Http/Controllers/Cpanel/DashboardController.php new file mode 100644 index 00000000..a78f7649 --- /dev/null +++ b/app/Http/Controllers/Cpanel/DashboardController.php @@ -0,0 +1,13 @@ + \Illuminate\Routing\Middleware\ValidateSignature::class, 'throttle' => \Illuminate\Routing\Middleware\ThrottleRequests::class, 'verified' => \Illuminate\Auth\Middleware\EnsureEmailIsVerified::class, + 'role' => \Spatie\Permission\Middlewares\RoleMiddleware::class, ]; } diff --git a/app/Providers/RouteServiceProvider.php b/app/Providers/RouteServiceProvider.php index 834a0fd4..ce7d911e 100644 --- a/app/Providers/RouteServiceProvider.php +++ b/app/Providers/RouteServiceProvider.php @@ -48,6 +48,12 @@ public function boot() Route::middleware('web') ->namespace($this->namespace) ->group(base_path('routes/web.php')); + + Route::middleware(['web', 'auth', 'role:moderator|admin']) + ->namespace($this->namespace) + ->prefix('cpanel') + ->as('cpanel.') + ->group(base_path('routes/cpanel.php')); }); Route::macro('redirectMap', function ($map, $status = 302) { diff --git a/public/css/app.css b/public/css/app.css index f496e497..d8737a23 100755 --- a/public/css/app.css +++ b/public/css/app.css @@ -1,9377 +1,10 @@ -/* - -Atom One Dark by Daniel Gamage -Original One Dark Syntax theme from https://github.com/atom/one-dark-syntax - -base: #282c34 -mono-1: #abb2bf -mono-2: #818896 -mono-3: #5c6370 -hue-1: #56b6c2 -hue-2: #61aeee -hue-3: #c678dd -hue-4: #98c379 -hue-5: #e06c75 -hue-5-2: #be5046 -hue-6: #d19a66 -hue-6-2: #e6c07b - -*/ - -.hljs { - display: block; - overflow-x: auto; - padding: 0.5em; - color: #abb2bf; - background: #282c34; -} - -.hljs-comment, -.hljs-quote { - color: #5c6370; - font-style: italic; -} - -.hljs-doctag, -.hljs-keyword, -.hljs-formula { - color: #c678dd; -} - -.hljs-section, -.hljs-name, -.hljs-selector-tag, -.hljs-deletion, -.hljs-subst { - color: #e06c75; -} - -.hljs-literal { - color: #56b6c2; -} - -.hljs-string, -.hljs-regexp, -.hljs-addition, -.hljs-attribute, -.hljs-meta-string { - color: #98c379; -} - -.hljs-built_in, -.hljs-class .hljs-title { - color: #e6c07b; -} - -.hljs-attr, -.hljs-variable, -.hljs-template-variable, -.hljs-type, -.hljs-selector-class, -.hljs-selector-attr, -.hljs-selector-pseudo, -.hljs-number { - color: #d19a66; -} - -.hljs-symbol, -.hljs-bullet, -.hljs-link, -.hljs-meta, -.hljs-selector-id, -.hljs-title { - color: #61aeee; -} - -.hljs-emphasis { - font-style: italic; -} - -.hljs-strong { - font-weight: bold; -} - -.hljs-link { - text-decoration: underline; -} - -/*=============================== -= Choices = -===============================*/ -.choices { - position: relative; - margin-bottom: 24px; - font-size: 16px; -} - -.choices:focus { - outline: none; -} - -.choices:last-child { - margin-bottom: 0; -} - -.choices.is-disabled .choices__inner, -.choices.is-disabled .choices__input { - background-color: #eaeaea; - cursor: not-allowed; - -webkit-user-select: none; - -ms-user-select: none; - -moz-user-select: none; - user-select: none; -} - -.choices.is-disabled .choices__item { - cursor: not-allowed; -} - -.choices [hidden] { - display: none !important; -} - -.choices[data-type*='select-one'] { - cursor: pointer; -} - -.choices[data-type*='select-one'] .choices__inner { - padding-bottom: 7.5px; -} - -.choices[data-type*='select-one'] .choices__input { - display: block; - width: 100%; - padding: 10px; - border-bottom: 1px solid #dddddd; - background-color: #ffffff; - margin: 0; -} - -.choices[data-type*='select-one'] .choices__button { - background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==); - padding: 0; - background-size: 8px; - position: absolute; - top: 50%; - right: 0; - margin-top: -10px; - margin-right: 25px; - height: 20px; - width: 20px; - border-radius: 10em; - opacity: 0.5; -} - -.choices[data-type*='select-one'] .choices__button:hover, .choices[data-type*='select-one'] .choices__button:focus { - opacity: 1; -} - -.choices[data-type*='select-one'] .choices__button:focus { - box-shadow: 0px 0px 0px 2px #00bcd4; -} - -.choices[data-type*='select-one'] .choices__item[data-value=''] .choices__button { - display: none; -} - -.choices[data-type*='select-one']:after { - content: ''; - height: 0; - width: 0; - border-style: solid; - border-color: #333333 transparent transparent transparent; - border-width: 5px; - position: absolute; - right: 11.5px; - top: 50%; - margin-top: -2.5px; - pointer-events: none; -} - -.choices[data-type*='select-one'].is-open:after { - border-color: transparent transparent #333333 transparent; - margin-top: -7.5px; -} - -.choices[data-type*='select-one'][dir='rtl']:after { - left: 11.5px; - right: auto; -} - -.choices[data-type*='select-one'][dir='rtl'] .choices__button { - right: auto; - left: 0; - margin-left: 25px; - margin-right: 0; -} - -.choices[data-type*='select-multiple'] .choices__inner, -.choices[data-type*='text'] .choices__inner { - cursor: text; -} - -.choices[data-type*='select-multiple'] .choices__button, -.choices[data-type*='text'] .choices__button { - position: relative; - display: inline-block; - margin-top: 0; - margin-right: -4px; - margin-bottom: 0; - margin-left: 8px; - padding-left: 16px; - border-left: 1px solid #008fa1; - background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjRkZGIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==); - background-size: 8px; - width: 8px; - line-height: 1; - opacity: 0.75; - border-radius: 0; -} - -.choices[data-type*='select-multiple'] .choices__button:hover, .choices[data-type*='select-multiple'] .choices__button:focus, -.choices[data-type*='text'] .choices__button:hover, -.choices[data-type*='text'] .choices__button:focus { - opacity: 1; -} - -.choices__inner { - display: inline-block; - vertical-align: top; - width: 100%; - background-color: #f9f9f9; - padding: 7.5px 7.5px 3.75px; - border: 1px solid #dddddd; - border-radius: 2.5px; - font-size: 14px; - min-height: 44px; - overflow: hidden; -} - -.is-focused .choices__inner, -.is-open .choices__inner { - border-color: #b7b7b7; -} - -.is-open .choices__inner { - border-radius: 2.5px 2.5px 0 0; -} - -.is-flipped.is-open .choices__inner { - border-radius: 0 0 2.5px 2.5px; -} - -.choices__list { - margin: 0; - padding-left: 0; - list-style: none; -} - -.choices__list--single { - display: inline-block; - padding: 4px 16px 4px 4px; - width: 100%; -} - -[dir='rtl'] .choices__list--single { - padding-right: 4px; - padding-left: 16px; -} - -.choices__list--single .choices__item { - width: 100%; -} - -.choices__list--multiple { - display: inline; -} - -.choices__list--multiple .choices__item { - display: inline-block; - vertical-align: middle; - border-radius: 20px; - padding: 4px 10px; - font-size: 12px; - font-weight: 500; - margin-right: 3.75px; - margin-bottom: 3.75px; - background-color: #00bcd4; - border: 1px solid #00a5bb; - color: #ffffff; - word-break: break-all; - box-sizing: border-box; -} - -.choices__list--multiple .choices__item[data-deletable] { - padding-right: 5px; -} - -[dir='rtl'] .choices__list--multiple .choices__item { - margin-right: 0; - margin-left: 3.75px; -} - -.choices__list--multiple .choices__item.is-highlighted { - background-color: #00a5bb; - border: 1px solid #008fa1; -} - -.is-disabled .choices__list--multiple .choices__item { - background-color: #aaaaaa; - border: 1px solid #919191; -} - -.choices__list--dropdown { - visibility: hidden; - z-index: 1; - position: absolute; - width: 100%; - background-color: #ffffff; - border: 1px solid #dddddd; - top: 100%; - margin-top: -1px; - border-bottom-left-radius: 2.5px; - border-bottom-right-radius: 2.5px; - overflow: hidden; - word-break: break-all; - will-change: visibility; -} - -.choices__list--dropdown.is-active { - visibility: visible; -} - -.is-open .choices__list--dropdown { - border-color: #b7b7b7; -} - -.is-flipped .choices__list--dropdown { - top: auto; - bottom: 100%; - margin-top: 0; - margin-bottom: -1px; - border-radius: 0.25rem 0.25rem 0 0; -} - -.choices__list--dropdown .choices__list { - position: relative; - max-height: 300px; - overflow: auto; - -webkit-overflow-scrolling: touch; - will-change: scroll-position; -} - -.choices__list--dropdown .choices__item { - position: relative; - padding: 10px; - font-size: 14px; -} - -[dir='rtl'] .choices__list--dropdown .choices__item { - text-align: right; -} - -@media (min-width: 640px) { - .choices__list--dropdown .choices__item--selectable { - padding-right: 100px; - } - .choices__list--dropdown .choices__item--selectable:after { - content: attr(data-select-text); - font-size: 12px; - opacity: 0; - position: absolute; - right: 10px; - top: 50%; - transform: translateY(-50%); - } - [dir='rtl'] .choices__list--dropdown .choices__item--selectable { - text-align: right; - padding-left: 100px; - padding-right: 10px; - } - [dir='rtl'] .choices__list--dropdown .choices__item--selectable:after { - right: auto; - left: 10px; - } -} - -.choices__list--dropdown .choices__item--selectable.is-highlighted { - background-color: #f2f2f2; -} - -.choices__list--dropdown .choices__item--selectable.is-highlighted:after { - opacity: 0.5; -} - -.choices__item { - cursor: default; -} - -.choices__item--selectable { - cursor: pointer; -} - -.choices__item--disabled { - cursor: not-allowed; - -webkit-user-select: none; - -ms-user-select: none; - -moz-user-select: none; - user-select: none; - opacity: 0.5; -} - -.choices__heading { - font-weight: 600; - font-size: 12px; - padding: 10px; - border-bottom: 1px solid #f7f7f7; - color: gray; -} - -.choices__button { - text-indent: -9999px; - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; - border: 0; - background-color: transparent; - background-repeat: no-repeat; - background-position: center; - cursor: pointer; -} - -.choices__button:focus { - outline: none; -} - -.choices__input { - display: inline-block; - vertical-align: baseline; - background-color: #f9f9f9; - font-size: 14px; - margin-bottom: 5px; - border: 0; - border-radius: 0; - max-width: 100%; - padding: 4px 0 4px 2px; -} - -.choices__input:focus { - outline: 0; -} - -[dir='rtl'] .choices__input { - padding-right: 2px; - padding-left: 0; -} - -.choices__placeholder { - opacity: 0.5; -} - -/*===== End of Choices ======*/ - -.iti { - position: relative; - display: inline-block; } - .iti * { - box-sizing: border-box; - -moz-box-sizing: border-box; } - .iti__hide { - display: none; } - .iti__v-hide { - visibility: hidden; } - .iti input, .iti input[type=text], .iti input[type=tel] { - position: relative; - z-index: 0; - margin-top: 0 !important; - margin-bottom: 0 !important; - padding-right: 36px; - margin-right: 0; } - .iti__flag-container { - position: absolute; - top: 0; - bottom: 0; - right: 0; - padding: 1px; } - .iti__selected-flag { - z-index: 1; - position: relative; - display: flex; - align-items: center; - height: 100%; - padding: 0 6px 0 8px; } - .iti__arrow { - margin-left: 6px; - width: 0; - height: 0; - border-left: 3px solid transparent; - border-right: 3px solid transparent; - border-top: 4px solid #555; } - .iti__arrow--up { - border-top: none; - border-bottom: 4px solid #555; } - .iti__country-list { - position: absolute; - z-index: 2; - list-style: none; - text-align: left; - padding: 0; - margin: 0 0 0 -1px; - box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2); - background-color: white; - border: 1px solid #CCC; - white-space: nowrap; - max-height: 200px; - overflow-y: scroll; - -webkit-overflow-scrolling: touch; } - .iti__country-list--dropup { - bottom: 100%; - margin-bottom: -1px; } - @media (max-width: 500px) { - .iti__country-list { - white-space: normal; } } - .iti__flag-box { - display: inline-block; - width: 20px; } - .iti__divider { - padding-bottom: 5px; - margin-bottom: 5px; - border-bottom: 1px solid #CCC; } - .iti__country { - padding: 5px 10px; - outline: none; } - .iti__dial-code { - color: #999; } - .iti__country.iti__highlight { - background-color: rgba(0, 0, 0, 0.05); } - .iti__flag-box, .iti__country-name, .iti__dial-code { - vertical-align: middle; } - .iti__flag-box, .iti__country-name { - margin-right: 6px; } - .iti--allow-dropdown input, .iti--allow-dropdown input[type=text], .iti--allow-dropdown input[type=tel], .iti--separate-dial-code input, .iti--separate-dial-code input[type=text], .iti--separate-dial-code input[type=tel] { - padding-right: 6px; - padding-left: 52px; - margin-left: 0; } - .iti--allow-dropdown .iti__flag-container, .iti--separate-dial-code .iti__flag-container { - right: auto; - left: 0; } - .iti--allow-dropdown .iti__flag-container:hover { - cursor: pointer; } - .iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag { - background-color: rgba(0, 0, 0, 0.05); } - .iti--allow-dropdown input[disabled] + .iti__flag-container:hover, - .iti--allow-dropdown input[readonly] + .iti__flag-container:hover { - cursor: default; } - .iti--allow-dropdown input[disabled] + .iti__flag-container:hover .iti__selected-flag, - .iti--allow-dropdown input[readonly] + .iti__flag-container:hover .iti__selected-flag { - background-color: transparent; } - .iti--separate-dial-code .iti__selected-flag { - background-color: rgba(0, 0, 0, 0.05); } - .iti--separate-dial-code .iti__selected-dial-code { - margin-left: 6px; } - .iti--container { - position: absolute; - top: -1000px; - left: -1000px; - z-index: 1060; - padding: 1px; } - .iti--container:hover { - cursor: pointer; } - -.iti-mobile .iti--container { - top: 30px; - bottom: 30px; - left: 30px; - right: 30px; - position: fixed; } - -.iti-mobile .iti__country-list { - max-height: 100%; - width: 100%; } - -.iti-mobile .iti__country { - padding: 10px 10px; - line-height: 1.5em; } - -.iti__flag { - width: 20px; } - .iti__flag.iti__be { - width: 18px; } - .iti__flag.iti__ch { - width: 15px; } - .iti__flag.iti__mc { - width: 19px; } - .iti__flag.iti__ne { - width: 18px; } - .iti__flag.iti__np { - width: 13px; } - .iti__flag.iti__va { - width: 15px; } - @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) { - .iti__flag { - background-size: 5652px 15px; } } - .iti__flag.iti__ac { - height: 10px; - background-position: 0px 0px; } - .iti__flag.iti__ad { - height: 14px; - background-position: -22px 0px; } - .iti__flag.iti__ae { - height: 10px; - background-position: -44px 0px; } - .iti__flag.iti__af { - height: 14px; - background-position: -66px 0px; } - .iti__flag.iti__ag { - height: 14px; - background-position: -88px 0px; } - .iti__flag.iti__ai { - height: 10px; - background-position: -110px 0px; } - .iti__flag.iti__al { - height: 15px; - background-position: -132px 0px; } - .iti__flag.iti__am { - height: 10px; - background-position: -154px 0px; } - .iti__flag.iti__ao { - height: 14px; - background-position: -176px 0px; } - .iti__flag.iti__aq { - height: 14px; - background-position: -198px 0px; } - .iti__flag.iti__ar { - height: 13px; - background-position: -220px 0px; } - .iti__flag.iti__as { - height: 10px; - background-position: -242px 0px; } - .iti__flag.iti__at { - height: 14px; - background-position: -264px 0px; } - .iti__flag.iti__au { - height: 10px; - background-position: -286px 0px; } - .iti__flag.iti__aw { - height: 14px; - background-position: -308px 0px; } - .iti__flag.iti__ax { - height: 13px; - background-position: -330px 0px; } - .iti__flag.iti__az { - height: 10px; - background-position: -352px 0px; } - .iti__flag.iti__ba { - height: 10px; - background-position: -374px 0px; } - .iti__flag.iti__bb { - height: 14px; - background-position: -396px 0px; } - .iti__flag.iti__bd { - height: 12px; - background-position: -418px 0px; } - .iti__flag.iti__be { - height: 15px; - background-position: -440px 0px; } - .iti__flag.iti__bf { - height: 14px; - background-position: -460px 0px; } - .iti__flag.iti__bg { - height: 12px; - background-position: -482px 0px; } - .iti__flag.iti__bh { - height: 12px; - background-position: -504px 0px; } - .iti__flag.iti__bi { - height: 12px; - background-position: -526px 0px; } - .iti__flag.iti__bj { - height: 14px; - background-position: -548px 0px; } - .iti__flag.iti__bl { - height: 14px; - background-position: -570px 0px; } - .iti__flag.iti__bm { - height: 10px; - background-position: -592px 0px; } - .iti__flag.iti__bn { - height: 10px; - background-position: -614px 0px; } - .iti__flag.iti__bo { - height: 14px; - background-position: -636px 0px; } - .iti__flag.iti__bq { - height: 14px; - background-position: -658px 0px; } - .iti__flag.iti__br { - height: 14px; - background-position: -680px 0px; } - .iti__flag.iti__bs { - height: 10px; - background-position: -702px 0px; } - .iti__flag.iti__bt { - height: 14px; - background-position: -724px 0px; } - .iti__flag.iti__bv { - height: 15px; - background-position: -746px 0px; } - .iti__flag.iti__bw { - height: 14px; - background-position: -768px 0px; } - .iti__flag.iti__by { - height: 10px; - background-position: -790px 0px; } - .iti__flag.iti__bz { - height: 14px; - background-position: -812px 0px; } - .iti__flag.iti__ca { - height: 10px; - background-position: -834px 0px; } - .iti__flag.iti__cc { - height: 10px; - background-position: -856px 0px; } - .iti__flag.iti__cd { - height: 15px; - background-position: -878px 0px; } - .iti__flag.iti__cf { - height: 14px; - background-position: -900px 0px; } - .iti__flag.iti__cg { - height: 14px; - background-position: -922px 0px; } - .iti__flag.iti__ch { - height: 15px; - background-position: -944px 0px; } - .iti__flag.iti__ci { - height: 14px; - background-position: -961px 0px; } - .iti__flag.iti__ck { - height: 10px; - background-position: -983px 0px; } - .iti__flag.iti__cl { - height: 14px; - background-position: -1005px 0px; } - .iti__flag.iti__cm { - height: 14px; - background-position: -1027px 0px; } - .iti__flag.iti__cn { - height: 14px; - background-position: -1049px 0px; } - .iti__flag.iti__co { - height: 14px; - background-position: -1071px 0px; } - .iti__flag.iti__cp { - height: 14px; - background-position: -1093px 0px; } - .iti__flag.iti__cr { - height: 12px; - background-position: -1115px 0px; } - .iti__flag.iti__cu { - height: 10px; - background-position: -1137px 0px; } - .iti__flag.iti__cv { - height: 12px; - background-position: -1159px 0px; } - .iti__flag.iti__cw { - height: 14px; - background-position: -1181px 0px; } - .iti__flag.iti__cx { - height: 10px; - background-position: -1203px 0px; } - .iti__flag.iti__cy { - height: 14px; - background-position: -1225px 0px; } - .iti__flag.iti__cz { - height: 14px; - background-position: -1247px 0px; } - .iti__flag.iti__de { - height: 12px; - background-position: -1269px 0px; } - .iti__flag.iti__dg { - height: 10px; - background-position: -1291px 0px; } - .iti__flag.iti__dj { - height: 14px; - background-position: -1313px 0px; } - .iti__flag.iti__dk { - height: 15px; - background-position: -1335px 0px; } - .iti__flag.iti__dm { - height: 10px; - background-position: -1357px 0px; } - .iti__flag.iti__do { - height: 14px; - background-position: -1379px 0px; } - .iti__flag.iti__dz { - height: 14px; - background-position: -1401px 0px; } - .iti__flag.iti__ea { - height: 14px; - background-position: -1423px 0px; } - .iti__flag.iti__ec { - height: 14px; - background-position: -1445px 0px; } - .iti__flag.iti__ee { - height: 13px; - background-position: -1467px 0px; } - .iti__flag.iti__eg { - height: 14px; - background-position: -1489px 0px; } - .iti__flag.iti__eh { - height: 10px; - background-position: -1511px 0px; } - .iti__flag.iti__er { - height: 10px; - background-position: -1533px 0px; } - .iti__flag.iti__es { - height: 14px; - background-position: -1555px 0px; } - .iti__flag.iti__et { - height: 10px; - background-position: -1577px 0px; } - .iti__flag.iti__eu { - height: 14px; - background-position: -1599px 0px; } - .iti__flag.iti__fi { - height: 12px; - background-position: -1621px 0px; } - .iti__flag.iti__fj { - height: 10px; - background-position: -1643px 0px; } - .iti__flag.iti__fk { - height: 10px; - background-position: -1665px 0px; } - .iti__flag.iti__fm { - height: 11px; - background-position: -1687px 0px; } - .iti__flag.iti__fo { - height: 15px; - background-position: -1709px 0px; } - .iti__flag.iti__fr { - height: 14px; - background-position: -1731px 0px; } - .iti__flag.iti__ga { - height: 15px; - background-position: -1753px 0px; } - .iti__flag.iti__gb { - height: 10px; - background-position: -1775px 0px; } - .iti__flag.iti__gd { - height: 12px; - background-position: -1797px 0px; } - .iti__flag.iti__ge { - height: 14px; - background-position: -1819px 0px; } - .iti__flag.iti__gf { - height: 14px; - background-position: -1841px 0px; } - .iti__flag.iti__gg { - height: 14px; - background-position: -1863px 0px; } - .iti__flag.iti__gh { - height: 14px; - background-position: -1885px 0px; } - .iti__flag.iti__gi { - height: 10px; - background-position: -1907px 0px; } - .iti__flag.iti__gl { - height: 14px; - background-position: -1929px 0px; } - .iti__flag.iti__gm { - height: 14px; - background-position: -1951px 0px; } - .iti__flag.iti__gn { - height: 14px; - background-position: -1973px 0px; } - .iti__flag.iti__gp { - height: 14px; - background-position: -1995px 0px; } - .iti__flag.iti__gq { - height: 14px; - background-position: -2017px 0px; } - .iti__flag.iti__gr { - height: 14px; - background-position: -2039px 0px; } - .iti__flag.iti__gs { - height: 10px; - background-position: -2061px 0px; } - .iti__flag.iti__gt { - height: 13px; - background-position: -2083px 0px; } - .iti__flag.iti__gu { - height: 11px; - background-position: -2105px 0px; } - .iti__flag.iti__gw { - height: 10px; - background-position: -2127px 0px; } - .iti__flag.iti__gy { - height: 12px; - background-position: -2149px 0px; } - .iti__flag.iti__hk { - height: 14px; - background-position: -2171px 0px; } - .iti__flag.iti__hm { - height: 10px; - background-position: -2193px 0px; } - .iti__flag.iti__hn { - height: 10px; - background-position: -2215px 0px; } - .iti__flag.iti__hr { - height: 10px; - background-position: -2237px 0px; } - .iti__flag.iti__ht { - height: 12px; - background-position: -2259px 0px; } - .iti__flag.iti__hu { - height: 10px; - background-position: -2281px 0px; } - .iti__flag.iti__ic { - height: 14px; - background-position: -2303px 0px; } - .iti__flag.iti__id { - height: 14px; - background-position: -2325px 0px; } - .iti__flag.iti__ie { - height: 10px; - background-position: -2347px 0px; } - .iti__flag.iti__il { - height: 15px; - background-position: -2369px 0px; } - .iti__flag.iti__im { - height: 10px; - background-position: -2391px 0px; } - .iti__flag.iti__in { - height: 14px; - background-position: -2413px 0px; } - .iti__flag.iti__io { - height: 10px; - background-position: -2435px 0px; } - .iti__flag.iti__iq { - height: 14px; - background-position: -2457px 0px; } - .iti__flag.iti__ir { - height: 12px; - background-position: -2479px 0px; } - .iti__flag.iti__is { - height: 15px; - background-position: -2501px 0px; } - .iti__flag.iti__it { - height: 14px; - background-position: -2523px 0px; } - .iti__flag.iti__je { - height: 12px; - background-position: -2545px 0px; } - .iti__flag.iti__jm { - height: 10px; - background-position: -2567px 0px; } - .iti__flag.iti__jo { - height: 10px; - background-position: -2589px 0px; } - .iti__flag.iti__jp { - height: 14px; - background-position: -2611px 0px; } - .iti__flag.iti__ke { - height: 14px; - background-position: -2633px 0px; } - .iti__flag.iti__kg { - height: 12px; - background-position: -2655px 0px; } - .iti__flag.iti__kh { - height: 13px; - background-position: -2677px 0px; } - .iti__flag.iti__ki { - height: 10px; - background-position: -2699px 0px; } - .iti__flag.iti__km { - height: 12px; - background-position: -2721px 0px; } - .iti__flag.iti__kn { - height: 14px; - background-position: -2743px 0px; } - .iti__flag.iti__kp { - height: 10px; - background-position: -2765px 0px; } - .iti__flag.iti__kr { - height: 14px; - background-position: -2787px 0px; } - .iti__flag.iti__kw { - height: 10px; - background-position: -2809px 0px; } - .iti__flag.iti__ky { - height: 10px; - background-position: -2831px 0px; } - .iti__flag.iti__kz { - height: 10px; - background-position: -2853px 0px; } - .iti__flag.iti__la { - height: 14px; - background-position: -2875px 0px; } - .iti__flag.iti__lb { - height: 14px; - background-position: -2897px 0px; } - .iti__flag.iti__lc { - height: 10px; - background-position: -2919px 0px; } - .iti__flag.iti__li { - height: 12px; - background-position: -2941px 0px; } - .iti__flag.iti__lk { - height: 10px; - background-position: -2963px 0px; } - .iti__flag.iti__lr { - height: 11px; - background-position: -2985px 0px; } - .iti__flag.iti__ls { - height: 14px; - background-position: -3007px 0px; } - .iti__flag.iti__lt { - height: 12px; - background-position: -3029px 0px; } - .iti__flag.iti__lu { - height: 12px; - background-position: -3051px 0px; } - .iti__flag.iti__lv { - height: 10px; - background-position: -3073px 0px; } - .iti__flag.iti__ly { - height: 10px; - background-position: -3095px 0px; } - .iti__flag.iti__ma { - height: 14px; - background-position: -3117px 0px; } - .iti__flag.iti__mc { - height: 15px; - background-position: -3139px 0px; } - .iti__flag.iti__md { - height: 10px; - background-position: -3160px 0px; } - .iti__flag.iti__me { - height: 10px; - background-position: -3182px 0px; } - .iti__flag.iti__mf { - height: 14px; - background-position: -3204px 0px; } - .iti__flag.iti__mg { - height: 14px; - background-position: -3226px 0px; } - .iti__flag.iti__mh { - height: 11px; - background-position: -3248px 0px; } - .iti__flag.iti__mk { - height: 10px; - background-position: -3270px 0px; } - .iti__flag.iti__ml { - height: 14px; - background-position: -3292px 0px; } - .iti__flag.iti__mm { - height: 14px; - background-position: -3314px 0px; } - .iti__flag.iti__mn { - height: 10px; - background-position: -3336px 0px; } - .iti__flag.iti__mo { - height: 14px; - background-position: -3358px 0px; } - .iti__flag.iti__mp { - height: 10px; - background-position: -3380px 0px; } - .iti__flag.iti__mq { - height: 14px; - background-position: -3402px 0px; } - .iti__flag.iti__mr { - height: 14px; - background-position: -3424px 0px; } - .iti__flag.iti__ms { - height: 10px; - background-position: -3446px 0px; } - .iti__flag.iti__mt { - height: 14px; - background-position: -3468px 0px; } - .iti__flag.iti__mu { - height: 14px; - background-position: -3490px 0px; } - .iti__flag.iti__mv { - height: 14px; - background-position: -3512px 0px; } - .iti__flag.iti__mw { - height: 14px; - background-position: -3534px 0px; } - .iti__flag.iti__mx { - height: 12px; - background-position: -3556px 0px; } - .iti__flag.iti__my { - height: 10px; - background-position: -3578px 0px; } - .iti__flag.iti__mz { - height: 14px; - background-position: -3600px 0px; } - .iti__flag.iti__na { - height: 14px; - background-position: -3622px 0px; } - .iti__flag.iti__nc { - height: 10px; - background-position: -3644px 0px; } - .iti__flag.iti__ne { - height: 15px; - background-position: -3666px 0px; } - .iti__flag.iti__nf { - height: 10px; - background-position: -3686px 0px; } - .iti__flag.iti__ng { - height: 10px; - background-position: -3708px 0px; } - .iti__flag.iti__ni { - height: 12px; - background-position: -3730px 0px; } - .iti__flag.iti__nl { - height: 14px; - background-position: -3752px 0px; } - .iti__flag.iti__no { - height: 15px; - background-position: -3774px 0px; } - .iti__flag.iti__np { - height: 15px; - background-position: -3796px 0px; } - .iti__flag.iti__nr { - height: 10px; - background-position: -3811px 0px; } - .iti__flag.iti__nu { - height: 10px; - background-position: -3833px 0px; } - .iti__flag.iti__nz { - height: 10px; - background-position: -3855px 0px; } - .iti__flag.iti__om { - height: 10px; - background-position: -3877px 0px; } - .iti__flag.iti__pa { - height: 14px; - background-position: -3899px 0px; } - .iti__flag.iti__pe { - height: 14px; - background-position: -3921px 0px; } - .iti__flag.iti__pf { - height: 14px; - background-position: -3943px 0px; } - .iti__flag.iti__pg { - height: 15px; - background-position: -3965px 0px; } - .iti__flag.iti__ph { - height: 10px; - background-position: -3987px 0px; } - .iti__flag.iti__pk { - height: 14px; - background-position: -4009px 0px; } - .iti__flag.iti__pl { - height: 13px; - background-position: -4031px 0px; } - .iti__flag.iti__pm { - height: 14px; - background-position: -4053px 0px; } - .iti__flag.iti__pn { - height: 10px; - background-position: -4075px 0px; } - .iti__flag.iti__pr { - height: 14px; - background-position: -4097px 0px; } - .iti__flag.iti__ps { - height: 10px; - background-position: -4119px 0px; } - .iti__flag.iti__pt { - height: 14px; - background-position: -4141px 0px; } - .iti__flag.iti__pw { - height: 13px; - background-position: -4163px 0px; } - .iti__flag.iti__py { - height: 11px; - background-position: -4185px 0px; } - .iti__flag.iti__qa { - height: 8px; - background-position: -4207px 0px; } - .iti__flag.iti__re { - height: 14px; - background-position: -4229px 0px; } - .iti__flag.iti__ro { - height: 14px; - background-position: -4251px 0px; } - .iti__flag.iti__rs { - height: 14px; - background-position: -4273px 0px; } - .iti__flag.iti__ru { - height: 14px; - background-position: -4295px 0px; } - .iti__flag.iti__rw { - height: 14px; - background-position: -4317px 0px; } - .iti__flag.iti__sa { - height: 14px; - background-position: -4339px 0px; } - .iti__flag.iti__sb { - height: 10px; - background-position: -4361px 0px; } - .iti__flag.iti__sc { - height: 10px; - background-position: -4383px 0px; } - .iti__flag.iti__sd { - height: 10px; - background-position: -4405px 0px; } - .iti__flag.iti__se { - height: 13px; - background-position: -4427px 0px; } - .iti__flag.iti__sg { - height: 14px; - background-position: -4449px 0px; } - .iti__flag.iti__sh { - height: 10px; - background-position: -4471px 0px; } - .iti__flag.iti__si { - height: 10px; - background-position: -4493px 0px; } - .iti__flag.iti__sj { - height: 15px; - background-position: -4515px 0px; } - .iti__flag.iti__sk { - height: 14px; - background-position: -4537px 0px; } - .iti__flag.iti__sl { - height: 14px; - background-position: -4559px 0px; } - .iti__flag.iti__sm { - height: 15px; - background-position: -4581px 0px; } - .iti__flag.iti__sn { - height: 14px; - background-position: -4603px 0px; } - .iti__flag.iti__so { - height: 14px; - background-position: -4625px 0px; } - .iti__flag.iti__sr { - height: 14px; - background-position: -4647px 0px; } - .iti__flag.iti__ss { - height: 10px; - background-position: -4669px 0px; } - .iti__flag.iti__st { - height: 10px; - background-position: -4691px 0px; } - .iti__flag.iti__sv { - height: 12px; - background-position: -4713px 0px; } - .iti__flag.iti__sx { - height: 14px; - background-position: -4735px 0px; } - .iti__flag.iti__sy { - height: 14px; - background-position: -4757px 0px; } - .iti__flag.iti__sz { - height: 14px; - background-position: -4779px 0px; } - .iti__flag.iti__ta { - height: 10px; - background-position: -4801px 0px; } - .iti__flag.iti__tc { - height: 10px; - background-position: -4823px 0px; } - .iti__flag.iti__td { - height: 14px; - background-position: -4845px 0px; } - .iti__flag.iti__tf { - height: 14px; - background-position: -4867px 0px; } - .iti__flag.iti__tg { - height: 13px; - background-position: -4889px 0px; } - .iti__flag.iti__th { - height: 14px; - background-position: -4911px 0px; } - .iti__flag.iti__tj { - height: 10px; - background-position: -4933px 0px; } - .iti__flag.iti__tk { - height: 10px; - background-position: -4955px 0px; } - .iti__flag.iti__tl { - height: 10px; - background-position: -4977px 0px; } - .iti__flag.iti__tm { - height: 14px; - background-position: -4999px 0px; } - .iti__flag.iti__tn { - height: 14px; - background-position: -5021px 0px; } - .iti__flag.iti__to { - height: 10px; - background-position: -5043px 0px; } - .iti__flag.iti__tr { - height: 14px; - background-position: -5065px 0px; } - .iti__flag.iti__tt { - height: 12px; - background-position: -5087px 0px; } - .iti__flag.iti__tv { - height: 10px; - background-position: -5109px 0px; } - .iti__flag.iti__tw { - height: 14px; - background-position: -5131px 0px; } - .iti__flag.iti__tz { - height: 14px; - background-position: -5153px 0px; } - .iti__flag.iti__ua { - height: 14px; - background-position: -5175px 0px; } - .iti__flag.iti__ug { - height: 14px; - background-position: -5197px 0px; } - .iti__flag.iti__um { - height: 11px; - background-position: -5219px 0px; } - .iti__flag.iti__un { - height: 14px; - background-position: -5241px 0px; } - .iti__flag.iti__us { - height: 11px; - background-position: -5263px 0px; } - .iti__flag.iti__uy { - height: 14px; - background-position: -5285px 0px; } - .iti__flag.iti__uz { - height: 10px; - background-position: -5307px 0px; } - .iti__flag.iti__va { - height: 15px; - background-position: -5329px 0px; } - .iti__flag.iti__vc { - height: 14px; - background-position: -5346px 0px; } - .iti__flag.iti__ve { - height: 14px; - background-position: -5368px 0px; } - .iti__flag.iti__vg { - height: 10px; - background-position: -5390px 0px; } - .iti__flag.iti__vi { - height: 14px; - background-position: -5412px 0px; } - .iti__flag.iti__vn { - height: 14px; - background-position: -5434px 0px; } - .iti__flag.iti__vu { - height: 12px; - background-position: -5456px 0px; } - .iti__flag.iti__wf { - height: 14px; - background-position: -5478px 0px; } - .iti__flag.iti__ws { - height: 10px; - background-position: -5500px 0px; } - .iti__flag.iti__xk { - height: 15px; - background-position: -5522px 0px; } - .iti__flag.iti__ye { - height: 14px; - background-position: -5544px 0px; } - .iti__flag.iti__yt { - height: 14px; - background-position: -5566px 0px; } - .iti__flag.iti__za { - height: 14px; - background-position: -5588px 0px; } - .iti__flag.iti__zm { - height: 14px; - background-position: -5610px 0px; } - .iti__flag.iti__zw { - height: 10px; - background-position: -5632px 0px; } - -.iti__flag { - height: 15px; - box-shadow: 0px 0px 1px 0px #888; - background-image: url(/images/vendor/intl-tel-input/build/flags.png?007b2705c0a8f69dfdf6ea1bfa0341c9); - background-repeat: no-repeat; - background-color: #DBDBDB; - background-position: 20px 0; } - @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) { - .iti__flag { - background-image: url(/images/vendor/intl-tel-input/build/flags@2x.png?9d5328fb490cddd43f6698012123404b); } } - -.iti__flag.iti__np { - background-color: transparent; } - -html, body { - height: 100%; -} - -input { - width: 100%; -} - -.hide-scroll::-webkit-scrollbar { display: none; } - -[x-cloak] {display: none; } - -.brand-laravel { - color: var(--brand-laravel); -} - -.brand-alpinejs { - color: var(--brand-alpinejs); -} - -.brand-javascript { - color: var(--brand-javascript); -} - -.brand-typesript { - color: var(--brand-typesript); -} - -.brand-react { - color: var(--brand-react); -} - -.brand-vue-js { - color: var(--brand-vue-js); -} - -.brand-php { - color: var(--brand-php); -} - -.brand-digital-ocean { - color: var(--brand-digital-ocean); -} - -.brand-forge { - color: var(--brand-forge); -} - -.brand-packages { - color: var(--brand-packages); -} - -.brand-outils { - color: var(--brand-outils); -} - -.brand-tailwindcss { - color: var(--brand-tailwindcss); -} - -.brand-design { - color: var(--brand-design); -} - -.brand-open-source { - color: var(--brand-open-source); -} - -.brand-freelance { - color: var(--brand-freelance); -} - -.brand-salaire { - color: var(--brand-salaire); -} - -.brand-projets { - color: var(--brand-projets); -} - -.brand-entrepreneuriat { - color: var(--brand-entrepreneuriat); -} - -.brand-paiement-en-ligne { - color: var(--brand-paiement-en-ligne); -} - -.brand-branding { - color: var(--brand-branding); -} - -.brand-applications { - color: var(--brand-applications); -} - -.brand-event { - color: var(--brand-event); -} - -.brand-tutoriel { - color: var(--brand-tutoriel); -} - -.brand-communaute { - color: var(--brand-communaute); -} - -.brand-astuces { - color: var(--brand-astuces); -} - -.iti { - display: block; -} - -.iti__selected-flag { - padding: 0 10px; -} - -/** Choices.js **/ -.choices { - margin-top: 8px; -} - -.standard .choices__input.choices__input--cloned { - display: none; -} - -.standard .choices__inner { - display: flex !important; - height: 3rem !important; - width: 100% !important; - align-items: center !important; - border-radius: 0.25rem !important; - border-width: 1px !important; - --tw-border-opacity: 1 !important; - border-color: rgba(var(--color-input-border), var(--tw-border-opacity)) !important; - --tw-bg-opacity: 1 !important; - background-color: rgba(var(--color-input-fill), var(--tw-bg-opacity)) !important; - padding: 0.5rem !important; -} - -.standard .choices__list--dropdown { - border-width: 2px !important; - --tw-border-opacity: 1 !important; - border-color: rgba(var(--color-input-border), var(--tw-border-opacity)) !important; -} - -.standard .choices__list--dropdown .choices__list { - border-width: 1px !important; - --tw-border-opacity: 1 !important; - border-color: rgba(var(--color-border), var(--tw-border-opacity)) !important; - --tw-bg-opacity: 1 !important; - background-color: rgba(var(--color-input-fill), var(--tw-bg-opacity)) !important; -} - -.standard .choices__list--single { - padding: 0px !important; -} - -.standard .choices__item { - margin-top: 0px !important; - margin-bottom: 0px !important; - cursor: pointer !important; - border-radius: 0.25rem !important; - border-width: 0px !important; - --tw-bg-opacity: 1 !important; - background-color: rgba(var(--color-footer-fill), var(--tw-bg-opacity)) !important; - padding-left: 0.5rem !important; - padding-right: 0.5rem !important; - padding-top: 0.25rem !important; - padding-bottom: 0.25rem !important; - font-size: 0.875rem !important; - line-height: 1.25rem !important; - --tw-text-opacity: 1 !important; - color: rgba(var(--color-text-base), var(--tw-text-opacity)) !important; -} - -.standard .choices__item.choices__item--choice { - border-radius: 0px !important; - padding-top: 0.5rem !important; - padding-bottom: 0.5rem !important; -} - -.standard .choices__item.choices__item--choice.choices__item--selectable { - border-radius: 0px !important; - --tw-bg-opacity: 1 !important; - background-color: rgba(var(--color-input-fill), var(--tw-bg-opacity)) !important; - padding: 0.5rem !important; - --tw-text-opacity: 1 !important; - color: rgba(var(--color-text-base), var(--tw-text-opacity)) !important; -} - -.standard .choices__item.choices__item--choice.choices__item--selectable:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(var(--color-card-fill), var(--tw-bg-opacity)) !important; -} - -.standard .choices__item.choices__item--selectable { - --tw-border-opacity: 1 !important; - border-color: rgb(34 197 94 / var(--tw-border-opacity)) !important; - --tw-bg-opacity: 1 !important; - background-color: rgb(34 197 94 / var(--tw-bg-opacity)) !important; - --tw-text-opacity: 1 !important; - color: rgb(255 255 255 / var(--tw-text-opacity)) !important; -} - -.standard .choices__item.is-highlighted { - --tw-border-opacity: 1 !important; - border-color: rgb(22 163 74 / var(--tw-border-opacity)) !important; - --tw-bg-opacity: 1 !important; - background-color: rgb(22 163 74 / var(--tw-bg-opacity)) !important; - --tw-text-opacity: 1 !important; - color: rgb(255 255 255 / var(--tw-text-opacity)) !important; -} - -.standard .choices[data-type*='select-one']:after { - border-color: var(--color-input-border) transparent transparent transparent !important; -} - -.standard .choices[data-type*='select-one'] .choices__input { - border-radius: 0px !important; - border-bottom-width: 2px !important; - --tw-border-opacity: 1 !important; - border-color: rgba(var(--color-input-border), var(--tw-border-opacity)) !important; -} - -.standard .choices__item.choices__item--choice.choices__item--selectable.is-highlighted, .standard .choices__item.choices__item--choice.is-selected.choices__item--selectable { - --tw-border-opacity: 1 !important; - border-color: rgb(34 197 94 / var(--tw-border-opacity)) !important; - --tw-bg-opacity: 1 !important; - background-color: rgb(34 197 94 / var(--tw-bg-opacity)) !important; - --tw-text-opacity: 1 !important; - color: rgb(255 255 255 / var(--tw-text-opacity)) !important; -} - -/* - Margin and rounding are personal preferences, - overflow-x-auto is recommended. -*/ -pre { - margin-top: 1rem; - margin-bottom: 1rem; - overflow-x: auto; - border-radius: 0.25rem; - padding: 0 !important; -} - -/* - Add some vertical padding and expand the width - to fill its container. The horizontal padding - comes at the line level so that background - colors extend edge to edge. -*/ -pre code.torchlight { - display: block; - min-width: -webkit-max-content; - min-width: -moz-max-content; - min-width: max-content; - padding: 1rem; - padding-top: 1rem !important; - padding-bottom: 1rem !important; -} - -/* - Horizontal line padding. -*/ -pre code.torchlight .line { - padding-left: 1rem; - padding-right: 1rem; - font-weight: 300; -} - -/* - Push the code away from the line numbers and - summary caret indicators. -*/ -pre code.torchlight .line-number, pre code.torchlight .summary-caret { - margin-right: 1rem; -} - -.torchlight.has-focus-lines .line:not(.line-focus) { - transition: filter 0.35s, opacity 0.35s; - filter: blur(.095rem); - opacity: .65; -} - -.torchlight.has-focus-lines:hover .line:not(.line-focus) { - filter: blur(0px); - opacity: 1; -} - -.torchlight summary:focus { - outline: none; -} - -/* Hide the default markers, as we provide our own */ -.torchlight details > summary::marker, -.torchlight details > summary::-webkit-details-marker { - display: none; -} - -.torchlight details .summary-caret::after { - pointer-events: none; -} - -/* Add spaces to keep everything aligned */ -.torchlight .summary-caret-empty::after, -.torchlight details .summary-caret-middle::after, -.torchlight details .summary-caret-end::after { - content: " "; -} - -/* Show a minus sign when the block is open. */ -.torchlight details[open] .summary-caret-start::after { - content: "-"; -} - -/* And a plus sign when the block is closed. */ -.torchlight details:not([open]) .summary-caret-start::after { - content: "+"; -} - -/* Hide the [...] indicator when open. */ -.torchlight details[open] .summary-hide-when-open { - display: none; -} - -/* Show the [...] indicator when closed. */ -.torchlight details:not([open]) .summary-hide-when-open { - display: inline; - display: initial; -} - -.toc li a { - position: relative; - display: flex; - align-items: center; - border-radius: 0.375rem; - padding-top: 0.375rem; - padding-bottom: 0.375rem; - font-size: 0.875rem; - font-weight: 500; - line-height: 1.25rem; - --tw-text-opacity: 1; - color: rgba(var(--color-text-base), var(--tw-text-opacity)); - transition-property: color, background-color, border-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-text-decoration-color, -webkit-backdrop-filter; - transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter; - transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-text-decoration-color, -webkit-backdrop-filter; - transition-duration: 150ms; - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) -} -.toc li a:hover { - --tw-text-opacity: 1; - color: rgba(var(--color-text-inverted), var(--tw-text-opacity)) -} -.toc li a:focus { - outline: 2px solid transparent; - outline-offset: 2px -} -.toc li > ul > li { - padding-left: 1rem -} -.toc li.active > a { - --tw-text-opacity: 1; - color: rgba(var(--color-text-primary), var(--tw-text-opacity)) -} -.toc li:not(.active) > ul > li.active a { - --tw-text-opacity: 1; - color: rgba(var(--color-text-primary), var(--tw-text-opacity)) -} - -/* Dragula */ -.gu-mirror { - position: fixed !important; - margin: 0 !important; - z-index: 9999 !important; - opacity: 0.8; - -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=80)'; - filter: alpha(opacity=80); -} - -.gu-hide { - display: none !important; -} - -.gu-unselectable { - -webkit-user-select: none !important; - -moz-user-select: none !important; - -ms-user-select: none !important; - user-select: none !important; -} - -.gu-transit { - opacity: 0.2; - -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=20)'; - filter: alpha(opacity=20); -} - -/* Component level reset. Explicitly for item during cloning */ -.media-library, -.media-library *, -.media-library-item * { - all: unset; - position: relative; - box-sizing: border-box; - border-style: solid; - border-width: 0px; -} - -/* `all:unset` for sortable rows in Vue 3 does too much */ -.media-library-sortable .media-library-item { - -webkit-user-drag: element; -} - -.media-library script, .media-library-item script { - display: none; -} - -/* Base */ -.media-library { - --tw-text-opacity: 1; - color: rgba(var(--color-text-inverted-muted), var(--tw-text-opacity)); -} - -/* Order */ -.media-library { - display: grid; - grid-template-areas: - 'errors' - 'items' - 'uploader'; - margin-bottom: 2px; -} - -.media-library-listerrors { - grid-area: errors; - margin-bottom: -2px; -} - -.media-library-items { - grid-area: items; - margin-bottom: -2px; -} - -.media-library-uploader { - grid-area: uploader; - margin-bottom: -2px; -} - -/* When cloning */ -.media-library-item.gu-mirror { - border-width: 2px; - --tw-border-opacity: 1; - border-color: rgba(var(--color-input-border), var(--tw-border-opacity)); - --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1); - --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color); - box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), var(--tw-shadow); - box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), var(--tw-shadow); - box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow); -} - -/* Uploader */ -.media-library-add { - display: flex; -} - -.media-library-replace, .media-library-replace .media-library-dropzone, .media-library-replace .media-library-placeholder { - position: absolute; - top: 0px; - right: 0px; - bottom: 0px; - left: 0px; - width: 100%; - height: 100%; - margin: 0px; -} - -/* Items */ -.media-library-multiple .media-library-items { - display: block; - border-width: 2px; - --tw-border-opacity: 1; - border-color: rgba(var(--color-input-border), var(--tw-border-opacity)); -} - -.media-library-item { - display: flex; - align-items: center; - min-width: 0px; - --tw-bg-opacity: 1; - background-color: rgba(var(--color-card-fill), var(--tw-bg-opacity)); -} - -.media-library-item-row:not(:last-child) { - border-bottom-width: 1px; - --tw-border-opacity: 1; - border-color: rgba(var(--color-input-border), var(--tw-border-opacity)); -} - -.media-library-filled.media-library-sortable .media-library-add .media-library-dropzone:before { - content: ''; -} - -.media-library-row-drag, .media-library-filled.media-library-sortable .media-library-add .media-library-dropzone:before { - align-self: stretch; - flex: none; - display: flex; - flex-direction: column; - align-items: center; - justify-content: center; - width: 2rem; - background-color: rgba(var(--color-card-fill), var(--tw-bg-opacity)); - --tw-bg-opacity: 0.5; - border-right-width: 1px; - --tw-border-opacity: 1; - border-color: rgba(var(--color-input-border), var(--tw-border-opacity)); - cursor: move; - --tw-text-opacity: 1; - color: rgba(var(--color-text-base), var(--tw-text-opacity)); -} - -.media-library-row-drag:hover { - --tw-text-opacity: 1; - color: rgb(34 197 94 / var(--tw-text-opacity)); -} - -.media-library-row-remove { - position: absolute; - right: 0px; - top: 0px; - display: flex; - align-items: center; - justify-content: center; - height: 3rem; - width: 3rem; - --tw-text-opacity: 1; - color: rgba(var(--color-text-base), var(--tw-text-opacity)); - opacity: 0.5; - cursor: pointer; -} - -.media-library-row-remove:hover { - opacity: 1; - transition-property: opacity; - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); - transition-duration: 300ms; -} - -/* Invalid media, aka failed uploads */ -.media-library-listerrors { - display: block; - border-width: 2px; - border-color: rgb(252 165 165 / var(--tw-border-opacity)); - --tw-border-opacity: 0.5; - background-color: rgb(254 202 202 / var(--tw-bg-opacity)); - --tw-bg-opacity: 0.5; - font-size: 0.75rem; - line-height: 1rem; -} - -.media-library-listerror { - display: flex; - align-items: flex-start; -} - -.media-library-listerror:not(:last-child) { - border-bottom-width: 2px; - border-color: rgb(252 165 165 / var(--tw-border-opacity)); - --tw-border-opacity: 0.25; -} - -.media-library-listerror-icon { - align-self: stretch; - padding-top: 0.75rem; - padding-bottom: 0.75rem; - margin-left: 1rem; - margin-right: 1rem; - width: 2rem; - display: flex; - justify-content: center; -} - -.media-library-filled.media-library-sortable .media-library-listerror-icon { - margin-left: 0px; - margin-right: 1rem; - background-color: rgb(254 202 202 / var(--tw-bg-opacity)); - --tw-bg-opacity: 0.5; - border-right-width: 1px; - --tw-border-opacity: 1; - border-color: rgb(254 202 202 / var(--tw-border-opacity)); -} - -.media-library-listerror-content { - flex-grow: 1; - padding-right: 3rem; -} - -.media-library-listerror-title { - --tw-text-opacity: 1; - color: rgb(220 38 38 / var(--tw-text-opacity)); - height: 3rem; - display: flex; - align-items: center; -} - -.media-library-listerror-items { - margin-top: -0.5rem; - border-top-width: 1px; - border-color: rgb(252 165 165 / var(--tw-border-opacity)); - --tw-border-opacity: 0.25; -} - -.media-library-listerror-item { - display: flex; - align-items: center; - padding-top: 0.75rem; - padding-bottom: 0.75rem; -} - -.media-library-listerror-thumb { - flex: none; - width: 1.5rem; - height: 1.5rem; - margin-right: 0.75rem; -} - -.media-library-listerror-thumb:after { - content: ''; - position: absolute; - top: 0px; - right: 0px; - bottom: 0px; - left: 0px; - border-width: 1px; - border-color: rgb(220 38 38 / var(--tw-border-opacity)); - --tw-border-opacity: 0.5; -} - -.media-library-listerror-text { - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; -} - -/* Thumb */ -.media-library-thumb { - position: relative; - flex: none; - width: 4rem; - height: 4rem; - margin: 1rem; -} - -.media-library-single .media-library-thumb { - margin: 0px; - margin-right: 1rem; -} - -.media-library-thumb-img { - width: 100%; - height: 100%; - -o-object-fit: cover; - object-fit: cover; - overflow: hidden; -} - -.media-library-thumb-extension { - width: 100%; - height: 100%; - display: flex; - align-items: center; - justify-content: center; - --tw-bg-opacity: 1; - background-color: rgba(var(--color-card-fill), var(--tw-bg-opacity)); -} - -.media-library-thumb-extension-truncate { - max-width: 100%; - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; - font-weight: 600; - text-transform: uppercase; - --tw-text-opacity: 1; - color: rgba(var(--color-text-base), var(--tw-text-opacity)); - font-size: 0.75rem; - line-height: 1rem; -} - -/* Placeholder */ -.media-library-placeholder { - display: flex; - align-items: center; - justify-content: center; - width: 4rem; - height: calc(4rem - 4px); -} - -.media-library-filled.media-library-sortable .media-library-add .media-library-placeholder { - width: 2rem; - height: 2rem; - margin-left: -2rem; - margin-right: 1rem; -} - -.media-library-multiple.media-library-empty .media-library-add .media-library-placeholder:before { - content: ''; - position: absolute; - top: 50%; - left: 50%; - width: 2.5rem; - height: 2.5rem; - background-color: rgba(var(--color-footer-fill), var(--tw-bg-opacity)); - --tw-bg-opacity: 0.25; - transform: translate(calc(-50% + 3px), calc(-50% + 3px)); -} - -.media-library-multiple.media-library-empty .media-library-add .media-library-placeholder:after { - content: ''; - position: absolute; - top: 50%; - left: 50%; - width: 2.5rem; - height: 2.5rem; - --tw-bg-opacity: 1; - background-color: rgba(var(--color-input-fill), var(--tw-bg-opacity)); - border-width: 1px; - border-color: rgba(var(--color-input-border), var(--tw-border-opacity)); - --tw-border-opacity: 0.25; - transform: translate(-50%, -50%); -} - -.media-library-dropzone:not(.disabled):active .media-library-placeholder, -.media-library-dropzone-drop .media-library-placeholder { - transform: translateY(1px); -} - -/* Help */ -.media-library-help { - text-align: left; - padding-right: 1rem; - font-size: 0.75rem; - line-height: 1rem; - --tw-text-opacity: 1; - color: rgba(var(--color-text-base), var(--tw-text-opacity)); -} - -.media-library-help-clear { - padding-left: 0.5rem; - padding-right: 0.5rem; - opacity: 0.75; - cursor: pointer; -} - -.media-library-help-clear:hover { - opacity: 1; - transition-property: opacity; - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); - transition-duration: 300ms; -} - -/* Dropzone */ -.media-library-dropzone { - -webkit-appearance: none !important; - -moz-appearance: none !important; - appearance: none !important; - display: flex; - align-items: center; - border-width: 2px; - border-color: rgba(var(--color-input-border), var(--tw-border-opacity)); - --tw-border-opacity: 0.5; - transition-property: color, background-color, border-color, fill, stroke, -webkit-text-decoration-color; - transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; - transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, -webkit-text-decoration-color; - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); - transition-duration: 300ms; - flex-grow: 1; - background-color: transparent; -} - -.media-library-dropzone-add { - border-style: dashed; - --tw-bg-opacity: 1; - background-color: rgba(var(--color-card-muted-fill), var(--tw-bg-opacity)); -} - -.media-library-dropzone-replace { - border-style: solid; -} - -.media-library-dropzone:not(.disabled):hover, .media-library-dropzone-drag { - background-color: rgb(134 239 172 / var(--tw-bg-opacity)); - --tw-bg-opacity: 0.25; - border-color: rgb(22 163 74 / var(--tw-border-opacity)); - --tw-border-opacity: 0.25; -} - -.media-library-dropzone:not(.disabled):active, .media-library-dropzone:not(.disabled):focus, .media-library-dropzone-drop { - outline: 2px solid transparent; - outline-offset: 2px; - background-color: rgb(134 239 172 / var(--tw-bg-opacity)); - --tw-bg-opacity: 0.5; - border-color: rgb(22 163 74 / var(--tw-border-opacity)); - --tw-border-opacity: 0.25; -} - -.media-library-dropzone.disabled { - background-color: rgb(252 165 165 / var(--tw-bg-opacity)); - --tw-bg-opacity: 0.25; - border-color: rgb(220 38 38 / var(--tw-border-opacity)); - --tw-border-opacity: 0.25; - cursor: not-allowed; -} - -/* Properties */ -.media-library-properties { - font-size: 0.75rem; - line-height: 1rem; - --tw-text-opacity: 1; - color: rgba(var(--color-text-base), var(--tw-text-opacity)); - flex-grow: 1; - min-width: 0px; - margin-right: 1rem; - margin-top: 1rem; - margin-bottom: 1rem; -} - -.media-library-single .media-library-properties { - margin-top: 0px; - margin-bottom: 0px; -} - -.media-library-properties-fixed { - width: 8rem; - flex-grow: 0; -} - -.media-library-property { - display: block; - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; - --tw-text-opacity: 1; - color: rgba(var(--color-text-base), var(--tw-text-opacity)); -} - -/* Field */ -.media-library-field { - display: block; - overflow: hidden; - margin-top: 0.5rem; - margin-bottom: 0.5rem; -} - -.media-library-field-error { - display: block; - margin-top: 0.25rem; - --tw-text-opacity: 1; - color: rgb(220 38 38 / var(--tw-text-opacity)); -} - -.media-library-label { - display: block; - font-size: 0.75rem; - line-height: 1rem; - --tw-text-opacity: 1; - color: rgba(var(--color-text-base), var(--tw-text-opacity)); - padding-right: 0.5rem; -} - -.media-library-input { - flex: 1 1 0%; - width: 100%; - font-size: 0.75rem; - line-height: 1rem; - --tw-text-opacity: 1; - color: rgba(var(--color-text-inverted), var(--tw-text-opacity)); - border-radius: 0.375rem; - --tw-bg-opacity: 1; - background-color: rgba(var(--color-card-fill), var(--tw-bg-opacity)); - padding-left: 0.5rem; - padding-right: 0.5rem; - padding-top: 0.25rem; - padding-bottom: 0.25rem; - transition-property: color, background-color, border-color, fill, stroke, -webkit-text-decoration-color; - transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; - transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, -webkit-text-decoration-color; - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); - transition-duration: 300ms; -} - -.media-library-input:focus { - outline: 2px solid transparent; - outline-offset: 2px; - --tw-bg-opacity: 1; - background-color: rgb(220 252 231 / var(--tw-bg-opacity)); -} - -/* Rounded buttons */ -.media-library-button { - width: 1.5rem; - height: 1.5rem; - --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1); - --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color); - box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), var(--tw-shadow); - box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), var(--tw-shadow); - box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow); - display: flex; - align-items: center; - justify-content: center; - border-radius: 9999px; - line-height: 1; - transition-property: all; - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); - transition-duration: 150ms; - border-width: 1px; - border-color: rgba(var(--color-input-border), var(--tw-border-opacity)); - --tw-border-opacity: 0.75; - z-index: 10; -} - -.media-library-sortable .media-library-button { - width: 1.25rem; - height: 1.25rem; -} - -.media-library-button-info { - --tw-bg-opacity: 1; - background-color: rgba(var(--color-card-fill), var(--tw-bg-opacity)); - --tw-text-opacity: 1; - color: rgb(34 197 94 / var(--tw-text-opacity)); -} - -.media-library-button-warning { - --tw-bg-opacity: 1; - background-color: rgba(var(--color-card-fill), var(--tw-bg-opacity)); - --tw-text-opacity: 1; - color: rgb(239 68 68 / var(--tw-text-opacity)); -} - -.media-library-button-error { - --tw-bg-opacity: 1; - background-color: rgb(239 68 68 / var(--tw-bg-opacity)); - --tw-text-opacity: 1; - color: rgba(var(--color-text-inverted), var(--tw-text-opacity)); - --tw-border-opacity: 1; - border-color: rgb(248 113 113 / var(--tw-border-opacity)); -} - -.media-library-button-success { - --tw-bg-opacity: 1; - background-color: rgb(34 197 94 / var(--tw-bg-opacity)); - --tw-text-opacity: 1; - color: rgba(var(--color-text-inverted), var(--tw-text-opacity)); -} - -.media-library-replace .media-library-button { - opacity: 0; -} - -.media-library-dropzone:not(.disabled):hover .media-library-placeholder .media-library-button, .media-library-dropzone:not(.disabled):focus .media-library-placeholder .media-library-button, .media-library-dropzone-drag + .media-library-placeholder .media-library-button { - opacity: 1; - --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1); - --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color); - box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), var(--tw-shadow); - box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), var(--tw-shadow); - box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow); -} - -.media-library-dropzone:not(.disabled):active .media-library-placeholder .media-library-button, .media-library-dropzone-drop .media-library-placeholder .media-library-button { - opacity: 1; - --tw-shadow: inset 0 2px 4px 0 rgb(0 0 0 / 0.05); - --tw-shadow-colored: inset 0 2px 4px 0 var(--tw-shadow-color); - box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), var(--tw-shadow); - box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), var(--tw-shadow); - box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow); -} - -/* Icon */ -.media-library-icon { - width: 1.25rem; - height: 1.25rem; -} - -.media-library-icon-fill { - fill: currentColor; -} - -/* Progress */ -.media-library-progress-wrap { - position: absolute; - top: 0px; - right: 0px; - bottom: 0px; - left: 0px; - width: 100%; - height: 100%; - padding-left: 0.75rem; - padding-right: 0.75rem; - display: flex; - align-items: center; - justify-content: center; - background-color: rgba(var(--color-card-fill), var(--tw-bg-opacity)); - --tw-bg-opacity: 0.5; - z-index: 10; - opacity: 0; - transition-property: opacity; - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); - transition-duration: 300ms; - pointer-events: none; -} - -.media-library-progress-wrap-loading { - opacity: 1; -} - -.media-library-progress { - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; - height: 0.25rem; - width: 100%; - max-width: 28rem; - --tw-bg-opacity: 1; - background-color: rgba(var(--color-card-fill), var(--tw-bg-opacity)); - border-radius: 9999px; - --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1); - --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color); - box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), var(--tw-shadow); - box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), var(--tw-shadow); - box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow); -} - -.media-library progress::-webkit-progress-bar { - -webkit-appearance: none; - appearance: none; - border-radius: 9999px; - --tw-bg-opacity: 1; - background-color: rgba(var(--color-card-fill), var(--tw-bg-opacity)); -} - -.media-library progress::-moz-progress-bar { - height: 100%; - --tw-bg-opacity: 1; - background-color: rgb(34 197 94 / var(--tw-bg-opacity)); -} - -.media-library progress::-webkit-progress-value { - height: 100%; - --tw-bg-opacity: 1; - background-color: rgb(34 197 94 / var(--tw-bg-opacity)); -} - -/* Text styles */ -.media-library-text-separator { - opacity: 0.5; - padding-left: 0.25rem; - padding-right: 0.25rem; -} - -.media-library-text-success { - --tw-text-opacity: 1; - color: rgb(22 163 74 / var(--tw-text-opacity)); -} - -.media-library-text-error { - --tw-text-opacity: 1; - color: rgb(220 38 38 / var(--tw-text-opacity)); -} - -.media-library-text-link { - -webkit-text-decoration-line: underline; - text-decoration-line: underline; - cursor: pointer; -} - -/* Ported utilities */ -.media-library-hidden { - display: none; -} - -.media-library-block { - display: block; -} - -/* RTL Support */ -[dir='rtl'] .media-library-row-remove { - right: auto; - left: 0px; -} - -[dir='rtl'] .media-library-properties { - margin-right: 0px; - margin-left: 1rem; -} - -[dir='rtl'] .media-library-filled.media-library-sortable .media-library-add .media-library-placeholder { - margin-right: -2rem; - margin-left: 1rem; -} - -[dir='rtl'] .media-library-row-drag, [dir='rtl'] .media-library-filled.media-library-sortable .media-library-add .media-library-dropzone:before { - border-right-width: 0px; - border-left-width: 1px; -} - -[dir='rtl'] .media-library-help { - text-align: right; - padding-right: 0px; - padding-left: 1rem; -} - -[dir='rtl'] .media-library-listerror-content { - padding-right: 0px; - padding-left: 3rem; -} - -[dir='rtl'] .media-library-filled.media-library-sortable .media-library-listerror-icon { - margin-right: 0px; - margin-left: 1rem; - border-right-width: 0px; - border-left-width: 1px; -} - -/* -! tailwindcss v3.0.8 | MIT License | https://tailwindcss.com -*//* -1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4) -2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116) -*/ - -*, -::before, -::after { - box-sizing: border-box; /* 1 */ - border-width: 0; /* 2 */ - border-style: solid; /* 2 */ - border-color: currentColor; /* 2 */ -} - -::before, -::after { - --tw-content: ''; -} - -/* -1. Use a consistent sensible line-height in all browsers. -2. Prevent adjustments of font size after orientation changes in iOS. -3. Use a more readable tab size. -4. Use the user's configured `sans` font-family by default. -*/ - -html { - line-height: 1.5; /* 1 */ - -webkit-text-size-adjust: 100%; /* 2 */ - -moz-tab-size: 4; /* 3 */ - -o-tab-size: 4; - tab-size: 4; /* 3 */ - font-family: Inter var, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */ -} - -/* -1. Remove the margin in all browsers. -2. Inherit line-height from `html` so users can set them as a class directly on the `html` element. -*/ - -body { - margin: 0; /* 1 */ - line-height: inherit; /* 2 */ -} - -/* -1. Add the correct height in Firefox. -2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655) -3. Ensure horizontal rules are visible by default. -*/ - -hr { - height: 0; /* 1 */ - color: inherit; /* 2 */ - border-top-width: 1px; /* 3 */ -} - -/* -Add the correct text decoration in Chrome, Edge, and Safari. -*/ - -abbr:where([title]) { - -webkit-text-decoration: underline dotted; - text-decoration: underline dotted; -} - -/* -Remove the default font size and weight for headings. -*/ - -h1, -h2, -h3, -h4, -h5, -h6 { - font-size: inherit; - font-weight: inherit; -} - -/* -Reset links to optimize for opt-in styling instead of opt-out. -*/ - -a { - color: inherit; - text-decoration: inherit; -} - -/* -Add the correct font weight in Edge and Safari. -*/ - -b, -strong { - font-weight: bolder; -} - -/* -1. Use the user's configured `mono` font family by default. -2. Correct the odd `em` font sizing in all browsers. -*/ - -code, -kbd, -samp, -pre { - font-family: Operator Mono, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */ - font-size: 1em; /* 2 */ -} - -/* -Add the correct font size in all browsers. -*/ - -small { - font-size: 80%; -} - -/* -Prevent `sub` and `sup` elements from affecting the line height in all browsers. -*/ - -sub, -sup { - font-size: 75%; - line-height: 0; - position: relative; - vertical-align: baseline; -} - -sub { - bottom: -0.25em; -} - -sup { - top: -0.5em; -} - -/* -1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297) -2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016) -3. Remove gaps between table borders by default. -*/ - -table { - text-indent: 0; /* 1 */ - border-color: inherit; /* 2 */ - border-collapse: collapse; /* 3 */ -} - -/* -1. Change the font styles in all browsers. -2. Remove the margin in Firefox and Safari. -3. Remove default padding in all browsers. -*/ - -button, -input, -optgroup, -select, -textarea { - font-family: inherit; /* 1 */ - font-size: 100%; /* 1 */ - line-height: inherit; /* 1 */ - color: inherit; /* 1 */ - margin: 0; /* 2 */ - padding: 0; /* 3 */ -} - -/* -Remove the inheritance of text transform in Edge and Firefox. -*/ - -button, -select { - text-transform: none; -} - -/* -1. Correct the inability to style clickable types in iOS and Safari. -2. Remove default button styles. -*/ - -button, -[type='button'], -[type='reset'], -[type='submit'] { - -webkit-appearance: button; /* 1 */ - background-color: transparent; /* 2 */ - background-image: none; /* 2 */ -} - -/* -Use the modern Firefox focus style for all focusable elements. -*/ - -:-moz-focusring { - outline: auto; -} - -/* -Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737) -*/ - -:-moz-ui-invalid { - box-shadow: none; -} - -/* -Add the correct vertical alignment in Chrome and Firefox. -*/ - -progress { - vertical-align: baseline; -} - -/* -Correct the cursor style of increment and decrement buttons in Safari. -*/ - -::-webkit-inner-spin-button, -::-webkit-outer-spin-button { - height: auto; -} - -/* -1. Correct the odd appearance in Chrome and Safari. -2. Correct the outline style in Safari. -*/ - -[type='search'] { - -webkit-appearance: textfield; /* 1 */ - outline-offset: -2px; /* 2 */ -} - -/* -Remove the inner padding in Chrome and Safari on macOS. -*/ - -::-webkit-search-decoration { - -webkit-appearance: none; -} - -/* -1. Correct the inability to style clickable types in iOS and Safari. -2. Change font properties to `inherit` in Safari. -*/ - -::-webkit-file-upload-button { - -webkit-appearance: button; /* 1 */ - font: inherit; /* 2 */ -} - -/* -Add the correct display in Chrome and Safari. -*/ - -summary { - display: list-item; -} - -/* -Removes the default spacing and border for appropriate elements. -*/ - -blockquote, -dl, -dd, -h1, -h2, -h3, -h4, -h5, -h6, -hr, -figure, -p, -pre { - margin: 0; -} - -fieldset { - margin: 0; - padding: 0; -} - -legend { - padding: 0; -} - -ol, -ul, -menu { - list-style: none; - margin: 0; - padding: 0; -} - -/* -Prevent resizing textareas horizontally by default. -*/ - -textarea { - resize: vertical; -} - -/* -1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300) -2. Set the default placeholder color to the user's configured gray 400 color. -*/ - -input::-moz-placeholder, textarea::-moz-placeholder { - opacity: 1; /* 1 */ - color: #9ca3af; /* 2 */ -} - -input:-ms-input-placeholder, textarea:-ms-input-placeholder { - opacity: 1; /* 1 */ - color: #9ca3af; /* 2 */ -} - -input::placeholder, -textarea::placeholder { - opacity: 1; /* 1 */ - color: #9ca3af; /* 2 */ -} - -/* -Set the default cursor for buttons. -*/ - -button, -[role="button"] { - cursor: pointer; -} - -/* -Make sure disabled buttons don't get the pointer cursor. -*/ -:disabled { - cursor: default; -} - -/* -1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14) -2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210) - This can trigger a poorly considered lint error in some tools but is included by design. -*/ - -img, -svg, -video, -canvas, -audio, -iframe, -embed, -object { - display: block; /* 1 */ - vertical-align: middle; /* 2 */ -} - -/* -Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14) -*/ - -img, -video { - max-width: 100%; - height: auto; -} - -/* -Ensure the default browser behavior of the `hidden` attribute. -*/ - -[hidden] { - display: none; -} - -[type='text'],[type='email'],[type='url'],[type='password'],[type='number'],[type='date'],[type='datetime-local'],[type='month'],[type='search'],[type='tel'],[type='time'],[type='week'],[multiple],textarea,select { - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; - background-color: #fff; - border-color: #6b7280; - border-width: 1px; - border-radius: 0px; - padding-top: 0.5rem; - padding-right: 0.75rem; - padding-bottom: 0.5rem; - padding-left: 0.75rem; - font-size: 1rem; - line-height: 1.5rem; - --tw-shadow: 0 0 rgba(0,0,0,0); -} - -[type='text']:focus, [type='email']:focus, [type='url']:focus, [type='password']:focus, [type='number']:focus, [type='date']:focus, [type='datetime-local']:focus, [type='month']:focus, [type='search']:focus, [type='tel']:focus, [type='time']:focus, [type='week']:focus, [multiple]:focus, textarea:focus, select:focus { - outline: 2px solid transparent; - outline-offset: 2px; - --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/); - --tw-ring-offset-width: 0px; - --tw-ring-offset-color: #fff; - --tw-ring-color: #2563eb; - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); - border-color: #2563eb; -} - -input::-moz-placeholder, textarea::-moz-placeholder { - color: #6b7280; - opacity: 1; -} - -input:-ms-input-placeholder, textarea:-ms-input-placeholder { - color: #6b7280; - opacity: 1; -} - -input::placeholder,textarea::placeholder { - color: #6b7280; - opacity: 1; -} - -::-webkit-datetime-edit-fields-wrapper { - padding: 0; -} - -::-webkit-date-and-time-value { - min-height: 1.5em; -} - -select { - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e"); - background-position: right 0.5rem center; - background-repeat: no-repeat; - background-size: 1.5em 1.5em; - padding-right: 2.5rem; - -webkit-print-color-adjust: exact; - color-adjust: exact; -} - -[multiple] { - background-image: none; - background-image: initial; - background-position: 0 0; - background-position: initial; - background-repeat: unset; - background-size: auto auto; - background-size: initial; - padding-right: 0.75rem; - -webkit-print-color-adjust: unset; - color-adjust: unset; -} - -[type='checkbox'],[type='radio'] { - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; - padding: 0; - -webkit-print-color-adjust: exact; - color-adjust: exact; - display: inline-block; - vertical-align: middle; - background-origin: border-box; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - flex-shrink: 0; - height: 1rem; - width: 1rem; - color: #2563eb; - background-color: #fff; - border-color: #6b7280; - border-width: 1px; - --tw-shadow: 0 0 rgba(0,0,0,0); -} - -[type='checkbox'] { - border-radius: 0px; -} - -[type='radio'] { - border-radius: 100%; -} - -[type='checkbox']:focus,[type='radio']:focus { - outline: 2px solid transparent; - outline-offset: 2px; - --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/); - --tw-ring-offset-width: 2px; - --tw-ring-offset-color: #fff; - --tw-ring-color: #2563eb; - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); -} - -[type='checkbox']:checked,[type='radio']:checked { - border-color: transparent; - background-color: currentColor; - background-size: 100% 100%; - background-position: center; - background-repeat: no-repeat; -} - -[type='checkbox']:checked { - background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e"); -} - -[type='radio']:checked { - background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e"); -} - -[type='checkbox']:checked:hover,[type='checkbox']:checked:focus,[type='radio']:checked:hover,[type='radio']:checked:focus { - border-color: transparent; - background-color: currentColor; -} - -[type='checkbox']:indeterminate { - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3e%3c/svg%3e"); - border-color: transparent; - background-color: currentColor; - background-size: 100% 100%; - background-position: center; - background-repeat: no-repeat; -} - -[type='checkbox']:indeterminate:hover,[type='checkbox']:indeterminate:focus { - border-color: transparent; - background-color: currentColor; -} - -[type='file'] { - background: unset; - border-color: inherit; - border-width: 0; - border-radius: 0; - padding: 0; - font-size: unset; - line-height: inherit; -} - -[type='file']:focus { - outline: 1px auto -webkit-focus-ring-color; -} - :root { - --color-text-primary: 5, 150, 105; - --color-text-primary-hover: 16, 185, 129; - --color-text-link-menu: 107, 114, 128; - --color-text-link-menu-hover: 17, 24, 39; - --color-text-base: 107, 114, 128; - --color-text-muted: 156, 163, 175; - --color-text-inverted: 17, 24, 39; - --color-text-inverted-muted: 31, 41, 55; - - --color-link-fill: 243, 244, 246; - --color-menu-fill: 255, 255, 255; - --color-body-fill: 249, 250, 251; - --color-footer-fill: var(--color-menu-fill); - --color-footer-light-fill: var(--color-body-fill); - --color-input-fill: var(--color-menu-fill); - --color-button-default: var(--color-menu-fill); - --color-card-fill: var(--color-menu-fill); - --color-card-gray: 243, 244, 246; - --color-card-muted-fill: var(--color-body-fill); - - --color-input-border: 209, 213, 219; - --color-divide: 229, 231, 235; - --color-divide-light: 243, 244, 246; - --color-border: var(--color-divide); - --color-border-light: var(--color-divide-light); - } - - .theme-dark { - --color-text-primary: 5, 150, 105; - --color-text-primary-hover: 16, 185, 129; - --color-text-link-menu: 209, 213, 219; - --color-text-link-menu-hover: 255, 255, 255; - --color-text-base: 181, 181, 189; - --color-text-muted: 107, 114, 128; - --color-text-inverted: 255, 255, 255; - --color-text-inverted-muted: 156, 163, 175; - - --color-link-fill: 55, 65, 81; - --color-menu-fill: 22, 27, 34; - --color-body-fill: 13, 17, 23; - --color-footer-fill: var(--color-menu-fill); - --color-footer-light-fill: var(--color-footer-fill); - --color-input-fill: 31, 41, 55; - --color-button-default: 55, 65, 81; - --color-card-fill: 22, 27, 34; - --color-card-gray: var(--color-menu-fill); - --color-card-muted-fill: 17, 22, 29; - - --color-input-border: 31, 41, 55; - --color-divide: 55, 65, 81; - --color-divide-light: 55, 65, 81; - --color-border: 55, 65, 81; - --color-border-light: 55, 65, 81; - } -*, ::before, ::after { - --tw-translate-x: 0; - --tw-translate-y: 0; - --tw-rotate: 0; - --tw-skew-x: 0; - --tw-skew-y: 0; - --tw-scale-x: 1; - --tw-scale-y: 1; - --tw-transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); - --tw-border-opacity: 1; - border-color: rgb(229 231 235 / var(--tw-border-opacity)); - --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/); - --tw-ring-offset-width: 0px; - --tw-ring-offset-color: #fff; - --tw-ring-color: rgb(59 130 246 / 0.5); - --tw-ring-offset-shadow: 0 0 rgba(0,0,0,0); - --tw-ring-shadow: 0 0 rgba(0,0,0,0); - --tw-shadow: 0 0 rgba(0,0,0,0); - --tw-shadow-colored: 0 0 rgba(0,0,0,0); - --tw-blur: var(--tw-empty,/*!*/ /*!*/); - --tw-brightness: var(--tw-empty,/*!*/ /*!*/); - --tw-contrast: var(--tw-empty,/*!*/ /*!*/); - --tw-grayscale: var(--tw-empty,/*!*/ /*!*/); - --tw-hue-rotate: var(--tw-empty,/*!*/ /*!*/); - --tw-invert: var(--tw-empty,/*!*/ /*!*/); - --tw-saturate: var(--tw-empty,/*!*/ /*!*/); - --tw-sepia: var(--tw-empty,/*!*/ /*!*/); - --tw-drop-shadow: var(--tw-empty,/*!*/ /*!*/); - --tw-filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow); - --tw-backdrop-blur: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-brightness: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-contrast: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-grayscale: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-hue-rotate: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-invert: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-opacity: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-saturate: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-sepia: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia); -} -.aspect-w-4 { - position: relative; - padding-bottom: calc(var(--tw-aspect-h) / var(--tw-aspect-w) * 100%); - --tw-aspect-w: 4; -} -.aspect-w-4 > * { - position: absolute; - height: 100%; - width: 100%; - top: 0; - right: 0; - bottom: 0; - left: 0; -} -.aspect-h-2 { - --tw-aspect-h: 2; -} -.aspect-w-3 { - position: relative; - padding-bottom: calc(var(--tw-aspect-h) / var(--tw-aspect-w) * 100%); - --tw-aspect-w: 3; -} -.aspect-w-3 > * { - position: absolute; - height: 100%; - width: 100%; - top: 0; - right: 0; - bottom: 0; - left: 0; -} -.prose { - color: rgb(var(--color-text-base)); - max-width: 65ch; -} -.prose :where([class~="lead"]):not(:where([class~="not-prose"] *)) { - color: var(--tw-prose-lead); - font-size: 1.25em; - line-height: 1.6; - margin-top: 1.2em; - margin-bottom: 1.2em; -} -.prose a { - color: rgb(var(--color-text-primary)); - text-decoration: none; - font-weight: 500; -} -:where(.prose a:hover):not(:where([class~="not-prose"] *)) { - color: rgb(var(--color-text-primary-hover)); -} -.prose :where(strong):not(:where([class~="not-prose"] *)) { - color: var(--tw-prose-bold); - font-weight: 600; -} -.prose :where(ol):not(:where([class~="not-prose"] *)) { - list-style-type: decimal; - padding-left: 1.625em; -} -.prose :where(ol[type="A"]):not(:where([class~="not-prose"] *)) { - list-style-type: upper-alpha; -} -.prose :where(ol[type="a"]):not(:where([class~="not-prose"] *)) { - list-style-type: lower-alpha; -} -.prose :where(ol[type="A" s]):not(:where([class~="not-prose"] *)) { - list-style-type: upper-alpha; -} -.prose :where(ol[type="a" s]):not(:where([class~="not-prose"] *)) { - list-style-type: lower-alpha; -} -.prose :where(ol[type="I"]):not(:where([class~="not-prose"] *)) { - list-style-type: upper-roman; -} -.prose :where(ol[type="i"]):not(:where([class~="not-prose"] *)) { - list-style-type: lower-roman; -} -.prose :where(ol[type="I" s]):not(:where([class~="not-prose"] *)) { - list-style-type: upper-roman; -} -.prose :where(ol[type="i" s]):not(:where([class~="not-prose"] *)) { - list-style-type: lower-roman; -} -.prose :where(ol[type="1"]):not(:where([class~="not-prose"] *)) { - list-style-type: decimal; -} -.prose :where(ul):not(:where([class~="not-prose"] *)) { - list-style-type: disc; - padding-left: 1.625em; -} -.prose :where(ol > li):not(:where([class~="not-prose"] *))::marker { - font-weight: 400; - color: var(--tw-prose-counters); -} -.prose :where(ul > li):not(:where([class~="not-prose"] *))::marker { - color: var(--tw-prose-bullets); -} -.prose :where(hr):not(:where([class~="not-prose"] *)) { - border-color: rgb(var(--color-border)); - border-top-width: 1px; - margin-top: 3em; - margin-bottom: 3em; -} -.prose :where(blockquote):not(:where([class~="not-prose"] *)) { - font-weight: 500; - font-style: italic; - color: rgb(var(--color-text-inverted)); - border-left-width: 0.25rem; - border-left-color: var(--tw-prose-quote-borders); - quotes: "\201C""\201D""\2018""\2019"; - margin-top: 1.6em; - margin-bottom: 1.6em; - padding-left: 1em; -} -.prose :where(blockquote p:first-of-type):not(:where([class~="not-prose"] *))::before { - content: open-quote; -} -.prose :where(blockquote p:last-of-type):not(:where([class~="not-prose"] *))::after { - content: close-quote; -} -.prose :where(h1):not(:where([class~="not-prose"] *)) { - color: var(--tw-prose-headings); - font-weight: 800; - font-size: 2.25em; - margin-top: 0; - margin-bottom: 0.8888889em; - line-height: 1.1111111; -} -.prose :where(h1 strong):not(:where([class~="not-prose"] *)) { - font-weight: 900; -} -.prose :where(h2):not(:where([class~="not-prose"] *)) { - color: var(--tw-prose-headings); - font-weight: 700; - font-size: 1.5em; - margin-top: 2em; - margin-bottom: 1em; - line-height: 1.3333333; -} -.prose :where(h2 strong):not(:where([class~="not-prose"] *)) { - font-weight: 800; -} -.prose :where(h3):not(:where([class~="not-prose"] *)) { - color: var(--tw-prose-headings); - font-weight: 600; - font-size: 1.25em; - margin-top: 1.6em; - margin-bottom: 0.6em; - line-height: 1.6; -} -.prose :where(h3 strong):not(:where([class~="not-prose"] *)) { - font-weight: 700; -} -.prose :where(h4):not(:where([class~="not-prose"] *)) { - color: var(--tw-prose-headings); - font-weight: 600; - margin-top: 1.5em; - margin-bottom: 0.5em; - line-height: 1.5; -} -.prose :where(h4 strong):not(:where([class~="not-prose"] *)) { - font-weight: 700; -} -.prose :where(figure > *):not(:where([class~="not-prose"] *)) { - margin-top: 0; - margin-bottom: 0; -} -.prose :where(figcaption):not(:where([class~="not-prose"] *)) { - color: var(--tw-prose-captions); - font-size: 0.875em; - line-height: 1.4285714; - margin-top: 0.8571429em; -} -.prose :where(code):not(:where([class~="not-prose"] *)) { - color: var(--tw-prose-code); - font-weight: 600; - font-size: 0.875em; -} -.prose :where(code):not(:where([class~="not-prose"] *))::before { - content: "`"; -} -.prose :where(code):not(:where([class~="not-prose"] *))::after { - content: "`"; -} -.prose :where(a code):not(:where([class~="not-prose"] *)) { - color: var(--tw-prose-links); -} -.prose :where(pre):not(:where([class~="not-prose"] *)) { - color: var(--tw-prose-pre-code); - background-color: var(--tw-prose-pre-bg); - overflow-x: auto; - font-weight: 400; - font-size: 0.875em; - line-height: 1.7142857; - margin-top: 1.7142857em; - margin-bottom: 1.7142857em; - border-radius: 0.375rem; - padding-top: 0.8571429em; - padding-right: 1.1428571em; - padding-bottom: 0.8571429em; - padding-left: 1.1428571em; -} -.prose :where(pre code):not(:where([class~="not-prose"] *)) { - background-color: transparent; - border-width: 0; - border-radius: 0; - padding: 0; - font-weight: inherit; - color: inherit; - font-size: inherit; - font-family: inherit; - line-height: inherit; -} -.prose :where(pre code):not(:where([class~="not-prose"] *))::before { - content: none; -} -.prose :where(pre code):not(:where([class~="not-prose"] *))::after { - content: none; -} -.prose :where(table):not(:where([class~="not-prose"] *)) { - width: 100%; - table-layout: auto; - text-align: left; - margin-top: 2em; - margin-bottom: 2em; - font-size: 0.875em; - line-height: 1.7142857; -} -.prose :where(thead):not(:where([class~="not-prose"] *)) { - border-bottom-width: 1px; - border-bottom-color: var(--tw-prose-th-borders); -} -.prose :where(thead th):not(:where([class~="not-prose"] *)) { - color: var(--tw-prose-headings); - font-weight: 600; - vertical-align: bottom; - padding-right: 0.5714286em; - padding-bottom: 0.5714286em; - padding-left: 0.5714286em; -} -.prose :where(tbody tr):not(:where([class~="not-prose"] *)) { - border-bottom-width: 1px; - border-bottom-color: var(--tw-prose-td-borders); -} -.prose :where(tbody tr:last-child):not(:where([class~="not-prose"] *)) { - border-bottom-width: 0; -} -.prose :where(tbody td):not(:where([class~="not-prose"] *)) { - vertical-align: baseline; - padding-top: 0.5714286em; - padding-right: 0.5714286em; - padding-bottom: 0.5714286em; - padding-left: 0.5714286em; -} -.prose { - --tw-prose-body: #374151; - --tw-prose-headings: #111827; - --tw-prose-lead: #4b5563; - --tw-prose-links: #111827; - --tw-prose-bold: #111827; - --tw-prose-counters: #6b7280; - --tw-prose-bullets: #d1d5db; - --tw-prose-hr: #e5e7eb; - --tw-prose-quotes: #111827; - --tw-prose-quote-borders: #e5e7eb; - --tw-prose-captions: #6b7280; - --tw-prose-code: #111827; - --tw-prose-pre-code: #e5e7eb; - --tw-prose-pre-bg: #1f2937; - --tw-prose-th-borders: #d1d5db; - --tw-prose-td-borders: #e5e7eb; - --tw-prose-invert-body: #d1d5db; - --tw-prose-invert-headings: #fff; - --tw-prose-invert-lead: #9ca3af; - --tw-prose-invert-links: #fff; - --tw-prose-invert-bold: #fff; - --tw-prose-invert-counters: #9ca3af; - --tw-prose-invert-bullets: #4b5563; - --tw-prose-invert-hr: #374151; - --tw-prose-invert-quotes: #f3f4f6; - --tw-prose-invert-quote-borders: #374151; - --tw-prose-invert-captions: #9ca3af; - --tw-prose-invert-code: #fff; - --tw-prose-invert-pre-code: #d1d5db; - --tw-prose-invert-pre-bg: rgb(0 0 0 / 50%); - --tw-prose-invert-th-borders: #4b5563; - --tw-prose-invert-td-borders: #374151; - font-size: 1rem; - line-height: 1.75; -} -.prose :where(p):not(:where([class~="not-prose"] *)) { - margin-top: 1.25em; - margin-bottom: 1.25em; - font-weight: 300; -} -.prose :where(img):not(:where([class~="not-prose"] *)) { - margin-top: 2em; - margin-bottom: 2em; - border-radius: 0.5rem; -} -.prose :where(video):not(:where([class~="not-prose"] *)) { - margin-top: 2em; - margin-bottom: 2em; -} -.prose :where(figure):not(:where([class~="not-prose"] *)) { - margin-top: 2em; - margin-bottom: 2em; -} -.prose :where(h2 code):not(:where([class~="not-prose"] *)) { - font-size: 0.875em; -} -.prose :where(h3 code):not(:where([class~="not-prose"] *)) { - font-size: 0.9em; -} -.prose :where(li):not(:where([class~="not-prose"] *)) { - margin-top: 0.5em; - margin-bottom: 0.5em; -} -.prose :where(ol > li):not(:where([class~="not-prose"] *)) { - padding-left: 0.375em; -} -.prose :where(ul > li):not(:where([class~="not-prose"] *)) { - padding-left: 0.375em; -} -.prose > :where(ul > li p):not(:where([class~="not-prose"] *)) { - margin-top: 0.75em; - margin-bottom: 0.75em; -} -.prose > :where(ul > li > *:first-child):not(:where([class~="not-prose"] *)) { - margin-top: 1.25em; -} -.prose > :where(ul > li > *:last-child):not(:where([class~="not-prose"] *)) { - margin-bottom: 1.25em; -} -.prose > :where(ol > li > *:first-child):not(:where([class~="not-prose"] *)) { - margin-top: 1.25em; -} -.prose > :where(ol > li > *:last-child):not(:where([class~="not-prose"] *)) { - margin-bottom: 1.25em; -} -.prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"] *)) { - margin-top: 0.75em; - margin-bottom: 0.75em; -} -.prose :where(hr + *):not(:where([class~="not-prose"] *)) { - margin-top: 0; -} -.prose :where(h2 + *):not(:where([class~="not-prose"] *)) { - margin-top: 0; -} -.prose :where(h3 + *):not(:where([class~="not-prose"] *)) { - margin-top: 0; -} -.prose :where(h4 + *):not(:where([class~="not-prose"] *)) { - margin-top: 0; -} -.prose :where(thead th:first-child):not(:where([class~="not-prose"] *)) { - padding-left: 0; -} -.prose :where(thead th:last-child):not(:where([class~="not-prose"] *)) { - padding-right: 0; -} -.prose :where(tbody td:first-child):not(:where([class~="not-prose"] *)) { - padding-left: 0; -} -.prose :where(tbody td:last-child):not(:where([class~="not-prose"] *)) { - padding-right: 0; -} -.prose > :where(:first-child):not(:where([class~="not-prose"] *)) { - margin-top: 0; -} -.prose > :where(:last-child):not(:where([class~="not-prose"] *)) { - margin-bottom: 0; -} -.prose :where(h1, h2, h3, h4):not(:where([class~="not-prose"] *)) { - color: rgb(var(--color-text-inverted)); - font-family: 'Inter var', serif; -} -.prose :where(li strong, strong):not(:where([class~="not-prose"] *)) { - color: rgb(var(--color-text-inverted-muted)); - font-weight: 400; -} -.prose :where(p > code, code):not(:where([class~="not-prose"] *)) { - display: inline-flex; - align-items: center; - border-radius: .375rem; - font-size: .875rem; - line-height: 1.25rem; - font-weight: 500; - padding: .125rem .625rem; - color: #065f46; - background-color: #d1fae5; -} -.prose-sm { - font-size: 0.875rem; - line-height: 1.7142857; -} -.prose-sm :where(p):not(:where([class~="not-prose"] *)) { - margin-top: 1.1428571em; - margin-bottom: 1.1428571em; -} -.prose-sm :where([class~="lead"]):not(:where([class~="not-prose"] *)) { - font-size: 1.2857143em; - line-height: 1.5555556; - margin-top: 0.8888889em; - margin-bottom: 0.8888889em; -} -.prose-sm :where(blockquote):not(:where([class~="not-prose"] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - padding-left: 1.1111111em; -} -.prose-sm :where(h1):not(:where([class~="not-prose"] *)) { - font-size: 2.1428571em; - margin-top: 0; - margin-bottom: 0.8em; - line-height: 1.2; -} -.prose-sm :where(h2):not(:where([class~="not-prose"] *)) { - font-size: 1.4285714em; - margin-top: 1.6em; - margin-bottom: 0.8em; - line-height: 1.4; -} -.prose-sm :where(h3):not(:where([class~="not-prose"] *)) { - font-size: 1.2857143em; - margin-top: 1.5555556em; - margin-bottom: 0.4444444em; - line-height: 1.5555556; -} -.prose-sm :where(h4):not(:where([class~="not-prose"] *)) { - margin-top: 1.4285714em; - margin-bottom: 0.5714286em; - line-height: 1.4285714; -} -.prose-sm :where(img):not(:where([class~="not-prose"] *)) { - margin-top: 1.7142857em; - margin-bottom: 1.7142857em; -} -.prose-sm :where(video):not(:where([class~="not-prose"] *)) { - margin-top: 1.7142857em; - margin-bottom: 1.7142857em; -} -.prose-sm :where(figure):not(:where([class~="not-prose"] *)) { - margin-top: 1.7142857em; - margin-bottom: 1.7142857em; -} -.prose-sm :where(figure > *):not(:where([class~="not-prose"] *)) { - margin-top: 0; - margin-bottom: 0; -} -.prose-sm :where(figcaption):not(:where([class~="not-prose"] *)) { - font-size: 0.8571429em; - line-height: 1.3333333; - margin-top: 0.6666667em; -} -.prose-sm :where(code):not(:where([class~="not-prose"] *)) { - font-size: 0.8571429em; -} -.prose-sm :where(h2 code):not(:where([class~="not-prose"] *)) { - font-size: 0.9em; -} -.prose-sm :where(h3 code):not(:where([class~="not-prose"] *)) { - font-size: 0.8888889em; -} -.prose-sm :where(pre):not(:where([class~="not-prose"] *)) { - font-size: 0.8571429em; - line-height: 1.6666667; - margin-top: 1.6666667em; - margin-bottom: 1.6666667em; - border-radius: 0.25rem; - padding-top: 0.6666667em; - padding-right: 1em; - padding-bottom: 0.6666667em; - padding-left: 1em; -} -.prose-sm :where(ol):not(:where([class~="not-prose"] *)) { - padding-left: 1.5714286em; -} -.prose-sm :where(ul):not(:where([class~="not-prose"] *)) { - padding-left: 1.5714286em; -} -.prose-sm :where(li):not(:where([class~="not-prose"] *)) { - margin-top: 0.2857143em; - margin-bottom: 0.2857143em; -} -.prose-sm :where(ol > li):not(:where([class~="not-prose"] *)) { - padding-left: 0.4285714em; -} -.prose-sm :where(ul > li):not(:where([class~="not-prose"] *)) { - padding-left: 0.4285714em; -} -.prose-sm > :where(ul > li p):not(:where([class~="not-prose"] *)) { - margin-top: 0.5714286em; - margin-bottom: 0.5714286em; -} -.prose-sm > :where(ul > li > *:first-child):not(:where([class~="not-prose"] *)) { - margin-top: 1.1428571em; -} -.prose-sm > :where(ul > li > *:last-child):not(:where([class~="not-prose"] *)) { - margin-bottom: 1.1428571em; -} -.prose-sm > :where(ol > li > *:first-child):not(:where([class~="not-prose"] *)) { - margin-top: 1.1428571em; -} -.prose-sm > :where(ol > li > *:last-child):not(:where([class~="not-prose"] *)) { - margin-bottom: 1.1428571em; -} -.prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"] *)) { - margin-top: 0.5714286em; - margin-bottom: 0.5714286em; -} -.prose-sm :where(hr):not(:where([class~="not-prose"] *)) { - margin-top: 2.8571429em; - margin-bottom: 2.8571429em; -} -.prose-sm :where(hr + *):not(:where([class~="not-prose"] *)) { - margin-top: 0; -} -.prose-sm :where(h2 + *):not(:where([class~="not-prose"] *)) { - margin-top: 0; -} -.prose-sm :where(h3 + *):not(:where([class~="not-prose"] *)) { - margin-top: 0; -} -.prose-sm :where(h4 + *):not(:where([class~="not-prose"] *)) { - margin-top: 0; -} -.prose-sm :where(table):not(:where([class~="not-prose"] *)) { - font-size: 0.8571429em; - line-height: 1.5; -} -.prose-sm :where(thead th):not(:where([class~="not-prose"] *)) { - padding-right: 1em; - padding-bottom: 0.6666667em; - padding-left: 1em; -} -.prose-sm :where(thead th:first-child):not(:where([class~="not-prose"] *)) { - padding-left: 0; -} -.prose-sm :where(thead th:last-child):not(:where([class~="not-prose"] *)) { - padding-right: 0; -} -.prose-sm :where(tbody td):not(:where([class~="not-prose"] *)) { - padding-top: 0.6666667em; - padding-right: 1em; - padding-bottom: 0.6666667em; - padding-left: 1em; -} -.prose-sm :where(tbody td:first-child):not(:where([class~="not-prose"] *)) { - padding-left: 0; -} -.prose-sm :where(tbody td:last-child):not(:where([class~="not-prose"] *)) { - padding-right: 0; -} -.prose-sm > :where(:first-child):not(:where([class~="not-prose"] *)) { - margin-top: 0; -} -.prose-sm > :where(:last-child):not(:where([class~="not-prose"] *)) { - margin-bottom: 0; -} -.prose-base { - font-size: 1rem; - line-height: 1.75; -} -.prose-base :where(p):not(:where([class~="not-prose"] *)) { - margin-top: 1.25em; - margin-bottom: 1.25em; -} -.prose-base :where([class~="lead"]):not(:where([class~="not-prose"] *)) { - font-size: 1.25em; - line-height: 1.6; - margin-top: 1.2em; - margin-bottom: 1.2em; -} -.prose-base :where(blockquote):not(:where([class~="not-prose"] *)) { - margin-top: 1.6em; - margin-bottom: 1.6em; - padding-left: 1em; -} -.prose-base :where(h1):not(:where([class~="not-prose"] *)) { - font-size: 2.25em; - margin-top: 0; - margin-bottom: 0.8888889em; - line-height: 1.1111111; -} -.prose-base :where(h2):not(:where([class~="not-prose"] *)) { - font-size: 1.5em; - margin-top: 2em; - margin-bottom: 1em; - line-height: 1.3333333; -} -.prose-base :where(h3):not(:where([class~="not-prose"] *)) { - font-size: 1.25em; - margin-top: 1.6em; - margin-bottom: 0.6em; - line-height: 1.6; -} -.prose-base :where(h4):not(:where([class~="not-prose"] *)) { - margin-top: 1.5em; - margin-bottom: 0.5em; - line-height: 1.5; -} -.prose-base :where(img):not(:where([class~="not-prose"] *)) { - margin-top: 2em; - margin-bottom: 2em; -} -.prose-base :where(video):not(:where([class~="not-prose"] *)) { - margin-top: 2em; - margin-bottom: 2em; -} -.prose-base :where(figure):not(:where([class~="not-prose"] *)) { - margin-top: 2em; - margin-bottom: 2em; -} -.prose-base :where(figure > *):not(:where([class~="not-prose"] *)) { - margin-top: 0; - margin-bottom: 0; -} -.prose-base :where(figcaption):not(:where([class~="not-prose"] *)) { - font-size: 0.875em; - line-height: 1.4285714; - margin-top: 0.8571429em; -} -.prose-base :where(code):not(:where([class~="not-prose"] *)) { - font-size: 0.875em; -} -.prose-base :where(h2 code):not(:where([class~="not-prose"] *)) { - font-size: 0.875em; -} -.prose-base :where(h3 code):not(:where([class~="not-prose"] *)) { - font-size: 0.9em; -} -.prose-base :where(pre):not(:where([class~="not-prose"] *)) { - font-size: 0.875em; - line-height: 1.7142857; - margin-top: 1.7142857em; - margin-bottom: 1.7142857em; - border-radius: 0.375rem; - padding-top: 0.8571429em; - padding-right: 1.1428571em; - padding-bottom: 0.8571429em; - padding-left: 1.1428571em; -} -.prose-base :where(ol):not(:where([class~="not-prose"] *)) { - padding-left: 1.625em; -} -.prose-base :where(ul):not(:where([class~="not-prose"] *)) { - padding-left: 1.625em; -} -.prose-base :where(li):not(:where([class~="not-prose"] *)) { - margin-top: 0.5em; - margin-bottom: 0.5em; -} -.prose-base :where(ol > li):not(:where([class~="not-prose"] *)) { - padding-left: 0.375em; -} -.prose-base :where(ul > li):not(:where([class~="not-prose"] *)) { - padding-left: 0.375em; -} -.prose-base > :where(ul > li p):not(:where([class~="not-prose"] *)) { - margin-top: 0.75em; - margin-bottom: 0.75em; -} -.prose-base > :where(ul > li > *:first-child):not(:where([class~="not-prose"] *)) { - margin-top: 1.25em; -} -.prose-base > :where(ul > li > *:last-child):not(:where([class~="not-prose"] *)) { - margin-bottom: 1.25em; -} -.prose-base > :where(ol > li > *:first-child):not(:where([class~="not-prose"] *)) { - margin-top: 1.25em; -} -.prose-base > :where(ol > li > *:last-child):not(:where([class~="not-prose"] *)) { - margin-bottom: 1.25em; -} -.prose-base :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"] *)) { - margin-top: 0.75em; - margin-bottom: 0.75em; -} -.prose-base :where(hr):not(:where([class~="not-prose"] *)) { - margin-top: 3em; - margin-bottom: 3em; -} -.prose-base :where(hr + *):not(:where([class~="not-prose"] *)) { - margin-top: 0; -} -.prose-base :where(h2 + *):not(:where([class~="not-prose"] *)) { - margin-top: 0; -} -.prose-base :where(h3 + *):not(:where([class~="not-prose"] *)) { - margin-top: 0; -} -.prose-base :where(h4 + *):not(:where([class~="not-prose"] *)) { - margin-top: 0; -} -.prose-base :where(table):not(:where([class~="not-prose"] *)) { - font-size: 0.875em; - line-height: 1.7142857; -} -.prose-base :where(thead th):not(:where([class~="not-prose"] *)) { - padding-right: 0.5714286em; - padding-bottom: 0.5714286em; - padding-left: 0.5714286em; -} -.prose-base :where(thead th:first-child):not(:where([class~="not-prose"] *)) { - padding-left: 0; -} -.prose-base :where(thead th:last-child):not(:where([class~="not-prose"] *)) { - padding-right: 0; -} -.prose-base :where(tbody td):not(:where([class~="not-prose"] *)) { - padding-top: 0.5714286em; - padding-right: 0.5714286em; - padding-bottom: 0.5714286em; - padding-left: 0.5714286em; -} -.prose-base :where(tbody td:first-child):not(:where([class~="not-prose"] *)) { - padding-left: 0; -} -.prose-base :where(tbody td:last-child):not(:where([class~="not-prose"] *)) { - padding-right: 0; -} -.prose-base > :where(:first-child):not(:where([class~="not-prose"] *)) { - margin-top: 0; -} -.prose-base > :where(:last-child):not(:where([class~="not-prose"] *)) { - margin-bottom: 0; -} -.prose-lg { - font-size: 1.125rem; - line-height: 1.7777778; -} -.prose-lg :where(p):not(:where([class~="not-prose"] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; -} -.prose-lg :where([class~="lead"]):not(:where([class~="not-prose"] *)) { - font-size: 1.2222222em; - line-height: 1.4545455; - margin-top: 1.0909091em; - margin-bottom: 1.0909091em; -} -.prose-lg :where(blockquote):not(:where([class~="not-prose"] *)) { - margin-top: 1.6666667em; - margin-bottom: 1.6666667em; - padding-left: 1em; -} -.prose-lg :where(h1):not(:where([class~="not-prose"] *)) { - font-size: 2.6666667em; - margin-top: 0; - margin-bottom: 0.8333333em; - line-height: 1; -} -.prose-lg :where(h2):not(:where([class~="not-prose"] *)) { - font-size: 1.6666667em; - margin-top: 1.8666667em; - margin-bottom: 1.0666667em; - line-height: 1.3333333; -} -.prose-lg :where(h3):not(:where([class~="not-prose"] *)) { - font-size: 1.3333333em; - margin-top: 1.6666667em; - margin-bottom: 0.6666667em; - line-height: 1.5; -} -.prose-lg :where(h4):not(:where([class~="not-prose"] *)) { - margin-top: 1.7777778em; - margin-bottom: 0.4444444em; - line-height: 1.5555556; -} -.prose-lg :where(img):not(:where([class~="not-prose"] *)) { - margin-top: 1.7777778em; - margin-bottom: 1.7777778em; -} -.prose-lg :where(video):not(:where([class~="not-prose"] *)) { - margin-top: 1.7777778em; - margin-bottom: 1.7777778em; -} -.prose-lg :where(figure):not(:where([class~="not-prose"] *)) { - margin-top: 1.7777778em; - margin-bottom: 1.7777778em; -} -.prose-lg :where(figure > *):not(:where([class~="not-prose"] *)) { - margin-top: 0; - margin-bottom: 0; -} -.prose-lg :where(figcaption):not(:where([class~="not-prose"] *)) { - font-size: 0.8888889em; - line-height: 1.5; - margin-top: 1em; -} -.prose-lg :where(code):not(:where([class~="not-prose"] *)) { - font-size: 0.8888889em; -} -.prose-lg :where(h2 code):not(:where([class~="not-prose"] *)) { - font-size: 0.8666667em; -} -.prose-lg :where(h3 code):not(:where([class~="not-prose"] *)) { - font-size: 0.875em; -} -.prose-lg :where(pre):not(:where([class~="not-prose"] *)) { - font-size: 0.8888889em; - line-height: 1.75; - margin-top: 2em; - margin-bottom: 2em; - border-radius: 0.375rem; - padding-top: 1em; - padding-right: 1.5em; - padding-bottom: 1em; - padding-left: 1.5em; -} -.prose-lg :where(ol):not(:where([class~="not-prose"] *)) { - padding-left: 1.5555556em; -} -.prose-lg :where(ul):not(:where([class~="not-prose"] *)) { - padding-left: 1.5555556em; -} -.prose-lg :where(li):not(:where([class~="not-prose"] *)) { - margin-top: 0.6666667em; - margin-bottom: 0.6666667em; -} -.prose-lg :where(ol > li):not(:where([class~="not-prose"] *)) { - padding-left: 0.4444444em; -} -.prose-lg :where(ul > li):not(:where([class~="not-prose"] *)) { - padding-left: 0.4444444em; -} -.prose-lg > :where(ul > li p):not(:where([class~="not-prose"] *)) { - margin-top: 0.8888889em; - margin-bottom: 0.8888889em; -} -.prose-lg > :where(ul > li > *:first-child):not(:where([class~="not-prose"] *)) { - margin-top: 1.3333333em; -} -.prose-lg > :where(ul > li > *:last-child):not(:where([class~="not-prose"] *)) { - margin-bottom: 1.3333333em; -} -.prose-lg > :where(ol > li > *:first-child):not(:where([class~="not-prose"] *)) { - margin-top: 1.3333333em; -} -.prose-lg > :where(ol > li > *:last-child):not(:where([class~="not-prose"] *)) { - margin-bottom: 1.3333333em; -} -.prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"] *)) { - margin-top: 0.8888889em; - margin-bottom: 0.8888889em; -} -.prose-lg :where(hr):not(:where([class~="not-prose"] *)) { - margin-top: 3.1111111em; - margin-bottom: 3.1111111em; -} -.prose-lg :where(hr + *):not(:where([class~="not-prose"] *)) { - margin-top: 0; -} -.prose-lg :where(h2 + *):not(:where([class~="not-prose"] *)) { - margin-top: 0; -} -.prose-lg :where(h3 + *):not(:where([class~="not-prose"] *)) { - margin-top: 0; -} -.prose-lg :where(h4 + *):not(:where([class~="not-prose"] *)) { - margin-top: 0; -} -.prose-lg :where(table):not(:where([class~="not-prose"] *)) { - font-size: 0.8888889em; - line-height: 1.5; -} -.prose-lg :where(thead th):not(:where([class~="not-prose"] *)) { - padding-right: 0.75em; - padding-bottom: 0.75em; - padding-left: 0.75em; -} -.prose-lg :where(thead th:first-child):not(:where([class~="not-prose"] *)) { - padding-left: 0; -} -.prose-lg :where(thead th:last-child):not(:where([class~="not-prose"] *)) { - padding-right: 0; -} -.prose-lg :where(tbody td):not(:where([class~="not-prose"] *)) { - padding-top: 0.75em; - padding-right: 0.75em; - padding-bottom: 0.75em; - padding-left: 0.75em; -} -.prose-lg :where(tbody td:first-child):not(:where([class~="not-prose"] *)) { - padding-left: 0; -} -.prose-lg :where(tbody td:last-child):not(:where([class~="not-prose"] *)) { - padding-right: 0; -} -.prose-lg > :where(:first-child):not(:where([class~="not-prose"] *)) { - margin-top: 0; -} -.prose-lg > :where(:last-child):not(:where([class~="not-prose"] *)) { - margin-bottom: 0; -} -.prose-green { - --tw-prose-links: #16a34a; - --tw-prose-invert-links: #22c55e; -} -.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; -} -.pointer-events-none { - pointer-events: none; -} -.pointer-events-auto { - pointer-events: auto; -} -.fixed { - position: fixed; -} -.absolute { - position: absolute; -} -.relative { - position: relative; -} -.sticky { - position: -webkit-sticky; - position: sticky; -} -.inset-0 { - top: 0px; - right: 0px; - bottom: 0px; - left: 0px; -} -.-inset-px { - top: -1px; - right: -1px; - bottom: -1px; - left: -1px; -} -.inset-x-0 { - left: 0px; - right: 0px; -} -.inset-y-0 { - top: 0px; - bottom: 0px; -} -.bottom-0 { - bottom: 0px; -} -.top-0 { - top: 0px; -} -.top-4 { - top: 1rem; -} -.right-0 { - right: 0px; -} -.top-40 { - top: 10rem; -} -.left-0 { - left: 0px; -} -.top-5 { - top: 1.25rem; -} -.-right-1 { - right: -0.25rem; -} -.left-1 { - left: 0.25rem; -} -.-top-8 { - top: -2rem; -} -.top-\[-75px\] { - top: -75px; -} -.top-\[-50px\] { - top: -50px; -} -.-bottom-0\.5 { - bottom: -0.125rem; -} -.-bottom-0 { - bottom: -0px; -} -.left-5 { - left: 1.25rem; -} -.-top-3 { - top: -0.75rem; -} -.right-3 { - right: 0.75rem; -} -.right-5 { - right: 1.25rem; -} -.right-2 { - right: 0.5rem; -} -.-top-2 { - top: -0.5rem; -} -.top-2 { - top: 0.5rem; -} -.z-0 { - z-index: 0; -} -.z-30 { - z-index: 30; -} -.z-50 { - z-index: 50; -} -.z-10 { - z-index: 10; -} -.z-40 { - z-index: 40; -} -.z-20 { - z-index: 20; -} -.order-2 { - order: 2; -} -.order-1 { - order: 1; -} -.col-span-1 { - grid-column: span 1 / span 1; -} -.-m-3 { - margin: -0.75rem; -} -.-m-2 { - margin: -0.5rem; -} -.my-10 { - margin-top: 2.5rem; - margin-bottom: 2.5rem; -} -.-mx-2 { - margin-left: -0.5rem; - margin-right: -0.5rem; -} -.mx-auto { - margin-left: auto; - margin-right: auto; -} -.mx-1\.5 { - margin-left: 0.375rem; - margin-right: 0.375rem; -} -.mx-1 { - margin-left: 0.25rem; - margin-right: 0.25rem; -} -.-my-5 { - margin-top: -1.25rem; - margin-bottom: -1.25rem; -} -.mx-2 { - margin-left: 0.5rem; - margin-right: 0.5rem; -} -.my-8 { - margin-top: 2rem; - margin-bottom: 2rem; -} -.mx-3 { - margin-left: 0.75rem; - margin-right: 0.75rem; -} -.mx-0 { - margin-left: 0px; - margin-right: 0px; -} -.my-auto { - margin-top: auto; - margin-bottom: auto; -} -.my-2 { - margin-top: 0.5rem; - margin-bottom: 0.5rem; -} -.mt-1 { - margin-top: 0.25rem; -} -.mt-8 { - margin-top: 2rem; -} -.mt-2 { - margin-top: 0.5rem; -} -.mt-5 { - margin-top: 1.25rem; -} -.mt-12 { - margin-top: 3rem; -} -.mb-14 { - margin-bottom: 3.5rem; -} -.-mt-4 { - margin-top: -1rem; -} -.mt-4 { - margin-top: 1rem; -} -.mb-2 { - margin-bottom: 0.5rem; -} -.ml-4 { - margin-left: 1rem; -} -.ml-2 { - margin-left: 0.5rem; -} -.mt-3 { - margin-top: 0.75rem; -} -.mt-10 { - margin-top: 2.5rem; -} -.ml-1\.5 { - margin-left: 0.375rem; -} -.ml-1 { - margin-left: 0.25rem; -} -.mr-1\.5 { - margin-right: 0.375rem; -} -.mr-1 { - margin-right: 0.25rem; -} -.mt-6 { - margin-top: 1.5rem; -} -.ml-12 { - margin-left: 3rem; -} -.ml-3 { - margin-left: 0.75rem; -} -.-mr-1 { - margin-right: -0.25rem; -} -.mt-16 { - margin-top: 4rem; -} -.mb-5 { - margin-bottom: 1.25rem; -} -.ml-9 { - margin-left: 2.25rem; -} -.mb-4 { - margin-bottom: 1rem; -} -.-ml-1 { - margin-left: -0.25rem; -} -.mr-3 { - margin-right: 0.75rem; -} -.mb-1\.5 { - margin-bottom: 0.375rem; -} -.mb-1 { - margin-bottom: 0.25rem; -} -.ml-2\.5 { - margin-left: 0.625rem; -} -.-ml-px { - margin-left: -1px; -} -.mt-0\.5 { - margin-top: 0.125rem; -} -.mt-0 { - margin-top: 0px; -} -.ml-8 { - margin-left: 2rem; -} -.mr-2 { - margin-right: 0.5rem; -} -.mt-1\.5 { - margin-top: 0.375rem; -} -.-ml-4 { - margin-left: -1rem; -} -.ml-auto { - margin-left: auto; -} -.-mt-2 { - margin-top: -0.5rem; -} -.ml-3\.5 { - margin-left: 0.875rem; -} -.-ml-9 { - margin-left: -2.25rem; -} -.mb-3 { - margin-bottom: 0.75rem; -} -.-mb-2 { - margin-bottom: -0.5rem; -} -.mb-6 { - margin-bottom: 1.5rem; -} -.mb-8 { - margin-bottom: 2rem; -} -.-mt-12 { - margin-top: -3rem; -} -.-mb-px { - margin-bottom: -1px; -} -.ml-6 { - margin-left: 1.5rem; -} -.-mt-3 { - margin-top: -0.75rem; -} -.-mb-8 { - margin-bottom: -2rem; -} -.-mt-6 { - margin-top: -1.5rem; -} -.-ml-0\.5 { - margin-left: -0.125rem; -} -.-ml-0 { - margin-left: -0px; -} -.mr-0 { - margin-right: 0px; -} -.ml-5 { - margin-left: 1.25rem; -} -.mr-4 { - margin-right: 1rem; -} -.block { - display: block; -} -.inline-block { - display: inline-block; -} -.inline { - display: inline; -} -.flex { - display: flex; -} -.inline-flex { - display: inline-flex; -} -.flow-root { - display: flow-root; -} -.grid { - display: grid; -} -.hidden { - display: none; -} -.h-16 { - height: 4rem; -} -.h-5 { - height: 1.25rem; -} -.h-8 { - height: 2rem; -} -.h-12 { - height: 3rem; -} -.h-6 { - height: 1.5rem; -} -.h-80 { - height: 20rem; -} -.h-full { - height: 100%; -} -.h-32 { - height: 8rem; -} -.h-14 { - height: 3.5rem; -} -.h-10 { - height: 2.5rem; -} -.h-9 { - height: 2.25rem; -} -.h-3\.5 { - height: 0.875rem; -} -.h-3 { - height: 0.75rem; -} -.h-\[450px\] { - height: 450px; -} -.h-7 { - height: 1.75rem; -} -.h-4 { - height: 1rem; -} -.h-2 { - height: 0.5rem; -} -.h-\[120px\] { - height: 120px; -} -.h-auto { - height: auto; -} -.h-64 { - height: 16rem; -} -.h-24 { - height: 6rem; -} -.h-0\.5 { - height: 0.125rem; -} -.h-0 { - height: 0px; -} -.h-56 { - height: 14rem; -} -.h-\[350px\] { - height: 350px; -} -.h-\[250px\] { - height: 250px; -} -.h-52 { - height: 13rem; -} -.h-screen { - height: 100vh; -} -.max-h-96 { - max-height: 24rem; -} -.max-h-60 { - max-height: 15rem; -} -.min-h-full { - min-height: 100%; -} -.min-h-screen { - min-height: 100vh; -} -.min-h-\[250px\] { - min-height: 250px; -} -.w-5 { - width: 1.25rem; -} -.w-full { - width: 100%; -} -.w-1\/2 { - width: 50%; -} -.w-1\/3 { - width: 33.333333%; -} -.w-6 { - width: 1.5rem; -} -.w-14 { - width: 3.5rem; -} -.w-auto { - width: auto; -} -.w-8 { - width: 2rem; -} -.w-9 { - width: 2.25rem; -} -.w-10 { - width: 2.5rem; -} -.w-3\.5 { - width: 0.875rem; -} -.w-3 { - width: 0.75rem; -} -.w-screen { - width: 100vw; -} -.w-4 { - width: 1rem; -} -.w-0 { - width: 0px; -} -.w-3\/4 { - width: 75%; -} -.w-5\/6 { - width: 83.333333%; -} -.w-2 { - width: 0.5rem; -} -.w-12 { - width: 3rem; -} -.w-0\.5 { - width: 0.125rem; -} -.w-56 { - width: 14rem; -} -.w-60 { - width: 15rem; -} -.w-40 { - width: 10rem; -} -.w-7 { - width: 1.75rem; -} -.w-24 { - width: 6rem; -} -.w-11 { - width: 2.75rem; -} -.min-w-0 { - min-width: 0px; -} -.max-w-7xl { - max-width: 80rem; -} -.max-w-xl { - max-width: 36rem; -} -.max-w-4xl { - max-width: 56rem; -} -.max-w-3xl { - max-width: 48rem; -} -.max-w-full { - max-width: 100%; -} -.max-w-xs { - max-width: 20rem; -} -.max-w-md { - max-width: 28rem; -} -.max-w-sm { - max-width: 24rem; -} -.max-w-2xl { - max-width: 42rem; -} -.max-w-none { - max-width: none; -} -.max-w-lg { - max-width: 32rem; -} -.flex-none { - flex: none; -} -.flex-1 { - flex: 1 1 0%; -} -.shrink-0 { - flex-shrink: 0; -} -.flex-grow { - flex-grow: 1; -} -.origin-top { - transform-origin: top; -} -.origin-top-right { - transform-origin: top right; -} -.translate-x-full { - --tw-translate-x: 100%; - transform: var(--tw-transform); -} -.translate-x-0 { - --tw-translate-x: 0px; - transform: var(--tw-transform); -} -.translate-y-2 { - --tw-translate-y: 0.5rem; - transform: var(--tw-transform); -} -.translate-y-0 { - --tw-translate-y: 0px; - transform: var(--tw-transform); -} -.translate-y-1 { - --tw-translate-y: 0.25rem; - transform: var(--tw-transform); -} -.translate-y-7 { - --tw-translate-y: 1.75rem; - transform: var(--tw-transform); -} -.translate-y-9 { - --tw-translate-y: 2.25rem; - transform: var(--tw-transform); -} -.translate-x-5 { - --tw-translate-x: 1.25rem; - transform: var(--tw-transform); -} -.translate-y-4 { - --tw-translate-y: 1rem; - transform: var(--tw-transform); -} -.-translate-y-12 { - --tw-translate-y: -3rem; - transform: var(--tw-transform); -} -.rotate-45 { - --tw-rotate: 45deg; - transform: var(--tw-transform); -} -.rotate-90 { - --tw-rotate: 90deg; - transform: var(--tw-transform); -} -.rotate-0 { - --tw-rotate: 0deg; - transform: var(--tw-transform); -} -.scale-95 { - --tw-scale-x: .95; - --tw-scale-y: .95; - transform: var(--tw-transform); -} -.scale-100 { - --tw-scale-x: 1; - --tw-scale-y: 1; - transform: var(--tw-transform); -} -.transform { - transform: var(--tw-transform); -} -@-webkit-keyframes spin { - - to { - transform: rotate(360deg); - } -} -@keyframes spin { - - to { - transform: rotate(360deg); - } -} -.animate-spin { - -webkit-animation: spin 1s linear infinite; - animation: spin 1s linear infinite; -} -@-webkit-keyframes pulse { - - 50% { - opacity: .5; - } -} -@keyframes pulse { - - 50% { - opacity: .5; - } -} -.animate-pulse { - -webkit-animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; - animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; -} -.cursor-pointer { - cursor: pointer; -} -.cursor-text { - cursor: text; -} -.cursor-default { - cursor: default; -} -.cursor-not-allowed { - cursor: not-allowed; -} -.select-none { - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} -.resize-none { - resize: none; -} -.list-disc { - list-style-type: disc; -} -.appearance-none { - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; -} -.grid-cols-1 { - grid-template-columns: repeat(1, minmax(0, 1fr)); -} -.grid-cols-2 { - grid-template-columns: repeat(2, minmax(0, 1fr)); -} -.grid-cols-3 { - grid-template-columns: repeat(3, minmax(0, 1fr)); -} -.grid-cols-4 { - grid-template-columns: repeat(4, minmax(0, 1fr)); -} -.grid-cols-7 { - grid-template-columns: repeat(7, minmax(0, 1fr)); -} -.flex-col { - flex-direction: column; -} -.flex-col-reverse { - flex-direction: column-reverse; -} -.flex-wrap { - flex-wrap: wrap; -} -.items-start { - align-items: flex-start; -} -.items-end { - align-items: flex-end; -} -.items-center { - align-items: center; -} -.justify-end { - justify-content: flex-end; -} -.justify-center { - justify-content: center; -} -.justify-between { - justify-content: space-between; -} -.gap-10 { - gap: 2.5rem; -} -.gap-2 { - gap: 0.5rem; -} -.gap-6 { - gap: 1.5rem; -} -.gap-8 { - gap: 2rem; -} -.gap-1 { - gap: 0.25rem; -} -.gap-5 { - gap: 1.25rem; -} -.gap-3 { - gap: 0.75rem; -} -.gap-y-12 { - row-gap: 3rem; -} -.gap-x-6 { - -moz-column-gap: 1.5rem; - column-gap: 1.5rem; -} -.gap-x-2 { - -moz-column-gap: 0.5rem; - column-gap: 0.5rem; -} -.gap-x-12 { - -moz-column-gap: 3rem; - column-gap: 3rem; -} -.gap-y-4 { - row-gap: 1rem; -} -.gap-x-5 { - -moz-column-gap: 1.25rem; - column-gap: 1.25rem; -} -.gap-x-3 { - -moz-column-gap: 0.75rem; - column-gap: 0.75rem; -} -.gap-x-4 { - -moz-column-gap: 1rem; - column-gap: 1rem; -} -.gap-y-6 { - row-gap: 1.5rem; -} -.gap-x-8 { - -moz-column-gap: 2rem; - column-gap: 2rem; -} -.gap-y-2 { - row-gap: 0.5rem; -} -.space-y-12 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(3rem * var(--tw-space-y-reverse)); -} -.space-y-4 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(1rem * var(--tw-space-y-reverse)); -} -.space-y-1 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.25rem * var(--tw-space-y-reverse)); -} -.space-x-5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(1.25rem * var(--tw-space-x-reverse)); - margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse))); -} -.space-y-5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(1.25rem * var(--tw-space-y-reverse)); -} -.space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(0.375rem * var(--tw-space-x-reverse)); - margin-left: calc(0.375rem * calc(1 - var(--tw-space-x-reverse))); -} -.space-x-1 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(0.25rem * var(--tw-space-x-reverse)); - margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse))); -} -.space-y-6 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(1.5rem * var(--tw-space-y-reverse)); -} -.space-x-4 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(1rem * var(--tw-space-x-reverse)); - margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse))); -} -.space-x-3 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(0.75rem * var(--tw-space-x-reverse)); - margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse))); -} -.space-x-2 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(0.5rem * var(--tw-space-x-reverse)); - margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse))); -} -.-space-x-px > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-1px * var(--tw-space-x-reverse)); - margin-left: calc(-1px * calc(1 - var(--tw-space-x-reverse))); -} -.space-y-8 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(2rem * var(--tw-space-y-reverse)); -} -.space-y-10 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(2.5rem * var(--tw-space-y-reverse)); -} -.space-y-3 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.75rem * var(--tw-space-y-reverse)); -} -.-space-x-2 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.5rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.5rem * calc(1 - var(--tw-space-x-reverse))); -} -.space-y-2 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.5rem * var(--tw-space-y-reverse)); -} -.space-y-16 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(4rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(4rem * var(--tw-space-y-reverse)); -} -.space-x-6 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(1.5rem * var(--tw-space-x-reverse)); - margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse))); -} -.space-x-8 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(2rem * var(--tw-space-x-reverse)); - margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse))); -} -.divide-y > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0; - border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse))); - border-bottom-width: calc(1px * var(--tw-divide-y-reverse)); -} -.divide-x > :not([hidden]) ~ :not([hidden]) { - --tw-divide-x-reverse: 0; - border-right-width: calc(1px * var(--tw-divide-x-reverse)); - border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse))); -} -.divide-skin-base > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(var(--color-divide), var(--tw-divide-opacity)); -} -.divide-skin-light > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(var(--color-divide-light), var(--tw-divide-opacity)); -} -.self-start { - align-self: flex-start; -} -.self-center { - align-self: center; -} -.overflow-hidden { - overflow: hidden; -} -.overflow-scroll { - overflow: scroll; -} -.overflow-x-auto { - overflow-x: auto; -} -.overflow-y-auto { - overflow-y: auto; -} -.overflow-x-hidden { - overflow-x: hidden; -} -.overflow-y-scroll { - overflow-y: scroll; -} -.truncate { - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; -} -.whitespace-nowrap { - white-space: nowrap; -} -.whitespace-pre-wrap { - white-space: pre-wrap; -} -.break-words { - word-wrap: break-word; -} -.rounded-lg { - border-radius: 0.5rem; -} -.rounded-full { - border-radius: 9999px; -} -.rounded-md { - border-radius: 0.375rem; -} -.rounded { - border-radius: 0.25rem; -} -.rounded-sm { - border-radius: 0.125rem; -} -.rounded-xl { - border-radius: 0.75rem; -} -.rounded-none { - border-radius: 0px; -} -.rounded-l-md { - border-top-left-radius: 0.375rem; - border-bottom-left-radius: 0.375rem; -} -.rounded-r-md { - border-top-right-radius: 0.375rem; - border-bottom-right-radius: 0.375rem; -} -.rounded-l-lg { - border-top-left-radius: 0.5rem; - border-bottom-left-radius: 0.5rem; -} -.rounded-r-lg { - border-top-right-radius: 0.5rem; - border-bottom-right-radius: 0.5rem; -} -.rounded-b-lg { - border-bottom-right-radius: 0.5rem; - border-bottom-left-radius: 0.5rem; -} -.rounded-t-none { - border-top-left-radius: 0px; - border-top-right-radius: 0px; -} -.rounded-t-md { - border-top-left-radius: 0.375rem; - border-top-right-radius: 0.375rem; -} -.rounded-tl { - border-top-left-radius: 0.25rem; -} -.rounded-tl-sm { - border-top-left-radius: 0.125rem; -} -.rounded-tr-lg { - border-top-right-radius: 0.5rem; -} -.rounded-br-lg { - border-bottom-right-radius: 0.5rem; -} -.border { - border-width: 1px; -} -.border-0 { - border-width: 0px; -} -.border-2 { - border-width: 2px; -} -.border-t { - border-top-width: 1px; -} -.border-b { - border-bottom-width: 1px; -} -.border-l-4 { - border-left-width: 4px; -} -.border-l { - border-left-width: 1px; -} -.border-r-0 { - border-right-width: 0px; -} -.border-b-2 { - border-bottom-width: 2px; -} -.border-dashed { - border-style: dashed; -} -.border-none { - border-style: none; -} -.border-skin-base { - --tw-border-opacity: 1; - border-color: rgba(var(--color-border), var(--tw-border-opacity)); -} -.border-skin-input { - --tw-border-opacity: 1; - border-color: rgba(var(--color-input-border), var(--tw-border-opacity)); -} -.border-transparent { - border-color: transparent; -} -.border-green-500 { - --tw-border-opacity: 1; - border-color: rgb(16 185 129 / var(--tw-border-opacity)); -} -.border-gray-300 { - --tw-border-opacity: 1; - border-color: rgb(209 213 219 / var(--tw-border-opacity)); -} -.border-gray-800 { - --tw-border-opacity: 1; - border-color: rgb(31 41 55 / var(--tw-border-opacity)); -} -.border-secondary-200 { - --tw-border-opacity: 1; - border-color: rgb(229 231 235 / var(--tw-border-opacity)); -} -.border-primary-600 { - --tw-border-opacity: 1; - border-color: rgb(5 150 105 / var(--tw-border-opacity)); -} -.border-negative-200 { - --tw-border-opacity: 1; - border-color: rgb(254 202 202 / var(--tw-border-opacity)); -} -.border-red-300 { - --tw-border-opacity: 1; - border-color: rgb(252 165 165 / var(--tw-border-opacity)); -} -.bg-green-50 { - --tw-bg-opacity: 1; - background-color: rgb(236 253 245 / var(--tw-bg-opacity)); -} -.bg-skin-card { - --tw-bg-opacity: 1; - background-color: rgba(var(--color-card-fill), var(--tw-bg-opacity)); -} -.bg-green-700 { - --tw-bg-opacity: 1; - background-color: rgb(4 120 87 / var(--tw-bg-opacity)); -} -.bg-flag-green { - --tw-bg-opacity: 1; - background-color: rgb(9 145 112 / var(--tw-bg-opacity)); -} -.bg-black { - --tw-bg-opacity: 1; - background-color: rgb(22 27 34 / var(--tw-bg-opacity)); -} -.bg-skin-button { - --tw-bg-opacity: 1; - background-color: rgba(var(--color-button-default), var(--tw-bg-opacity)); -} -.bg-skin-input { - --tw-bg-opacity: 1; - background-color: rgba(var(--color-input-fill), var(--tw-bg-opacity)); -} -.bg-green-600 { - --tw-bg-opacity: 1; - background-color: rgb(5 150 105 / var(--tw-bg-opacity)); -} -.bg-red-50 { - --tw-bg-opacity: 1; - background-color: rgb(254 242 242 / var(--tw-bg-opacity)); -} -.bg-blue-50 { - --tw-bg-opacity: 1; - background-color: rgb(239 246 255 / var(--tw-bg-opacity)); -} -.bg-green-100 { - --tw-bg-opacity: 1; - background-color: rgb(209 250 229 / var(--tw-bg-opacity)); -} -.bg-skin-card-muted { - --tw-bg-opacity: 1; - background-color: rgba(var(--color-card-muted-fill), var(--tw-bg-opacity)); -} -.bg-skin-card-gray { - --tw-bg-opacity: 1; - background-color: rgba(var(--color-card-gray), var(--tw-bg-opacity)); -} -.bg-skin-body { - --tw-bg-opacity: 1; - background-color: rgba(var(--color-body-fill), var(--tw-bg-opacity)); -} -.bg-blue-100 { - --tw-bg-opacity: 1; - background-color: rgb(219 234 254 / var(--tw-bg-opacity)); -} -.bg-skin-menu { - --tw-bg-opacity: 1; - background-color: rgba(var(--color-menu-fill), var(--tw-bg-opacity)); -} -.bg-green-500 { - --tw-bg-opacity: 1; - background-color: rgb(16 185 129 / var(--tw-bg-opacity)); -} -.bg-skin-footer { - --tw-bg-opacity: 1; - background-color: rgba(var(--color-footer-fill), var(--tw-bg-opacity)); -} -.bg-red-100 { - --tw-bg-opacity: 1; - background-color: rgb(254 226 226 / var(--tw-bg-opacity)); -} -.bg-red-400 { - --tw-bg-opacity: 1; - background-color: rgb(248 113 113 / var(--tw-bg-opacity)); -} -.bg-skin-primary { - --tw-bg-opacity: 1; - background-color: rgba(var(--color-text-primary), var(--tw-bg-opacity)); -} -.bg-flag-red { - --tw-bg-opacity: 1; - background-color: rgb(226 27 48 / var(--tw-bg-opacity)); -} -.bg-yellow-500 { - --tw-bg-opacity: 1; - background-color: rgb(234 179 8 / var(--tw-bg-opacity)); -} -.bg-blue-500 { - --tw-bg-opacity: 1; - background-color: rgb(59 130 246 / var(--tw-bg-opacity)); -} -.bg-yellow-100 { - --tw-bg-opacity: 1; - background-color: rgb(254 249 195 / var(--tw-bg-opacity)); -} -.bg-skin-link { - --tw-bg-opacity: 1; - background-color: rgba(var(--color-link-fill), var(--tw-bg-opacity)); -} -.bg-transparent { - background-color: transparent; -} -.bg-gray-700 { - --tw-bg-opacity: 1; - background-color: rgb(55 65 81 / var(--tw-bg-opacity)); -} -.bg-yellow-50 { - --tw-bg-opacity: 1; - background-color: rgb(254 252 232 / var(--tw-bg-opacity)); -} -.bg-red-500 { - --tw-bg-opacity: 1; - background-color: rgb(239 68 68 / var(--tw-bg-opacity)); -} -.bg-gray-500 { - --tw-bg-opacity: 1; - background-color: rgb(107 114 128 / var(--tw-bg-opacity)); -} -.bg-gray-900 { - --tw-bg-opacity: 1; - background-color: rgb(17 24 39 / var(--tw-bg-opacity)); -} -.bg-gray-100 { - --tw-bg-opacity: 1; - background-color: rgb(243 244 246 / var(--tw-bg-opacity)); -} -.bg-white { - --tw-bg-opacity: 1; - background-color: rgb(255 255 255 / var(--tw-bg-opacity)); -} -.bg-secondary-50 { - --tw-bg-opacity: 1; - background-color: rgb(249 250 251 / var(--tw-bg-opacity)); -} -.bg-secondary-400 { - --tw-bg-opacity: 1; - background-color: rgb(156 163 175 / var(--tw-bg-opacity)); -} -.bg-secondary-100 { - --tw-bg-opacity: 1; - background-color: rgb(243 244 246 / var(--tw-bg-opacity)); -} -.bg-primary-600 { - --tw-bg-opacity: 1; - background-color: rgb(5 150 105 / var(--tw-bg-opacity)); -} -.bg-negative-50 { - --tw-bg-opacity: 1; - background-color: rgb(254 242 242 / var(--tw-bg-opacity)); -} -.bg-secondary-300 { - --tw-bg-opacity: 1; - background-color: rgb(209 213 219 / var(--tw-bg-opacity)); -} -.bg-blueGray-100 { - --tw-bg-opacity: 1; - background-color: rgb(241 245 249 / var(--tw-bg-opacity)); -} -.bg-secondary-500 { - --tw-bg-opacity: 1; - background-color: rgb(107 114 128 / var(--tw-bg-opacity)); -} -.bg-opacity-50 { - --tw-bg-opacity: 0.5; -} -.bg-opacity-20 { - --tw-bg-opacity: 0.2; -} -.bg-opacity-10 { - --tw-bg-opacity: 0.1; -} -.bg-opacity-60 { - --tw-bg-opacity: 0.6; -} -.bg-opacity-75 { - --tw-bg-opacity: 0.75; -} -.bg-gradient-to-b { - background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); -} -.bg-gradient-to-br { - background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); -} -.bg-gradient-to-r { - background-image: linear-gradient(to right, var(--tw-gradient-stops)); -} -.from-black { - --tw-gradient-from: #161B22; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(22 27 34 / 0)); -} -.from-flag-yellow { - --tw-gradient-from: #ffdc44; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(255 220 68 / 0)); -} -.from-\[\#413626\] { - --tw-gradient-from: #413626; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(65 54 38 / 0)); -} -.to-flag-red { - --tw-gradient-to: #e21b30; -} -.to-\[\#7E5D36\] { - --tw-gradient-to: #7E5D36; -} -.fill-current { - fill: currentColor; -} -.stroke-current { - stroke: currentColor; -} -.object-cover { - -o-object-fit: cover; - object-fit: cover; -} -.p-6 { - padding: 1.5rem; -} -.p-1 { - padding: 0.25rem; -} -.p-4 { - padding: 1rem; -} -.p-3 { - padding: 0.75rem; -} -.p-2 { - padding: 0.5rem; -} -.p-5 { - padding: 1.25rem; -} -.p-1\.5 { - padding: 0.375rem; -} -.p-2\.5 { - padding: 0.625rem; -} -.p-0 { - padding: 0px; -} -.py-8 { - padding-top: 2rem; - padding-bottom: 2rem; -} -.px-2 { - padding-left: 0.5rem; - padding-right: 0.5rem; -} -.px-4 { - padding-left: 1rem; - padding-right: 1rem; -} -.py-10 { - padding-top: 2.5rem; - padding-bottom: 2.5rem; -} -.px-3 { - padding-left: 0.75rem; - padding-right: 0.75rem; -} -.py-0\.5 { - padding-top: 0.125rem; - padding-bottom: 0.125rem; -} -.py-0 { - padding-top: 0px; - padding-bottom: 0px; -} -.py-12 { - padding-top: 3rem; - padding-bottom: 3rem; -} -.py-14 { - padding-top: 3.5rem; - padding-bottom: 3.5rem; -} -.py-6 { - padding-top: 1.5rem; - padding-bottom: 1.5rem; -} -.py-2 { - padding-top: 0.5rem; - padding-bottom: 0.5rem; -} -.px-1\.5 { - padding-left: 0.375rem; - padding-right: 0.375rem; -} -.py-1 { - padding-top: 0.25rem; - padding-bottom: 0.25rem; -} -.px-1 { - padding-left: 0.25rem; - padding-right: 0.25rem; -} -.py-16 { - padding-top: 4rem; - padding-bottom: 4rem; -} -.px-6 { - padding-left: 1.5rem; - padding-right: 1.5rem; -} -.py-4 { - padding-top: 1rem; - padding-bottom: 1rem; -} -.px-2\.5 { - padding-left: 0.625rem; - padding-right: 0.625rem; -} -.py-1\.5 { - padding-top: 0.375rem; - padding-bottom: 0.375rem; -} -.px-0\.5 { - padding-left: 0.125rem; - padding-right: 0.125rem; -} -.py-px { - padding-top: 1px; - padding-bottom: 1px; -} -.px-0 { - padding-left: 0px; - padding-right: 0px; -} -.py-3 { - padding-top: 0.75rem; - padding-bottom: 0.75rem; -} -.px-5 { - padding-left: 1.25rem; - padding-right: 1.25rem; -} -.px-3\.5 { - padding-left: 0.875rem; - padding-right: 0.875rem; -} -.py-5 { - padding-top: 1.25rem; - padding-bottom: 1.25rem; -} -.py-2\.5 { - padding-top: 0.625rem; - padding-bottom: 0.625rem; -} -.pt-12 { - padding-top: 3rem; -} -.pr-2 { - padding-right: 0.5rem; -} -.pb-64 { - padding-bottom: 16rem; -} -.pt-6 { - padding-top: 1.5rem; -} -.pt-5 { - padding-top: 1.25rem; -} -.pl-10 { - padding-left: 2.5rem; -} -.pl-3 { - padding-left: 0.75rem; -} -.pb-5 { - padding-bottom: 1.25rem; -} -.pt-0\.5 { - padding-top: 0.125rem; -} -.pt-0 { - padding-top: 0px; -} -.pl-5 { - padding-left: 1.25rem; -} -.pb-8 { - padding-bottom: 2rem; -} -.pt-16 { - padding-top: 4rem; -} -.pb-4 { - padding-bottom: 1rem; -} -.pt-2 { - padding-top: 0.5rem; -} -.pb-3 { - padding-bottom: 0.75rem; -} -.pr-4 { - padding-right: 1rem; -} -.pt-4 { - padding-top: 1rem; -} -.pr-10 { - padding-right: 2.5rem; -} -.pt-10 { - padding-top: 2.5rem; -} -.pb-10 { - padding-bottom: 2.5rem; -} -.pr-12 { - padding-right: 3rem; -} -.pl-4 { - padding-left: 1rem; -} -.pr-1 { - padding-right: 0.25rem; -} -.pt-8 { - padding-top: 2rem; -} -.pb-6 { - padding-bottom: 1.5rem; -} -.pl-2 { - padding-left: 0.5rem; -} -.pb-20 { - padding-bottom: 5rem; -} -.pb-1 { - padding-bottom: 0.25rem; -} -.pr-9 { - padding-right: 2.25rem; -} -.pl-1 { - padding-left: 0.25rem; -} -.pl-2\.5 { - padding-left: 0.625rem; -} -.pr-2\.5 { - padding-right: 0.625rem; -} -.pr-14 { - padding-right: 3.5rem; -} -.pr-0\.5 { - padding-right: 0.125rem; -} -.pr-0 { - padding-right: 0px; -} -.pl-16 { - padding-left: 4rem; -} -.pr-3 { - padding-right: 0.75rem; -} -.text-left { - text-align: left; -} -.text-center { - text-align: center; -} -.text-right { - text-align: right; -} -.align-bottom { - vertical-align: bottom; -} -.font-sans { - font-family: Inter var, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; -} -.font-mono { - font-family: Operator Mono, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; -} -.text-sm { - font-size: 0.875rem; - line-height: 1.25rem; -} -.text-2xl { - font-size: 1.5rem; - line-height: 2rem; -} -.text-base { - font-size: 1rem; - line-height: 1.5rem; -} -.text-lg { - font-size: 1.125rem; - line-height: 1.75rem; -} -.text-5xl { - font-size: 3rem; - line-height: 1; -} -.text-xl { - font-size: 1.25rem; - line-height: 1.75rem; -} -.text-3xl { - font-size: 1.875rem; - line-height: 2.25rem; -} -.text-xs { - font-size: 0.75rem; - line-height: 1rem; -} -.text-4xl { - font-size: 2.25rem; - line-height: 2.5rem; -} -.text-\[12px\] { - font-size: 12px; -} -.text-2xs { - font-size: .5rem; -} -.font-semibold { - font-weight: 600; -} -.font-extrabold { - font-weight: 800; -} -.font-normal { - font-weight: 300; -} -.font-medium { - font-weight: 500; -} -.font-bold { - font-weight: 700; -} -.uppercase { - text-transform: uppercase; -} -.lowercase { - text-transform: lowercase; -} -.capitalize { - text-transform: capitalize; -} -.italic { - font-style: italic; -} -.leading-6 { - line-height: 1.5rem; -} -.leading-5 { - line-height: 1.25rem; -} -.leading-7 { - line-height: 1.75rem; -} -.leading-4 { - line-height: 1rem; -} -.leading-tight { - line-height: 1.25; -} -.leading-none { - line-height: 1; -} -.leading-loose { - line-height: 2; -} -.leading-3 { - line-height: .75rem; -} -.leading-normal { - line-height: 1.5; -} -.leading-8 { - line-height: 2rem; -} -.tracking-tight { - letter-spacing: -0.025em; -} -.tracking-wide { - letter-spacing: 0.025em; -} -.tracking-wider { - letter-spacing: 0.05em; -} -.tracking-widest { - letter-spacing: 0.1em; -} -.tracking-tighter { - letter-spacing: -0.05em; -} -.text-skin-inverted { - --tw-text-opacity: 1; - color: rgba(var(--color-text-inverted), var(--tw-text-opacity)); -} -.text-skin-primary { - --tw-text-opacity: 1; - color: rgba(var(--color-text-primary), var(--tw-text-opacity)); -} -.text-skin-base { - --tw-text-opacity: 1; - color: rgba(var(--color-text-base), var(--tw-text-opacity)); -} -.text-green-900 { - --tw-text-opacity: 1; - color: rgb(6 78 59 / var(--tw-text-opacity)); -} -.text-green-600 { - --tw-text-opacity: 1; - color: rgb(5 150 105 / var(--tw-text-opacity)); -} -.text-skin-muted { - --tw-text-opacity: 1; - color: rgba(var(--color-text-muted), var(--tw-text-opacity)); -} -.text-white { - --tw-text-opacity: 1; - color: rgb(255 255 255 / var(--tw-text-opacity)); -} -.text-green-300 { - --tw-text-opacity: 1; - color: rgb(110 231 183 / var(--tw-text-opacity)); -} -.text-gray-300 { - --tw-text-opacity: 1; - color: rgb(209 213 219 / var(--tw-text-opacity)); -} -.text-gray-400 { - --tw-text-opacity: 1; - color: rgb(156 163 175 / var(--tw-text-opacity)); -} -.text-gray-500 { - --tw-text-opacity: 1; - color: rgb(107 114 128 / var(--tw-text-opacity)); -} -.text-green-500 { - --tw-text-opacity: 1; - color: rgb(16 185 129 / var(--tw-text-opacity)); -} -.text-green-400 { - --tw-text-opacity: 1; - color: rgb(52 211 153 / var(--tw-text-opacity)); -} -.text-green-800 { - --tw-text-opacity: 1; - color: rgb(6 95 70 / var(--tw-text-opacity)); -} -.text-red-400 { - --tw-text-opacity: 1; - color: rgb(248 113 113 / var(--tw-text-opacity)); -} -.text-red-800 { - --tw-text-opacity: 1; - color: rgb(153 27 27 / var(--tw-text-opacity)); -} -.text-blue-400 { - --tw-text-opacity: 1; - color: rgb(96 165 250 / var(--tw-text-opacity)); -} -.text-blue-700 { - --tw-text-opacity: 1; - color: rgb(29 78 216 / var(--tw-text-opacity)); -} -.text-red-700 { - --tw-text-opacity: 1; - color: rgb(185 28 28 / var(--tw-text-opacity)); -} -.text-red-500 { - --tw-text-opacity: 1; - color: rgb(239 68 68 / var(--tw-text-opacity)); -} -.text-green-700 { - --tw-text-opacity: 1; - color: rgb(4 120 87 / var(--tw-text-opacity)); -} -.text-skin-inverted-muted { - --tw-text-opacity: 1; - color: rgba(var(--color-text-inverted-muted), var(--tw-text-opacity)); -} -.text-skin-menu { - --tw-text-opacity: 1; - color: rgba(var(--color-text-link-menu), var(--tw-text-opacity)); -} -.text-skin-menu-hover { - --tw-text-opacity: 1; - color: rgba(var(--color-text-link-menu-hover), var(--tw-text-opacity)); -} -.text-yellow-500 { - --tw-text-opacity: 1; - color: rgb(234 179 8 / var(--tw-text-opacity)); -} -.text-flag-green { - --tw-text-opacity: 1; - color: rgb(9 145 112 / var(--tw-text-opacity)); -} -.text-gray-800 { - --tw-text-opacity: 1; - color: rgb(31 41 55 / var(--tw-text-opacity)); -} -.text-\[\#1E9DEA\] { - --tw-text-opacity: 1; - color: rgb(30 157 234 / var(--tw-text-opacity)); -} -.text-blue-800 { - --tw-text-opacity: 1; - color: rgb(30 64 175 / var(--tw-text-opacity)); -} -.text-yellow-800 { - --tw-text-opacity: 1; - color: rgb(133 77 14 / var(--tw-text-opacity)); -} -.text-red-600 { - --tw-text-opacity: 1; - color: rgb(220 38 38 / var(--tw-text-opacity)); -} -.text-yellow-400 { - --tw-text-opacity: 1; - color: rgb(250 204 21 / var(--tw-text-opacity)); -} -.text-yellow-700 { - --tw-text-opacity: 1; - color: rgb(161 98 7 / var(--tw-text-opacity)); -} -.text-gray-700 { - --tw-text-opacity: 1; - color: rgb(55 65 81 / var(--tw-text-opacity)); -} -.text-gray-200 { - --tw-text-opacity: 1; - color: rgb(229 231 235 / var(--tw-text-opacity)); -} -.text-gray-100 { - --tw-text-opacity: 1; - color: rgb(243 244 246 / var(--tw-text-opacity)); -} -.text-blue-500 { - --tw-text-opacity: 1; - color: rgb(59 130 246 / var(--tw-text-opacity)); -} -.text-secondary-700 { - --tw-text-opacity: 1; - color: rgb(55 65 81 / var(--tw-text-opacity)); -} -.text-negative-600 { - --tw-text-opacity: 1; - color: rgb(220 38 38 / var(--tw-text-opacity)); -} -.text-negative-400 { - --tw-text-opacity: 1; - color: rgb(248 113 113 / var(--tw-text-opacity)); -} -.text-secondary-400 { - --tw-text-opacity: 1; - color: rgb(156 163 175 / var(--tw-text-opacity)); -} -.text-secondary-600 { - --tw-text-opacity: 1; - color: rgb(75 85 99 / var(--tw-text-opacity)); -} -.text-primary-600 { - --tw-text-opacity: 1; - color: rgb(5 150 105 / var(--tw-text-opacity)); -} -.text-secondary-500 { - --tw-text-opacity: 1; - color: rgb(107 114 128 / var(--tw-text-opacity)); -} -.text-negative-800 { - --tw-text-opacity: 1; - color: rgb(153 27 27 / var(--tw-text-opacity)); -} -.text-negative-700 { - --tw-text-opacity: 1; - color: rgb(185 28 28 / var(--tw-text-opacity)); -} -.text-negative-500 { - --tw-text-opacity: 1; - color: rgb(239 68 68 / var(--tw-text-opacity)); -} -.text-secondary-300 { - --tw-text-opacity: 1; - color: rgb(209 213 219 / var(--tw-text-opacity)); -} -.text-red-900 { - --tw-text-opacity: 1; - color: rgb(127 29 29 / var(--tw-text-opacity)); -} -.underline { - -webkit-text-decoration-line: underline; - text-decoration-line: underline; -} -.antialiased { - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} -.placeholder-skin-input::-moz-placeholder { - --tw-placeholder-opacity: 1; - color: rgba(var(--color-text-muted), var(--tw-placeholder-opacity)); -} -.placeholder-skin-input:-ms-input-placeholder { - --tw-placeholder-opacity: 1; - color: rgba(var(--color-text-muted), var(--tw-placeholder-opacity)); -} -.placeholder-skin-input::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(var(--color-text-muted), var(--tw-placeholder-opacity)); -} -.placeholder-gray-500::-moz-placeholder { - --tw-placeholder-opacity: 1; - color: rgb(107 114 128 / var(--tw-placeholder-opacity)); -} -.placeholder-gray-500:-ms-input-placeholder { - --tw-placeholder-opacity: 1; - color: rgb(107 114 128 / var(--tw-placeholder-opacity)); -} -.placeholder-gray-500::placeholder { - --tw-placeholder-opacity: 1; - color: rgb(107 114 128 / var(--tw-placeholder-opacity)); -} -.placeholder-red-300::-moz-placeholder { - --tw-placeholder-opacity: 1; - color: rgb(252 165 165 / var(--tw-placeholder-opacity)); -} -.placeholder-red-300:-ms-input-placeholder { - --tw-placeholder-opacity: 1; - color: rgb(252 165 165 / var(--tw-placeholder-opacity)); -} -.placeholder-red-300::placeholder { - --tw-placeholder-opacity: 1; - color: rgb(252 165 165 / var(--tw-placeholder-opacity)); -} -.opacity-25 { - opacity: 0.25; -} -.opacity-75 { - opacity: 0.75; -} -.opacity-0 { - opacity: 0; -} -.opacity-100 { - opacity: 1; -} -.opacity-70 { - opacity: 0.7; -} -.opacity-50 { - opacity: 0.5; -} -.opacity-20 { - opacity: 0.2; -} -.opacity-60 { - opacity: 0.6; -} -.shadow-lg { - --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); - --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color); - box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), var(--tw-shadow); - box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), var(--tw-shadow); - box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow); -} -.shadow { - --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1); - --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color); - box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), var(--tw-shadow); - box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), var(--tw-shadow); - box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow); -} -.shadow-sm { - --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05); - --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color); - box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), var(--tw-shadow); - box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), var(--tw-shadow); - box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow); -} -.shadow-xl { - --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1); - --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color); - box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), var(--tw-shadow); - box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), var(--tw-shadow); - box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow); -} -.shadow-md { - --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1); - --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color); - box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), var(--tw-shadow); - box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), var(--tw-shadow); - box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow); -} -.shadow-none { - --tw-shadow: 0 0 rgba(0,0,0,0); - --tw-shadow-colored: 0 0 rgba(0,0,0,0); - box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), var(--tw-shadow); - box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), var(--tw-shadow); - box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow); -} -.outline-none { - outline: 2px solid transparent; - outline-offset: 2px; -} -.ring-2 { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0)); -} -.ring-8 { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0)); -} -.ring-1 { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0)); -} -.ring-4 { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0)); -} -.ring-0 { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0)); -} -.ring-white { - --tw-ring-opacity: 1; - --tw-ring-color: rgb(255 255 255 / var(--tw-ring-opacity)); -} -.ring-body { - --tw-ring-color: rgb(var(--color-body-fill)); -} -.ring-black { - --tw-ring-opacity: 1; - --tw-ring-color: rgb(22 27 34 / var(--tw-ring-opacity)); -} -.ring-card { - --tw-ring-color: rgb(var(--color-card-fill)); -} -.ring-gray-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgb(209 213 219 / var(--tw-ring-opacity)); -} -.ring-green-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgb(16 185 129 / var(--tw-ring-opacity)); -} -.ring-opacity-5 { - --tw-ring-opacity: 0.05; -} -.blur { - --tw-blur: blur(8px); - filter: var(--tw-filter); -} -.filter { - filter: var(--tw-filter); -} -.backdrop-blur-sm { - --tw-backdrop-blur: blur(4px); - -webkit-backdrop-filter: var(--tw-backdrop-filter); - backdrop-filter: var(--tw-backdrop-filter); -} -.backdrop-filter { - -webkit-backdrop-filter: var(--tw-backdrop-filter); - backdrop-filter: var(--tw-backdrop-filter); -} -.transition { - transition-property: color, background-color, border-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-text-decoration-color, -webkit-backdrop-filter; - transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter; - transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-text-decoration-color, -webkit-backdrop-filter; - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); - transition-duration: 150ms; -} -.transition-transform { - transition-property: transform; - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); - transition-duration: 150ms; -} -.transition-all { - transition-property: all; - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); - transition-duration: 150ms; -} -.transition-opacity { - transition-property: opacity; - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); - transition-duration: 150ms; -} -.transition-colors { - transition-property: color, background-color, border-color, fill, stroke, -webkit-text-decoration-color; - transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; - transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, -webkit-text-decoration-color; - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); - transition-duration: 150ms; -} -.delay-200 { - transition-delay: 200ms; -} -.duration-500 { - transition-duration: 500ms; -} -.duration-150 { - transition-duration: 150ms; -} -.duration-300 { - transition-duration: 300ms; -} -.duration-100 { - transition-duration: 100ms; -} -.duration-200 { - transition-duration: 200ms; -} -.duration-75 { - transition-duration: 75ms; -} -.ease-in-out { - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); -} -.ease-out { - transition-timing-function: cubic-bezier(0, 0, 0.2, 1); -} -.ease-in { - transition-timing-function: cubic-bezier(0.4, 0, 1, 1); -} -.ease-linear { - transition-timing-function: linear; -} -.hide-scrollbar::-webkit-scrollbar { - display: none; -} -.hide-scrollbar { - -ms-overflow-style: none; - scrollbar-width: none; -} -.line-clamp-2 { - overflow: hidden; - display: -webkit-box; - -webkit-box-orient: vertical; - -webkit-line-clamp: 2; -} -/*@import "rain.css";*/ -/*@import "christmas.css";*/ - -:root { - --brand-laravel: #FF2D20; - --brand-livewire: #fb70a9; - --brand-inertia: #8B5CF6; - --brand-javascript: #F7DF1E; - --brand-typesript: #007ACC; - --brand-react: #53C1DE; - --brand-vue-js: #41B883; - --brand-php: #777BB3; - --brand-digital-ocean: #0080FF; - --brand-forge: #19B69B; - --brand-packages: #4F46E5; - --brand-outils: #22D3EE; - --brand-tailwindcss: #06B6D4; - --brand-design: #78350F; - --brand-alpinejs: #2D3441; - --brand-open-source: #F97316; - --brand-freelance: #F43F5E; - --brand-salaire: #C7D2FE; - --brand-projets: #14B8A6; - --brand-entrepreneuriat: #0EA5E9; - --brand-paiement-en-ligne: #10B981; - --brand-branding: #EC4899; - --brand-applications: #0284C7; - --brand-developpement: #4d7c0f; - --brand-event: #36BFFA; - --brand-tutoriel: #164E63; - --brand-communaute: #DD2590; - --brand-astuces: #D6BBFB; -} - -html { - scroll-behavior: smooth; -} - -[x-cloak] { display: none !important; } - -.logo-dark { - display: none; -} - -.theme-dark .logo-white { - display: none; -} - -.theme-dark .logo-dark { - display: block; -} - -.focus-within\:ring-2[focus-within] { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0)); -} - -.focus-within\:ring-2:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0)); -} - -.focus-within\:ring-green-500[focus-within] { - --tw-ring-opacity: 1; - --tw-ring-color: rgb(16 185 129 / var(--tw-ring-opacity)); -} - -.focus-within\:ring-green-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgb(16 185 129 / var(--tw-ring-opacity)); -} - -.focus-within\:ring-offset-2[focus-within] { - --tw-ring-offset-width: 2px; -} - -.focus-within\:ring-offset-2:focus-within { - --tw-ring-offset-width: 2px; -} - -.hover\:scale-125:hover { - --tw-scale-x: 1.25; - --tw-scale-y: 1.25; - transform: var(--tw-transform); -} - -.hover\:border-green-600:hover { - --tw-border-opacity: 1; - border-color: rgb(5 150 105 / var(--tw-border-opacity)); -} - -.hover\:border-green-500:hover { - --tw-border-opacity: 1; - border-color: rgb(16 185 129 / var(--tw-border-opacity)); -} - -.hover\:border-skin-base:hover { - --tw-border-opacity: 1; - border-color: rgba(var(--color-border), var(--tw-border-opacity)); -} - -.hover\:bg-skin-button-hover:hover { - --tw-bg-opacity: 1; - background-color: rgba(var(--color-card-muted-fill), var(--tw-bg-opacity)); -} - -.hover\:bg-skin-card-muted:hover { - --tw-bg-opacity: 1; - background-color: rgba(var(--color-card-muted-fill), var(--tw-bg-opacity)); -} - -.hover\:bg-green-700:hover { - --tw-bg-opacity: 1; - background-color: rgb(4 120 87 / var(--tw-bg-opacity)); -} - -.hover\:bg-skin-card:hover { - --tw-bg-opacity: 1; - background-color: rgba(var(--color-card-fill), var(--tw-bg-opacity)); -} - -.hover\:bg-skin-footer:hover { - --tw-bg-opacity: 1; - background-color: rgba(var(--color-footer-fill), var(--tw-bg-opacity)); -} - -.hover\:bg-skin-body:hover { - --tw-bg-opacity: 1; - background-color: rgba(var(--color-body-fill), var(--tw-bg-opacity)); -} - -.hover\:bg-skin-primary:hover { - --tw-bg-opacity: 1; - background-color: rgba(var(--color-text-primary), var(--tw-bg-opacity)); -} - -.hover\:bg-green-600:hover { - --tw-bg-opacity: 1; - background-color: rgb(5 150 105 / var(--tw-bg-opacity)); -} - -.hover\:bg-gray-800:hover { - --tw-bg-opacity: 1; - background-color: rgb(31 41 55 / var(--tw-bg-opacity)); -} - -.hover\:bg-red-50:hover { - --tw-bg-opacity: 1; - background-color: rgb(254 242 242 / var(--tw-bg-opacity)); -} - -.hover\:bg-primary-100:hover { - --tw-bg-opacity: 1; - background-color: rgb(209 250 229 / var(--tw-bg-opacity)); -} - -.hover\:bg-primary-600:hover { - --tw-bg-opacity: 1; - background-color: rgb(5 150 105 / var(--tw-bg-opacity)); -} - -.hover\:bg-secondary-50:hover { - --tw-bg-opacity: 1; - background-color: rgb(249 250 251 / var(--tw-bg-opacity)); -} - -.hover\:bg-negative-500:hover { - --tw-bg-opacity: 1; - background-color: rgb(239 68 68 / var(--tw-bg-opacity)); -} - -.hover\:bg-primary-500:hover { - --tw-bg-opacity: 1; - background-color: rgb(16 185 129 / var(--tw-bg-opacity)); -} - -.hover\:text-skin-primary-hover:hover { - --tw-text-opacity: 1; - color: rgba(var(--color-text-primary-hover), var(--tw-text-opacity)); -} - -.hover\:text-skin-base:hover { - --tw-text-opacity: 1; - color: rgba(var(--color-text-base), var(--tw-text-opacity)); -} - -.hover\:text-green-500:hover { - --tw-text-opacity: 1; - color: rgb(16 185 129 / var(--tw-text-opacity)); -} - -.hover\:text-skin-inverted:hover { - --tw-text-opacity: 1; - color: rgba(var(--color-text-inverted), var(--tw-text-opacity)); -} - -.hover\:text-blue-600:hover { - --tw-text-opacity: 1; - color: rgb(37 99 235 / var(--tw-text-opacity)); -} - -.hover\:text-skin-primary:hover { - --tw-text-opacity: 1; - color: rgba(var(--color-text-primary), var(--tw-text-opacity)); -} - -.hover\:text-skin-menu-hover:hover { - --tw-text-opacity: 1; - color: rgba(var(--color-text-link-menu-hover), var(--tw-text-opacity)); -} - -.hover\:text-white:hover { - --tw-text-opacity: 1; - color: rgb(255 255 255 / var(--tw-text-opacity)); -} - -.hover\:text-yellow-600:hover { - --tw-text-opacity: 1; - color: rgb(202 138 4 / var(--tw-text-opacity)); -} - -.hover\:text-red-500:hover { - --tw-text-opacity: 1; - color: rgb(239 68 68 / var(--tw-text-opacity)); -} - -.hover\:text-\[\#29aaec\]:hover { - --tw-text-opacity: 1; - color: rgb(41 170 236 / var(--tw-text-opacity)); -} - -.hover\:text-\[\#004182\]:hover { - --tw-text-opacity: 1; - color: rgb(0 65 130 / var(--tw-text-opacity)); -} - -.hover\:text-skin-inverted-muted:hover { - --tw-text-opacity: 1; - color: rgba(var(--color-text-inverted-muted), var(--tw-text-opacity)); -} - -.hover\:text-skin-muted:hover { - --tw-text-opacity: 1; - color: rgba(var(--color-text-muted), var(--tw-text-opacity)); -} - -.hover\:text-gray-500:hover { - --tw-text-opacity: 1; - color: rgb(107 114 128 / var(--tw-text-opacity)); -} - -.hover\:text-negative-500:hover { - --tw-text-opacity: 1; - color: rgb(239 68 68 / var(--tw-text-opacity)); -} - -.hover\:text-secondary-700:hover { - --tw-text-opacity: 1; - color: rgb(55 65 81 / var(--tw-text-opacity)); -} - -.hover\:text-primary-500:hover { - --tw-text-opacity: 1; - color: rgb(16 185 129 / var(--tw-text-opacity)); -} - -.hover\:text-secondary-500:hover { - --tw-text-opacity: 1; - color: rgb(107 114 128 / var(--tw-text-opacity)); -} - -.hover\:text-negative-400:hover { - --tw-text-opacity: 1; - color: rgb(248 113 113 / var(--tw-text-opacity)); -} - -.hover\:underline:hover { - -webkit-text-decoration-line: underline; - text-decoration-line: underline; -} - -.hover\:opacity-50:hover { - opacity: 0.5; -} - -.focus\:z-10:focus { - z-index: 10; -} - -.focus\:border:focus { - border-width: 1px; -} - -.focus\:border-0:focus { - border-width: 0px; -} - -.focus\:border-green-500:focus { - --tw-border-opacity: 1; - border-color: rgb(16 185 129 / var(--tw-border-opacity)); -} - -.focus\:border-skin-input:focus { - --tw-border-opacity: 1; - border-color: rgba(var(--color-input-border), var(--tw-border-opacity)); -} - -.focus\:border-green-300:focus { - --tw-border-opacity: 1; - border-color: rgb(110 231 183 / var(--tw-border-opacity)); -} - -.focus\:border-flag-green:focus { - --tw-border-opacity: 1; - border-color: rgb(9 145 112 / var(--tw-border-opacity)); -} - -.focus\:border-skin-base:focus { - --tw-border-opacity: 1; - border-color: rgba(var(--color-border), var(--tw-border-opacity)); -} - -.focus\:border-transparent:focus { - border-color: transparent; -} - -.focus\:border-blue-300:focus { - --tw-border-opacity: 1; - border-color: rgb(147 197 253 / var(--tw-border-opacity)); -} - -.focus\:border-primary-600:focus { - --tw-border-opacity: 1; - border-color: rgb(5 150 105 / var(--tw-border-opacity)); -} - -.focus\:border-red-500:focus { - --tw-border-opacity: 1; - border-color: rgb(239 68 68 / var(--tw-border-opacity)); -} - -.focus\:bg-primary-100:focus { - --tw-bg-opacity: 1; - background-color: rgb(209 250 229 / var(--tw-bg-opacity)); -} - -.focus\:text-skin-base:focus { - --tw-text-opacity: 1; - color: rgba(var(--color-text-base), var(--tw-text-opacity)); -} - -.focus\:text-green-600:focus { - --tw-text-opacity: 1; - color: rgb(5 150 105 / var(--tw-text-opacity)); -} - -.focus\:text-primary-800:focus { - --tw-text-opacity: 1; - color: rgb(6 95 70 / var(--tw-text-opacity)); -} - -.focus\:underline:focus { - -webkit-text-decoration-line: underline; - text-decoration-line: underline; -} - -.focus\:placeholder-skin-input-focus:focus::-moz-placeholder { - --tw-placeholder-opacity: 1; - color: rgba(var(--color-text-base), var(--tw-placeholder-opacity)); -} - -.focus\:placeholder-skin-input-focus:focus:-ms-input-placeholder { - --tw-placeholder-opacity: 1; - color: rgba(var(--color-text-base), var(--tw-placeholder-opacity)); -} - -.focus\:placeholder-skin-input-focus:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(var(--color-text-base), var(--tw-placeholder-opacity)); -} - -.focus\:shadow-none:focus { - --tw-shadow: 0 0 rgba(0,0,0,0); - --tw-shadow-colored: 0 0 rgba(0,0,0,0); - box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), var(--tw-shadow); - box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), var(--tw-shadow); - box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow); -} - -.focus\:shadow-md:focus { - --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1); - --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color); - box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), var(--tw-shadow); - box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), var(--tw-shadow); - box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow); -} - -.focus\:outline-none:focus { - outline: 2px solid transparent; - outline-offset: 2px; -} - -.focus\:ring-2:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0)); -} - -.focus\:ring-1:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0)); -} - -.focus\:ring-0:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0)); -} - -.focus\:ring:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0)); -} - -.focus\:ring-inset:focus { - --tw-ring-inset: inset; -} - -.focus\:ring-green-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgb(16 185 129 / var(--tw-ring-opacity)); -} - -.focus\:ring-blue-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgb(37 99 235 / var(--tw-ring-opacity)); -} - -.focus\:ring-flag-green:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgb(9 145 112 / var(--tw-ring-opacity)); -} - -.focus\:ring-primary-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgb(5 150 105 / var(--tw-ring-opacity)); -} - -.focus\:ring-secondary-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgb(229 231 235 / var(--tw-ring-opacity)); -} - -.focus\:ring-red-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgb(239 68 68 / var(--tw-ring-opacity)); -} - -.focus\:ring-opacity-50:focus { - --tw-ring-opacity: 0.5; -} - -.focus\:ring-offset-2:focus { - --tw-ring-offset-width: 2px; -} - -.focus\:ring-offset-body:focus { - --tw-ring-offset-color: rgb(var(--color-body-fill)); -} - -.focus\:ring-offset-blue-50:focus { - --tw-ring-offset-color: #eff6ff; -} - -.active\:bg-skin-footer:active { - --tw-bg-opacity: 1; - background-color: rgba(var(--color-footer-fill), var(--tw-bg-opacity)); -} - -.active\:bg-gray-100:active { - --tw-bg-opacity: 1; - background-color: rgb(243 244 246 / var(--tw-bg-opacity)); -} - -.active\:text-skin-base:active { - --tw-text-opacity: 1; - color: rgba(var(--color-text-base), var(--tw-text-opacity)); -} - -.active\:text-gray-700:active { - --tw-text-opacity: 1; - color: rgb(55 65 81 / var(--tw-text-opacity)); -} - -.group:hover .group-hover\:block { - display: block; -} - -.group:hover .group-hover\:hidden { - display: none; -} - -.group:hover .group-hover\:rotate-90 { - --tw-rotate: 90deg; - transform: var(--tw-transform); -} - -.group:hover .group-hover\:bg-skin-card-gray { - --tw-bg-opacity: 1; - background-color: rgba(var(--color-card-gray), var(--tw-bg-opacity)); -} - -.group:hover .group-hover\:text-skin-primary { - --tw-text-opacity: 1; - color: rgba(var(--color-text-primary), var(--tw-text-opacity)); -} - -.group:hover .group-hover\:text-green-400 { - --tw-text-opacity: 1; - color: rgb(52 211 153 / var(--tw-text-opacity)); -} - -.group:hover .group-hover\:text-skin-base { - --tw-text-opacity: 1; - color: rgba(var(--color-text-base), var(--tw-text-opacity)); -} - -.group:hover .group-hover\:text-white { - --tw-text-opacity: 1; - color: rgb(255 255 255 / var(--tw-text-opacity)); -} - -.group:hover .group-hover\:text-green-200 { - --tw-text-opacity: 1; - color: rgb(167 243 208 / var(--tw-text-opacity)); -} - -.group:hover .group-hover\:underline { - -webkit-text-decoration-line: underline; - text-decoration-line: underline; -} - -.group:hover .group-hover\:opacity-75 { - opacity: 0.75; -} - -.dark .dark\:border-0 { - border-width: 0px; -} - -.dark .dark\:border { - border-width: 1px; -} - -.dark .dark\:border-none { - border-style: none; -} - -.dark .dark\:border-gray-700 { - --tw-border-opacity: 1; - border-color: rgb(55 65 81 / var(--tw-border-opacity)); -} - -.dark .dark\:border-secondary-600 { - --tw-border-opacity: 1; - border-color: rgb(75 85 99 / var(--tw-border-opacity)); -} - -.dark .dark\:border-gray-400 { - --tw-border-opacity: 1; - border-color: rgb(156 163 175 / var(--tw-border-opacity)); -} - -.dark .dark\:border-secondary-400 { - --tw-border-opacity: 1; - border-color: rgb(156 163 175 / var(--tw-border-opacity)); -} - -.dark .dark\:border-negative-600 { - --tw-border-opacity: 1; - border-color: rgb(220 38 38 / var(--tw-border-opacity)); -} - -.dark .dark\:border-negative-700 { - --tw-border-opacity: 1; - border-color: rgb(185 28 28 / var(--tw-border-opacity)); -} - -.dark .dark\:bg-secondary-800 { - --tw-bg-opacity: 1; - background-color: rgb(31 41 55 / var(--tw-bg-opacity)); -} - -.dark .dark\:bg-secondary-700 { - --tw-bg-opacity: 1; - background-color: rgb(55 65 81 / var(--tw-bg-opacity)); -} - -.dark .dark\:bg-opacity-60 { - --tw-bg-opacity: 0.6; -} - -.dark .dark\:text-secondary-400 { - --tw-text-opacity: 1; - color: rgb(156 163 175 / var(--tw-text-opacity)); -} - -.dark .dark\:text-negative-600 { - --tw-text-opacity: 1; - color: rgb(220 38 38 / var(--tw-text-opacity)); -} - -.dark .dark\:text-secondary-500 { - --tw-text-opacity: 1; - color: rgb(107 114 128 / var(--tw-text-opacity)); -} - -.dark .dark\:text-secondary-600 { - --tw-text-opacity: 1; - color: rgb(75 85 99 / var(--tw-text-opacity)); -} - -.dark .dark\:text-gray-400 { - --tw-text-opacity: 1; - color: rgb(156 163 175 / var(--tw-text-opacity)); -} - -.dark .dark\:hover\:bg-secondary-700:hover { - --tw-bg-opacity: 1; - background-color: rgb(55 65 81 / var(--tw-bg-opacity)); -} - -.dark .dark\:hover\:text-secondary-600:hover { - --tw-text-opacity: 1; - color: rgb(75 85 99 / var(--tw-text-opacity)); -} - -.dark .dark\:hover\:text-secondary-100:hover { - --tw-text-opacity: 1; - color: rgb(243 244 246 / var(--tw-text-opacity)); -} - -.dark .dark\:focus\:bg-secondary-700:focus { - --tw-bg-opacity: 1; - background-color: rgb(55 65 81 / var(--tw-bg-opacity)); -} - -.dark .dark\:focus\:ring-secondary-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgb(156 163 175 / var(--tw-ring-opacity)); -} - -@media (min-width: 640px) { - - .sm\:prose-base { - font-size: 1rem; - line-height: 1.75; - } - - .sm\:prose-base :where(p):not(:where([class~="not-prose"] *)) { - margin-top: 1.25em; - margin-bottom: 1.25em; - } - - .sm\:prose-base :where([class~="lead"]):not(:where([class~="not-prose"] *)) { - font-size: 1.25em; - line-height: 1.6; - margin-top: 1.2em; - margin-bottom: 1.2em; - } - - .sm\:prose-base :where(blockquote):not(:where([class~="not-prose"] *)) { - margin-top: 1.6em; - margin-bottom: 1.6em; - padding-left: 1em; - } - - .sm\:prose-base :where(h1):not(:where([class~="not-prose"] *)) { - font-size: 2.25em; - margin-top: 0; - margin-bottom: 0.8888889em; - line-height: 1.1111111; - } - - .sm\:prose-base :where(h2):not(:where([class~="not-prose"] *)) { - font-size: 1.5em; - margin-top: 2em; - margin-bottom: 1em; - line-height: 1.3333333; - } - - .sm\:prose-base :where(h3):not(:where([class~="not-prose"] *)) { - font-size: 1.25em; - margin-top: 1.6em; - margin-bottom: 0.6em; - line-height: 1.6; - } - - .sm\:prose-base :where(h4):not(:where([class~="not-prose"] *)) { - margin-top: 1.5em; - margin-bottom: 0.5em; - line-height: 1.5; - } - - .sm\:prose-base :where(img):not(:where([class~="not-prose"] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .sm\:prose-base :where(video):not(:where([class~="not-prose"] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .sm\:prose-base :where(figure):not(:where([class~="not-prose"] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .sm\:prose-base :where(figure > *):not(:where([class~="not-prose"] *)) { - margin-top: 0; - margin-bottom: 0; - } - - .sm\:prose-base :where(figcaption):not(:where([class~="not-prose"] *)) { - font-size: 0.875em; - line-height: 1.4285714; - margin-top: 0.8571429em; - } - - .sm\:prose-base :where(code):not(:where([class~="not-prose"] *)) { - font-size: 0.875em; - } - - .sm\:prose-base :where(h2 code):not(:where([class~="not-prose"] *)) { - font-size: 0.875em; - } - - .sm\:prose-base :where(h3 code):not(:where([class~="not-prose"] *)) { - font-size: 0.9em; - } - - .sm\:prose-base :where(pre):not(:where([class~="not-prose"] *)) { - font-size: 0.875em; - line-height: 1.7142857; - margin-top: 1.7142857em; - margin-bottom: 1.7142857em; - border-radius: 0.375rem; - padding-top: 0.8571429em; - padding-right: 1.1428571em; - padding-bottom: 0.8571429em; - padding-left: 1.1428571em; - } - - .sm\:prose-base :where(ol):not(:where([class~="not-prose"] *)) { - padding-left: 1.625em; - } - - .sm\:prose-base :where(ul):not(:where([class~="not-prose"] *)) { - padding-left: 1.625em; - } - - .sm\:prose-base :where(li):not(:where([class~="not-prose"] *)) { - margin-top: 0.5em; - margin-bottom: 0.5em; - } - - .sm\:prose-base :where(ol > li):not(:where([class~="not-prose"] *)) { - padding-left: 0.375em; - } - - .sm\:prose-base :where(ul > li):not(:where([class~="not-prose"] *)) { - padding-left: 0.375em; - } - - .sm\:prose-base > :where(ul > li p):not(:where([class~="not-prose"] *)) { - margin-top: 0.75em; - margin-bottom: 0.75em; - } - - .sm\:prose-base > :where(ul > li > *:first-child):not(:where([class~="not-prose"] *)) { - margin-top: 1.25em; - } - - .sm\:prose-base > :where(ul > li > *:last-child):not(:where([class~="not-prose"] *)) { - margin-bottom: 1.25em; - } - - .sm\:prose-base > :where(ol > li > *:first-child):not(:where([class~="not-prose"] *)) { - margin-top: 1.25em; - } - - .sm\:prose-base > :where(ol > li > *:last-child):not(:where([class~="not-prose"] *)) { - margin-bottom: 1.25em; - } - - .sm\:prose-base :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"] *)) { - margin-top: 0.75em; - margin-bottom: 0.75em; - } - - .sm\:prose-base :where(hr):not(:where([class~="not-prose"] *)) { - margin-top: 3em; - margin-bottom: 3em; - } - - .sm\:prose-base :where(hr + *):not(:where([class~="not-prose"] *)) { - margin-top: 0; - } - - .sm\:prose-base :where(h2 + *):not(:where([class~="not-prose"] *)) { - margin-top: 0; - } - - .sm\:prose-base :where(h3 + *):not(:where([class~="not-prose"] *)) { - margin-top: 0; - } - - .sm\:prose-base :where(h4 + *):not(:where([class~="not-prose"] *)) { - margin-top: 0; - } - - .sm\:prose-base :where(table):not(:where([class~="not-prose"] *)) { - font-size: 0.875em; - line-height: 1.7142857; - } - - .sm\:prose-base :where(thead th):not(:where([class~="not-prose"] *)) { - padding-right: 0.5714286em; - padding-bottom: 0.5714286em; - padding-left: 0.5714286em; - } - - .sm\:prose-base :where(thead th:first-child):not(:where([class~="not-prose"] *)) { - padding-left: 0; - } - - .sm\:prose-base :where(thead th:last-child):not(:where([class~="not-prose"] *)) { - padding-right: 0; - } - - .sm\:prose-base :where(tbody td):not(:where([class~="not-prose"] *)) { - padding-top: 0.5714286em; - padding-right: 0.5714286em; - padding-bottom: 0.5714286em; - padding-left: 0.5714286em; - } - - .sm\:prose-base :where(tbody td:first-child):not(:where([class~="not-prose"] *)) { - padding-left: 0; - } - - .sm\:prose-base :where(tbody td:last-child):not(:where([class~="not-prose"] *)) { - padding-right: 0; - } - - .sm\:prose-base > :where(:first-child):not(:where([class~="not-prose"] *)) { - margin-top: 0; - } - - .sm\:prose-base > :where(:last-child):not(:where([class~="not-prose"] *)) { - margin-bottom: 0; - } - - .sm\:absolute { - position: absolute; - } - - .sm\:inset-auto { - top: auto; - right: auto; - bottom: auto; - left: auto; - } - - .sm\:top-10 { - top: 2.5rem; - } - - .sm\:right-0 { - right: 0px; - } - - .sm\:top-0 { - top: 0px; - } - - .sm\:order-last { - order: 9999; - } - - .sm\:col-span-1 { - grid-column: span 1 / span 1; - } - - .sm\:col-span-2 { - grid-column: span 2 / span 2; - } - - .sm\:col-span-3 { - grid-column: span 3 / span 3; - } - - .sm\:mx-auto { - margin-left: auto; - margin-right: auto; - } - - .sm\:-mx-4 { - margin-left: -1rem; - margin-right: -1rem; - } - - .sm\:mx-0 { - margin-left: 0px; - margin-right: 0px; - } - - .sm\:my-8 { - margin-top: 2rem; - margin-bottom: 2rem; - } - - .sm\:mt-0 { - margin-top: 0px; - } - - .sm\:mt-14 { - margin-top: 3.5rem; - } - - .sm\:mt-5 { - margin-top: 1.25rem; - } - - .sm\:ml-3 { - margin-left: 0.75rem; - } - - .sm\:mt-12 { - margin-top: 3rem; - } - - .sm\:ml-0 { - margin-left: 0px; - } - - .sm\:mt-8 { - margin-top: 2rem; - } - - .sm\:ml-2 { - margin-left: 0.5rem; - } - - .sm\:mt-px { - margin-top: 1px; - } - - .sm\:-mt-16 { - margin-top: -4rem; - } - - .sm\:ml-4 { - margin-left: 1rem; - } - - .sm\:mt-1 { - margin-top: 0.25rem; - } - - .sm\:mt-6 { - margin-top: 1.5rem; - } - - .sm\:block { - display: block; - } - - .sm\:inline-block { - display: inline-block; - } - - .sm\:flex { - display: flex; - } - - .sm\:inline-flex { - display: inline-flex; - } - - .sm\:grid { - display: grid; - } - - .sm\:hidden { - display: none; - } - - .sm\:h-12 { - height: 3rem; - } - - .sm\:h-20 { - height: 5rem; - } - - .sm\:h-16 { - height: 4rem; - } - - .sm\:h-9 { - height: 2.25rem; - } - - .sm\:h-10 { - height: 2.5rem; - } - - .sm\:h-32 { - height: 8rem; - } - - .sm\:h-screen { - height: 100vh; - } - - .sm\:h-96 { - height: 24rem; - } - - .sm\:h-48 { - height: 12rem; - } - - .sm\:w-auto { - width: auto; - } - - .sm\:w-12 { - width: 3rem; - } - - .sm\:w-32 { - width: 8rem; - } - - .sm\:w-10 { - width: 2.5rem; - } - - .sm\:w-full { - width: 100%; - } - - .sm\:w-72 { - width: 18rem; - } - - .sm\:w-14 { - width: 3.5rem; - } - - .sm\:w-48 { - width: 12rem; - } - - .sm\:min-w-0 { - min-width: 0px; - } - - .sm\:max-w-lg { - max-width: 32rem; - } - - .sm\:max-w-4xl { - max-width: 56rem; - } - - .sm\:max-w-md { - max-width: 28rem; - } - - .sm\:max-w-3xl { - max-width: 48rem; - } - - .sm\:max-w-none { - max-width: none; - } - - .sm\:flex-1 { - flex: 1 1 0%; - } - - .sm\:shrink-0 { - flex-shrink: 0; - } - - .sm\:translate-y-0 { - --tw-translate-y: 0px; - transform: var(--tw-transform); - } - - .sm\:translate-x-2 { - --tw-translate-x: 0.5rem; - transform: var(--tw-transform); - } - - .sm\:translate-x-0 { - --tw-translate-x: 0px; - transform: var(--tw-transform); - } - - .sm\:scale-95 { - --tw-scale-x: .95; - --tw-scale-y: .95; - transform: var(--tw-transform); - } - - .sm\:scale-100 { - --tw-scale-x: 1; - --tw-scale-y: 1; - transform: var(--tw-transform); - } - - .sm\:grid-cols-3 { - grid-template-columns: repeat(3, minmax(0, 1fr)); - } - - .sm\:grid-cols-2 { - grid-template-columns: repeat(2, minmax(0, 1fr)); - } - - .sm\:grid-cols-5 { - grid-template-columns: repeat(5, minmax(0, 1fr)); - } - - .sm\:grid-cols-none { - grid-template-columns: none; - } - - .sm\:flex-row { - flex-direction: row; - } - - .sm\:flex-row-reverse { - flex-direction: row-reverse; - } - - .sm\:items-start { - align-items: flex-start; - } - - .sm\:items-end { - align-items: flex-end; - } - - .sm\:items-center { - align-items: center; - } - - .sm\:justify-start { - justify-content: flex-start; - } - - .sm\:justify-end { - justify-content: flex-end; - } - - .sm\:justify-center { - justify-content: center; - } - - .sm\:justify-between { - justify-content: space-between; - } - - .sm\:gap-8 { - gap: 2rem; - } - - .sm\:gap-12 { - gap: 3rem; - } - - .sm\:gap-4 { - gap: 1rem; - } - - .sm\:gap-10 { - gap: 2.5rem; - } - - .sm\:gap-x-6 { - -moz-column-gap: 1.5rem; - column-gap: 1.5rem; - } - - .sm\:gap-y-12 { - row-gap: 3rem; - } - - .sm\:gap-x-3 { - -moz-column-gap: 0.75rem; - column-gap: 0.75rem; - } - - .sm\:gap-y-0 { - row-gap: 0px; - } - - .sm\:space-y-0 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0px * var(--tw-space-y-reverse)); - } - - .sm\:space-x-4 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(1rem * var(--tw-space-x-reverse)); - margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse))); - } - - .sm\:space-y-5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(1.25rem * var(--tw-space-y-reverse)); - } - - .sm\:space-x-3 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(0.75rem * var(--tw-space-x-reverse)); - margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse))); - } - - .sm\:space-y-3 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.75rem * var(--tw-space-y-reverse)); - } - - .sm\:space-x-5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(1.25rem * var(--tw-space-x-reverse)); - margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse))); - } - - .sm\:space-x-6 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(1.5rem * var(--tw-space-x-reverse)); - margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse))); - } - - .sm\:space-y-10 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(2.5rem * var(--tw-space-y-reverse)); - } - - .sm\:truncate { - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; - } - - .sm\:rounded-lg { - border-radius: 0.5rem; - } - - .sm\:rounded-xl { - border-radius: 0.75rem; - } - - .sm\:border-0 { - border-width: 0px; - } - - .sm\:border-t { - border-top-width: 1px; - } - - .sm\:border-skin-base { - --tw-border-opacity: 1; - border-color: rgba(var(--color-border), var(--tw-border-opacity)); - } - - .sm\:p-10 { - padding: 2.5rem; - } - - .sm\:p-6 { - padding: 1.5rem; - } - - .sm\:p-8 { - padding: 2rem; - } - - .sm\:p-4 { - padding: 1rem; - } - - .sm\:p-0 { - padding: 0px; - } - - .sm\:p-5 { - padding: 1.25rem; - } - - .sm\:py-10 { - padding-top: 2.5rem; - padding-bottom: 2.5rem; - } - - .sm\:py-24 { - padding-top: 6rem; - padding-bottom: 6rem; - } - - .sm\:px-6 { - padding-left: 1.5rem; - padding-right: 1.5rem; - } - - .sm\:py-9 { - padding-top: 2.25rem; - padding-bottom: 2.25rem; - } - - .sm\:px-4 { - padding-left: 1rem; - padding-right: 1rem; - } - - .sm\:px-0 { - padding-left: 0px; - padding-right: 0px; - } - - .sm\:px-5 { - padding-left: 1.25rem; - padding-right: 1.25rem; - } - - .sm\:py-2 { - padding-top: 0.5rem; - padding-bottom: 0.5rem; - } - - .sm\:pt-14 { - padding-top: 3.5rem; - } - - .sm\:pt-24 { - padding-top: 6rem; - } - - .sm\:pb-64 { - padding-bottom: 16rem; - } - - .sm\:pt-0 { - padding-top: 0px; - } - - .sm\:pt-2 { - padding-top: 0.5rem; - } - - .sm\:pb-1 { - padding-bottom: 0.25rem; - } - - .sm\:pt-5 { - padding-top: 1.25rem; - } - - .sm\:pt-10 { - padding-top: 2.5rem; - } - - .sm\:pt-16 { - padding-top: 4rem; - } - - .sm\:pt-7 { - padding-top: 1.75rem; - } - - .sm\:pt-4 { - padding-top: 1rem; - } - - .sm\:pl-14 { - padding-left: 3.5rem; - } - - .sm\:text-left { - text-align: left; - } - - .sm\:text-center { - text-align: center; - } - - .sm\:text-right { - text-align: right; - } - - .sm\:align-middle { - vertical-align: middle; - } - - .sm\:text-base { - font-size: 1rem; - line-height: 1.5rem; - } - - .sm\:text-3xl { - font-size: 1.875rem; - line-height: 2.25rem; - } - - .sm\:text-lg { - font-size: 1.125rem; - line-height: 1.75rem; - } - - .sm\:text-2xl { - font-size: 1.5rem; - line-height: 2rem; - } - - .sm\:text-xl { - font-size: 1.25rem; - line-height: 1.75rem; - } - - .sm\:text-5xl { - font-size: 3rem; - line-height: 1; - } - - .sm\:text-sm { - font-size: 0.875rem; - line-height: 1.25rem; - } - - .sm\:text-4xl { - font-size: 2.25rem; - line-height: 2.5rem; - } - - .sm\:leading-none { - line-height: 1; - } - - .sm\:leading-10 { - line-height: 2.5rem; - } - - .sm\:leading-8 { - line-height: 2rem; - } - - .sm\:leading-5 { - line-height: 1.25rem; - } - - .sm\:shadow-md { - --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1); - --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color); - box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), var(--tw-shadow); - box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), var(--tw-shadow); - box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow); - } - - .sm\:duration-700 { - transition-duration: 700ms; - } -} - -@media (min-width: 768px) { - - .md\:prose-sm { - font-size: 0.875rem; - line-height: 1.7142857; - } - - .md\:prose-sm :where(p):not(:where([class~="not-prose"] *)) { - margin-top: 1.1428571em; - margin-bottom: 1.1428571em; - } - - .md\:prose-sm :where([class~="lead"]):not(:where([class~="not-prose"] *)) { - font-size: 1.2857143em; - line-height: 1.5555556; - margin-top: 0.8888889em; - margin-bottom: 0.8888889em; - } - - .md\:prose-sm :where(blockquote):not(:where([class~="not-prose"] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - padding-left: 1.1111111em; - } - - .md\:prose-sm :where(h1):not(:where([class~="not-prose"] *)) { - font-size: 2.1428571em; - margin-top: 0; - margin-bottom: 0.8em; - line-height: 1.2; - } - - .md\:prose-sm :where(h2):not(:where([class~="not-prose"] *)) { - font-size: 1.4285714em; - margin-top: 1.6em; - margin-bottom: 0.8em; - line-height: 1.4; - } - - .md\:prose-sm :where(h3):not(:where([class~="not-prose"] *)) { - font-size: 1.2857143em; - margin-top: 1.5555556em; - margin-bottom: 0.4444444em; - line-height: 1.5555556; - } - - .md\:prose-sm :where(h4):not(:where([class~="not-prose"] *)) { - margin-top: 1.4285714em; - margin-bottom: 0.5714286em; - line-height: 1.4285714; - } - - .md\:prose-sm :where(img):not(:where([class~="not-prose"] *)) { - margin-top: 1.7142857em; - margin-bottom: 1.7142857em; - } - - .md\:prose-sm :where(video):not(:where([class~="not-prose"] *)) { - margin-top: 1.7142857em; - margin-bottom: 1.7142857em; - } - - .md\:prose-sm :where(figure):not(:where([class~="not-prose"] *)) { - margin-top: 1.7142857em; - margin-bottom: 1.7142857em; - } - - .md\:prose-sm :where(figure > *):not(:where([class~="not-prose"] *)) { - margin-top: 0; - margin-bottom: 0; - } - - .md\:prose-sm :where(figcaption):not(:where([class~="not-prose"] *)) { - font-size: 0.8571429em; - line-height: 1.3333333; - margin-top: 0.6666667em; - } - - .md\:prose-sm :where(code):not(:where([class~="not-prose"] *)) { - font-size: 0.8571429em; - } - - .md\:prose-sm :where(h2 code):not(:where([class~="not-prose"] *)) { - font-size: 0.9em; - } - - .md\:prose-sm :where(h3 code):not(:where([class~="not-prose"] *)) { - font-size: 0.8888889em; - } - - .md\:prose-sm :where(pre):not(:where([class~="not-prose"] *)) { - font-size: 0.8571429em; - line-height: 1.6666667; - margin-top: 1.6666667em; - margin-bottom: 1.6666667em; - border-radius: 0.25rem; - padding-top: 0.6666667em; - padding-right: 1em; - padding-bottom: 0.6666667em; - padding-left: 1em; - } - - .md\:prose-sm :where(ol):not(:where([class~="not-prose"] *)) { - padding-left: 1.5714286em; - } - - .md\:prose-sm :where(ul):not(:where([class~="not-prose"] *)) { - padding-left: 1.5714286em; - } - - .md\:prose-sm :where(li):not(:where([class~="not-prose"] *)) { - margin-top: 0.2857143em; - margin-bottom: 0.2857143em; - } - - .md\:prose-sm :where(ol > li):not(:where([class~="not-prose"] *)) { - padding-left: 0.4285714em; - } - - .md\:prose-sm :where(ul > li):not(:where([class~="not-prose"] *)) { - padding-left: 0.4285714em; - } - - .md\:prose-sm > :where(ul > li p):not(:where([class~="not-prose"] *)) { - margin-top: 0.5714286em; - margin-bottom: 0.5714286em; - } - - .md\:prose-sm > :where(ul > li > *:first-child):not(:where([class~="not-prose"] *)) { - margin-top: 1.1428571em; - } - - .md\:prose-sm > :where(ul > li > *:last-child):not(:where([class~="not-prose"] *)) { - margin-bottom: 1.1428571em; - } - - .md\:prose-sm > :where(ol > li > *:first-child):not(:where([class~="not-prose"] *)) { - margin-top: 1.1428571em; - } - - .md\:prose-sm > :where(ol > li > *:last-child):not(:where([class~="not-prose"] *)) { - margin-bottom: 1.1428571em; - } - - .md\:prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"] *)) { - margin-top: 0.5714286em; - margin-bottom: 0.5714286em; - } - - .md\:prose-sm :where(hr):not(:where([class~="not-prose"] *)) { - margin-top: 2.8571429em; - margin-bottom: 2.8571429em; - } - - .md\:prose-sm :where(hr + *):not(:where([class~="not-prose"] *)) { - margin-top: 0; - } - - .md\:prose-sm :where(h2 + *):not(:where([class~="not-prose"] *)) { - margin-top: 0; - } - - .md\:prose-sm :where(h3 + *):not(:where([class~="not-prose"] *)) { - margin-top: 0; - } - - .md\:prose-sm :where(h4 + *):not(:where([class~="not-prose"] *)) { - margin-top: 0; - } - - .md\:prose-sm :where(table):not(:where([class~="not-prose"] *)) { - font-size: 0.8571429em; - line-height: 1.5; - } - - .md\:prose-sm :where(thead th):not(:where([class~="not-prose"] *)) { - padding-right: 1em; - padding-bottom: 0.6666667em; - padding-left: 1em; - } - - .md\:prose-sm :where(thead th:first-child):not(:where([class~="not-prose"] *)) { - padding-left: 0; - } - - .md\:prose-sm :where(thead th:last-child):not(:where([class~="not-prose"] *)) { - padding-right: 0; - } - - .md\:prose-sm :where(tbody td):not(:where([class~="not-prose"] *)) { - padding-top: 0.6666667em; - padding-right: 1em; - padding-bottom: 0.6666667em; - padding-left: 1em; - } - - .md\:prose-sm :where(tbody td:first-child):not(:where([class~="not-prose"] *)) { - padding-left: 0; - } - - .md\:prose-sm :where(tbody td:last-child):not(:where([class~="not-prose"] *)) { - padding-right: 0; - } - - .md\:prose-sm > :where(:first-child):not(:where([class~="not-prose"] *)) { - margin-top: 0; - } - - .md\:prose-sm > :where(:last-child):not(:where([class~="not-prose"] *)) { - margin-bottom: 0; - } - - .md\:prose-lg { - font-size: 1.125rem; - line-height: 1.7777778; - } - - .md\:prose-lg :where(p):not(:where([class~="not-prose"] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - - .md\:prose-lg :where([class~="lead"]):not(:where([class~="not-prose"] *)) { - font-size: 1.2222222em; - line-height: 1.4545455; - margin-top: 1.0909091em; - margin-bottom: 1.0909091em; - } - - .md\:prose-lg :where(blockquote):not(:where([class~="not-prose"] *)) { - margin-top: 1.6666667em; - margin-bottom: 1.6666667em; - padding-left: 1em; - } - - .md\:prose-lg :where(h1):not(:where([class~="not-prose"] *)) { - font-size: 2.6666667em; - margin-top: 0; - margin-bottom: 0.8333333em; - line-height: 1; - } - - .md\:prose-lg :where(h2):not(:where([class~="not-prose"] *)) { - font-size: 1.6666667em; - margin-top: 1.8666667em; - margin-bottom: 1.0666667em; - line-height: 1.3333333; - } - - .md\:prose-lg :where(h3):not(:where([class~="not-prose"] *)) { - font-size: 1.3333333em; - margin-top: 1.6666667em; - margin-bottom: 0.6666667em; - line-height: 1.5; - } - - .md\:prose-lg :where(h4):not(:where([class~="not-prose"] *)) { - margin-top: 1.7777778em; - margin-bottom: 0.4444444em; - line-height: 1.5555556; - } - - .md\:prose-lg :where(img):not(:where([class~="not-prose"] *)) { - margin-top: 1.7777778em; - margin-bottom: 1.7777778em; - } - - .md\:prose-lg :where(video):not(:where([class~="not-prose"] *)) { - margin-top: 1.7777778em; - margin-bottom: 1.7777778em; - } - - .md\:prose-lg :where(figure):not(:where([class~="not-prose"] *)) { - margin-top: 1.7777778em; - margin-bottom: 1.7777778em; - } - - .md\:prose-lg :where(figure > *):not(:where([class~="not-prose"] *)) { - margin-top: 0; - margin-bottom: 0; - } - - .md\:prose-lg :where(figcaption):not(:where([class~="not-prose"] *)) { - font-size: 0.8888889em; - line-height: 1.5; - margin-top: 1em; - } - - .md\:prose-lg :where(code):not(:where([class~="not-prose"] *)) { - font-size: 0.8888889em; - } - - .md\:prose-lg :where(h2 code):not(:where([class~="not-prose"] *)) { - font-size: 0.8666667em; - } - - .md\:prose-lg :where(h3 code):not(:where([class~="not-prose"] *)) { - font-size: 0.875em; - } - - .md\:prose-lg :where(pre):not(:where([class~="not-prose"] *)) { - font-size: 0.8888889em; - line-height: 1.75; - margin-top: 2em; - margin-bottom: 2em; - border-radius: 0.375rem; - padding-top: 1em; - padding-right: 1.5em; - padding-bottom: 1em; - padding-left: 1.5em; - } - - .md\:prose-lg :where(ol):not(:where([class~="not-prose"] *)) { - padding-left: 1.5555556em; - } - - .md\:prose-lg :where(ul):not(:where([class~="not-prose"] *)) { - padding-left: 1.5555556em; - } - - .md\:prose-lg :where(li):not(:where([class~="not-prose"] *)) { - margin-top: 0.6666667em; - margin-bottom: 0.6666667em; - } - - .md\:prose-lg :where(ol > li):not(:where([class~="not-prose"] *)) { - padding-left: 0.4444444em; - } - - .md\:prose-lg :where(ul > li):not(:where([class~="not-prose"] *)) { - padding-left: 0.4444444em; - } - - .md\:prose-lg > :where(ul > li p):not(:where([class~="not-prose"] *)) { - margin-top: 0.8888889em; - margin-bottom: 0.8888889em; - } - - .md\:prose-lg > :where(ul > li > *:first-child):not(:where([class~="not-prose"] *)) { - margin-top: 1.3333333em; - } - - .md\:prose-lg > :where(ul > li > *:last-child):not(:where([class~="not-prose"] *)) { - margin-bottom: 1.3333333em; - } - - .md\:prose-lg > :where(ol > li > *:first-child):not(:where([class~="not-prose"] *)) { - margin-top: 1.3333333em; - } - - .md\:prose-lg > :where(ol > li > *:last-child):not(:where([class~="not-prose"] *)) { - margin-bottom: 1.3333333em; - } - - .md\:prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"] *)) { - margin-top: 0.8888889em; - margin-bottom: 0.8888889em; - } - - .md\:prose-lg :where(hr):not(:where([class~="not-prose"] *)) { - margin-top: 3.1111111em; - margin-bottom: 3.1111111em; - } - - .md\:prose-lg :where(hr + *):not(:where([class~="not-prose"] *)) { - margin-top: 0; - } - - .md\:prose-lg :where(h2 + *):not(:where([class~="not-prose"] *)) { - margin-top: 0; - } - - .md\:prose-lg :where(h3 + *):not(:where([class~="not-prose"] *)) { - margin-top: 0; - } - - .md\:prose-lg :where(h4 + *):not(:where([class~="not-prose"] *)) { - margin-top: 0; - } - - .md\:prose-lg :where(table):not(:where([class~="not-prose"] *)) { - font-size: 0.8888889em; - line-height: 1.5; - } - - .md\:prose-lg :where(thead th):not(:where([class~="not-prose"] *)) { - padding-right: 0.75em; - padding-bottom: 0.75em; - padding-left: 0.75em; - } - - .md\:prose-lg :where(thead th:first-child):not(:where([class~="not-prose"] *)) { - padding-left: 0; - } - - .md\:prose-lg :where(thead th:last-child):not(:where([class~="not-prose"] *)) { - padding-right: 0; - } - - .md\:prose-lg :where(tbody td):not(:where([class~="not-prose"] *)) { - padding-top: 0.75em; - padding-right: 0.75em; - padding-bottom: 0.75em; - padding-left: 0.75em; - } - - .md\:prose-lg :where(tbody td:first-child):not(:where([class~="not-prose"] *)) { - padding-left: 0; - } - - .md\:prose-lg :where(tbody td:last-child):not(:where([class~="not-prose"] *)) { - padding-right: 0; - } - - .md\:prose-lg > :where(:first-child):not(:where([class~="not-prose"] *)) { - margin-top: 0; - } - - .md\:prose-lg > :where(:last-child):not(:where([class~="not-prose"] *)) { - margin-bottom: 0; - } - - .md\:prose-xl { - font-size: 1.25rem; - line-height: 1.8; - } - - .md\:prose-xl :where(p):not(:where([class~="not-prose"] *)) { - margin-top: 1.2em; - margin-bottom: 1.2em; - } - - .md\:prose-xl :where([class~="lead"]):not(:where([class~="not-prose"] *)) { - font-size: 1.2em; - line-height: 1.5; - margin-top: 1em; - margin-bottom: 1em; - } - - .md\:prose-xl :where(blockquote):not(:where([class~="not-prose"] *)) { - margin-top: 1.6em; - margin-bottom: 1.6em; - padding-left: 1.0666667em; - } - - .md\:prose-xl :where(h1):not(:where([class~="not-prose"] *)) { - font-size: 2.8em; - margin-top: 0; - margin-bottom: 0.8571429em; - line-height: 1; - } - - .md\:prose-xl :where(h2):not(:where([class~="not-prose"] *)) { - font-size: 1.8em; - margin-top: 1.5555556em; - margin-bottom: 0.8888889em; - line-height: 1.1111111; - } - - .md\:prose-xl :where(h3):not(:where([class~="not-prose"] *)) { - font-size: 1.5em; - margin-top: 1.6em; - margin-bottom: 0.6666667em; - line-height: 1.3333333; - } - - .md\:prose-xl :where(h4):not(:where([class~="not-prose"] *)) { - margin-top: 1.8em; - margin-bottom: 0.6em; - line-height: 1.6; - } - - .md\:prose-xl :where(img):not(:where([class~="not-prose"] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .md\:prose-xl :where(video):not(:where([class~="not-prose"] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .md\:prose-xl :where(figure):not(:where([class~="not-prose"] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .md\:prose-xl :where(figure > *):not(:where([class~="not-prose"] *)) { - margin-top: 0; - margin-bottom: 0; - } - - .md\:prose-xl :where(figcaption):not(:where([class~="not-prose"] *)) { - font-size: 0.9em; - line-height: 1.5555556; - margin-top: 1em; - } - - .md\:prose-xl :where(code):not(:where([class~="not-prose"] *)) { - font-size: 0.9em; - } - - .md\:prose-xl :where(h2 code):not(:where([class~="not-prose"] *)) { - font-size: 0.8611111em; - } - - .md\:prose-xl :where(h3 code):not(:where([class~="not-prose"] *)) { - font-size: 0.9em; - } - - .md\:prose-xl :where(pre):not(:where([class~="not-prose"] *)) { - font-size: 0.9em; - line-height: 1.7777778; - margin-top: 2em; - margin-bottom: 2em; - border-radius: 0.5rem; - padding-top: 1.1111111em; - padding-right: 1.3333333em; - padding-bottom: 1.1111111em; - padding-left: 1.3333333em; - } - - .md\:prose-xl :where(ol):not(:where([class~="not-prose"] *)) { - padding-left: 1.6em; - } - - .md\:prose-xl :where(ul):not(:where([class~="not-prose"] *)) { - padding-left: 1.6em; - } - - .md\:prose-xl :where(li):not(:where([class~="not-prose"] *)) { - margin-top: 0.6em; - margin-bottom: 0.6em; - } - - .md\:prose-xl :where(ol > li):not(:where([class~="not-prose"] *)) { - padding-left: 0.4em; - } - - .md\:prose-xl :where(ul > li):not(:where([class~="not-prose"] *)) { - padding-left: 0.4em; - } - - .md\:prose-xl > :where(ul > li p):not(:where([class~="not-prose"] *)) { - margin-top: 0.8em; - margin-bottom: 0.8em; - } - - .md\:prose-xl > :where(ul > li > *:first-child):not(:where([class~="not-prose"] *)) { - margin-top: 1.2em; - } - - .md\:prose-xl > :where(ul > li > *:last-child):not(:where([class~="not-prose"] *)) { - margin-bottom: 1.2em; - } - - .md\:prose-xl > :where(ol > li > *:first-child):not(:where([class~="not-prose"] *)) { - margin-top: 1.2em; - } - - .md\:prose-xl > :where(ol > li > *:last-child):not(:where([class~="not-prose"] *)) { - margin-bottom: 1.2em; - } - - .md\:prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"] *)) { - margin-top: 0.8em; - margin-bottom: 0.8em; - } - - .md\:prose-xl :where(hr):not(:where([class~="not-prose"] *)) { - margin-top: 2.8em; - margin-bottom: 2.8em; - } - - .md\:prose-xl :where(hr + *):not(:where([class~="not-prose"] *)) { - margin-top: 0; - } - - .md\:prose-xl :where(h2 + *):not(:where([class~="not-prose"] *)) { - margin-top: 0; - } - - .md\:prose-xl :where(h3 + *):not(:where([class~="not-prose"] *)) { - margin-top: 0; - } - - .md\:prose-xl :where(h4 + *):not(:where([class~="not-prose"] *)) { - margin-top: 0; - } - - .md\:prose-xl :where(table):not(:where([class~="not-prose"] *)) { - font-size: 0.9em; - line-height: 1.5555556; - } - - .md\:prose-xl :where(thead th):not(:where([class~="not-prose"] *)) { - padding-right: 0.6666667em; - padding-bottom: 0.8888889em; - padding-left: 0.6666667em; - } - - .md\:prose-xl :where(thead th:first-child):not(:where([class~="not-prose"] *)) { - padding-left: 0; - } - - .md\:prose-xl :where(thead th:last-child):not(:where([class~="not-prose"] *)) { - padding-right: 0; - } - - .md\:prose-xl :where(tbody td):not(:where([class~="not-prose"] *)) { - padding-top: 0.8888889em; - padding-right: 0.6666667em; - padding-bottom: 0.8888889em; - padding-left: 0.6666667em; - } - - .md\:prose-xl :where(tbody td:first-child):not(:where([class~="not-prose"] *)) { - padding-left: 0; - } - - .md\:prose-xl :where(tbody td:last-child):not(:where([class~="not-prose"] *)) { - padding-right: 0; - } - - .md\:prose-xl > :where(:first-child):not(:where([class~="not-prose"] *)) { - margin-top: 0; - } - - .md\:prose-xl > :where(:last-child):not(:where([class~="not-prose"] *)) { - margin-bottom: 0; - } - - .md\:mx-auto { - margin-left: auto; - margin-right: auto; - } - - .md\:mt-0 { - margin-top: 0px; - } - - .md\:ml-6 { - margin-left: 1.5rem; - } - - .md\:ml-4 { - margin-left: 1rem; - } - - .md\:block { - display: block; - } - - .md\:flex { - display: flex; - } - - .md\:grid { - display: grid; - } - - .md\:hidden { - display: none; - } - - .md\:w-auto { - width: auto; - } - - .md\:max-w-2xl { - max-width: 42rem; - } - - .md\:grid-cols-2 { - grid-template-columns: repeat(2, minmax(0, 1fr)); - } - - .md\:items-center { - align-items: center; - } - - .md\:justify-between { - justify-content: space-between; - } - - .md\:gap-4 { - gap: 1rem; - } - - .md\:border-t-0 { - border-top-width: 0px; - } - - .md\:border-l { - border-left-width: 1px; - } - - .md\:px-1 { - padding-left: 0.25rem; - padding-right: 0.25rem; - } - - .md\:text-4xl { - font-size: 2.25rem; - line-height: 2.5rem; - } -} - -@media (min-width: 1024px) { - - .lg\:prose-lg { - font-size: 1.125rem; - line-height: 1.7777778; - } - - .lg\:prose-lg :where(p):not(:where([class~="not-prose"] *)) { - margin-top: 1.3333333em; - margin-bottom: 1.3333333em; - } - - .lg\:prose-lg :where([class~="lead"]):not(:where([class~="not-prose"] *)) { - font-size: 1.2222222em; - line-height: 1.4545455; - margin-top: 1.0909091em; - margin-bottom: 1.0909091em; - } - - .lg\:prose-lg :where(blockquote):not(:where([class~="not-prose"] *)) { - margin-top: 1.6666667em; - margin-bottom: 1.6666667em; - padding-left: 1em; - } - - .lg\:prose-lg :where(h1):not(:where([class~="not-prose"] *)) { - font-size: 2.6666667em; - margin-top: 0; - margin-bottom: 0.8333333em; - line-height: 1; - } - - .lg\:prose-lg :where(h2):not(:where([class~="not-prose"] *)) { - font-size: 1.6666667em; - margin-top: 1.8666667em; - margin-bottom: 1.0666667em; - line-height: 1.3333333; - } - - .lg\:prose-lg :where(h3):not(:where([class~="not-prose"] *)) { - font-size: 1.3333333em; - margin-top: 1.6666667em; - margin-bottom: 0.6666667em; - line-height: 1.5; - } - - .lg\:prose-lg :where(h4):not(:where([class~="not-prose"] *)) { - margin-top: 1.7777778em; - margin-bottom: 0.4444444em; - line-height: 1.5555556; - } - - .lg\:prose-lg :where(img):not(:where([class~="not-prose"] *)) { - margin-top: 1.7777778em; - margin-bottom: 1.7777778em; - } - - .lg\:prose-lg :where(video):not(:where([class~="not-prose"] *)) { - margin-top: 1.7777778em; - margin-bottom: 1.7777778em; - } - - .lg\:prose-lg :where(figure):not(:where([class~="not-prose"] *)) { - margin-top: 1.7777778em; - margin-bottom: 1.7777778em; - } - - .lg\:prose-lg :where(figure > *):not(:where([class~="not-prose"] *)) { - margin-top: 0; - margin-bottom: 0; - } - - .lg\:prose-lg :where(figcaption):not(:where([class~="not-prose"] *)) { - font-size: 0.8888889em; - line-height: 1.5; - margin-top: 1em; - } - - .lg\:prose-lg :where(code):not(:where([class~="not-prose"] *)) { - font-size: 0.8888889em; - } - - .lg\:prose-lg :where(h2 code):not(:where([class~="not-prose"] *)) { - font-size: 0.8666667em; - } - - .lg\:prose-lg :where(h3 code):not(:where([class~="not-prose"] *)) { - font-size: 0.875em; - } - - .lg\:prose-lg :where(pre):not(:where([class~="not-prose"] *)) { - font-size: 0.8888889em; - line-height: 1.75; - margin-top: 2em; - margin-bottom: 2em; - border-radius: 0.375rem; - padding-top: 1em; - padding-right: 1.5em; - padding-bottom: 1em; - padding-left: 1.5em; - } - - .lg\:prose-lg :where(ol):not(:where([class~="not-prose"] *)) { - padding-left: 1.5555556em; - } - - .lg\:prose-lg :where(ul):not(:where([class~="not-prose"] *)) { - padding-left: 1.5555556em; - } - - .lg\:prose-lg :where(li):not(:where([class~="not-prose"] *)) { - margin-top: 0.6666667em; - margin-bottom: 0.6666667em; - } - - .lg\:prose-lg :where(ol > li):not(:where([class~="not-prose"] *)) { - padding-left: 0.4444444em; - } - - .lg\:prose-lg :where(ul > li):not(:where([class~="not-prose"] *)) { - padding-left: 0.4444444em; - } - - .lg\:prose-lg > :where(ul > li p):not(:where([class~="not-prose"] *)) { - margin-top: 0.8888889em; - margin-bottom: 0.8888889em; - } - - .lg\:prose-lg > :where(ul > li > *:first-child):not(:where([class~="not-prose"] *)) { - margin-top: 1.3333333em; - } - - .lg\:prose-lg > :where(ul > li > *:last-child):not(:where([class~="not-prose"] *)) { - margin-bottom: 1.3333333em; - } - - .lg\:prose-lg > :where(ol > li > *:first-child):not(:where([class~="not-prose"] *)) { - margin-top: 1.3333333em; - } - - .lg\:prose-lg > :where(ol > li > *:last-child):not(:where([class~="not-prose"] *)) { - margin-bottom: 1.3333333em; - } - - .lg\:prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"] *)) { - margin-top: 0.8888889em; - margin-bottom: 0.8888889em; - } - - .lg\:prose-lg :where(hr):not(:where([class~="not-prose"] *)) { - margin-top: 3.1111111em; - margin-bottom: 3.1111111em; - } - - .lg\:prose-lg :where(hr + *):not(:where([class~="not-prose"] *)) { - margin-top: 0; - } - - .lg\:prose-lg :where(h2 + *):not(:where([class~="not-prose"] *)) { - margin-top: 0; - } - - .lg\:prose-lg :where(h3 + *):not(:where([class~="not-prose"] *)) { - margin-top: 0; - } - - .lg\:prose-lg :where(h4 + *):not(:where([class~="not-prose"] *)) { - margin-top: 0; - } - - .lg\:prose-lg :where(table):not(:where([class~="not-prose"] *)) { - font-size: 0.8888889em; - line-height: 1.5; - } - - .lg\:prose-lg :where(thead th):not(:where([class~="not-prose"] *)) { - padding-right: 0.75em; - padding-bottom: 0.75em; - padding-left: 0.75em; - } - - .lg\:prose-lg :where(thead th:first-child):not(:where([class~="not-prose"] *)) { - padding-left: 0; - } - - .lg\:prose-lg :where(thead th:last-child):not(:where([class~="not-prose"] *)) { - padding-right: 0; - } - - .lg\:prose-lg :where(tbody td):not(:where([class~="not-prose"] *)) { - padding-top: 0.75em; - padding-right: 0.75em; - padding-bottom: 0.75em; - padding-left: 0.75em; - } - - .lg\:prose-lg :where(tbody td:first-child):not(:where([class~="not-prose"] *)) { - padding-left: 0; - } - - .lg\:prose-lg :where(tbody td:last-child):not(:where([class~="not-prose"] *)) { - padding-right: 0; - } - - .lg\:prose-lg > :where(:first-child):not(:where([class~="not-prose"] *)) { - margin-top: 0; - } - - .lg\:prose-lg > :where(:last-child):not(:where([class~="not-prose"] *)) { - margin-bottom: 0; - } - - .lg\:prose-xl { - font-size: 1.25rem; - line-height: 1.8; - } - - .lg\:prose-xl :where(p):not(:where([class~="not-prose"] *)) { - margin-top: 1.2em; - margin-bottom: 1.2em; - } - - .lg\:prose-xl :where([class~="lead"]):not(:where([class~="not-prose"] *)) { - font-size: 1.2em; - line-height: 1.5; - margin-top: 1em; - margin-bottom: 1em; - } - - .lg\:prose-xl :where(blockquote):not(:where([class~="not-prose"] *)) { - margin-top: 1.6em; - margin-bottom: 1.6em; - padding-left: 1.0666667em; - } - - .lg\:prose-xl :where(h1):not(:where([class~="not-prose"] *)) { - font-size: 2.8em; - margin-top: 0; - margin-bottom: 0.8571429em; - line-height: 1; - } - - .lg\:prose-xl :where(h2):not(:where([class~="not-prose"] *)) { - font-size: 1.8em; - margin-top: 1.5555556em; - margin-bottom: 0.8888889em; - line-height: 1.1111111; - } - - .lg\:prose-xl :where(h3):not(:where([class~="not-prose"] *)) { - font-size: 1.5em; - margin-top: 1.6em; - margin-bottom: 0.6666667em; - line-height: 1.3333333; - } - - .lg\:prose-xl :where(h4):not(:where([class~="not-prose"] *)) { - margin-top: 1.8em; - margin-bottom: 0.6em; - line-height: 1.6; - } - - .lg\:prose-xl :where(img):not(:where([class~="not-prose"] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .lg\:prose-xl :where(video):not(:where([class~="not-prose"] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .lg\:prose-xl :where(figure):not(:where([class~="not-prose"] *)) { - margin-top: 2em; - margin-bottom: 2em; - } - - .lg\:prose-xl :where(figure > *):not(:where([class~="not-prose"] *)) { - margin-top: 0; - margin-bottom: 0; - } - - .lg\:prose-xl :where(figcaption):not(:where([class~="not-prose"] *)) { - font-size: 0.9em; - line-height: 1.5555556; - margin-top: 1em; - } - - .lg\:prose-xl :where(code):not(:where([class~="not-prose"] *)) { - font-size: 0.9em; - } - - .lg\:prose-xl :where(h2 code):not(:where([class~="not-prose"] *)) { - font-size: 0.8611111em; - } - - .lg\:prose-xl :where(h3 code):not(:where([class~="not-prose"] *)) { - font-size: 0.9em; - } - - .lg\:prose-xl :where(pre):not(:where([class~="not-prose"] *)) { - font-size: 0.9em; - line-height: 1.7777778; - margin-top: 2em; - margin-bottom: 2em; - border-radius: 0.5rem; - padding-top: 1.1111111em; - padding-right: 1.3333333em; - padding-bottom: 1.1111111em; - padding-left: 1.3333333em; - } - - .lg\:prose-xl :where(ol):not(:where([class~="not-prose"] *)) { - padding-left: 1.6em; - } - - .lg\:prose-xl :where(ul):not(:where([class~="not-prose"] *)) { - padding-left: 1.6em; - } - - .lg\:prose-xl :where(li):not(:where([class~="not-prose"] *)) { - margin-top: 0.6em; - margin-bottom: 0.6em; - } - - .lg\:prose-xl :where(ol > li):not(:where([class~="not-prose"] *)) { - padding-left: 0.4em; - } - - .lg\:prose-xl :where(ul > li):not(:where([class~="not-prose"] *)) { - padding-left: 0.4em; - } - - .lg\:prose-xl > :where(ul > li p):not(:where([class~="not-prose"] *)) { - margin-top: 0.8em; - margin-bottom: 0.8em; - } - - .lg\:prose-xl > :where(ul > li > *:first-child):not(:where([class~="not-prose"] *)) { - margin-top: 1.2em; - } - - .lg\:prose-xl > :where(ul > li > *:last-child):not(:where([class~="not-prose"] *)) { - margin-bottom: 1.2em; - } - - .lg\:prose-xl > :where(ol > li > *:first-child):not(:where([class~="not-prose"] *)) { - margin-top: 1.2em; - } - - .lg\:prose-xl > :where(ol > li > *:last-child):not(:where([class~="not-prose"] *)) { - margin-bottom: 1.2em; - } - - .lg\:prose-xl :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"] *)) { - margin-top: 0.8em; - margin-bottom: 0.8em; - } - - .lg\:prose-xl :where(hr):not(:where([class~="not-prose"] *)) { - margin-top: 2.8em; - margin-bottom: 2.8em; - } - - .lg\:prose-xl :where(hr + *):not(:where([class~="not-prose"] *)) { - margin-top: 0; - } - - .lg\:prose-xl :where(h2 + *):not(:where([class~="not-prose"] *)) { - margin-top: 0; - } - - .lg\:prose-xl :where(h3 + *):not(:where([class~="not-prose"] *)) { - margin-top: 0; - } - - .lg\:prose-xl :where(h4 + *):not(:where([class~="not-prose"] *)) { - margin-top: 0; - } - - .lg\:prose-xl :where(table):not(:where([class~="not-prose"] *)) { - font-size: 0.9em; - line-height: 1.5555556; - } - - .lg\:prose-xl :where(thead th):not(:where([class~="not-prose"] *)) { - padding-right: 0.6666667em; - padding-bottom: 0.8888889em; - padding-left: 0.6666667em; - } - - .lg\:prose-xl :where(thead th:first-child):not(:where([class~="not-prose"] *)) { - padding-left: 0; - } - - .lg\:prose-xl :where(thead th:last-child):not(:where([class~="not-prose"] *)) { - padding-right: 0; - } - - .lg\:prose-xl :where(tbody td):not(:where([class~="not-prose"] *)) { - padding-top: 0.8888889em; - padding-right: 0.6666667em; - padding-bottom: 0.8888889em; - padding-left: 0.6666667em; - } - - .lg\:prose-xl :where(tbody td:first-child):not(:where([class~="not-prose"] *)) { - padding-left: 0; - } - - .lg\:prose-xl :where(tbody td:last-child):not(:where([class~="not-prose"] *)) { - padding-right: 0; - } - - .lg\:prose-xl > :where(:first-child):not(:where([class~="not-prose"] *)) { - margin-top: 0; - } - - .lg\:prose-xl > :where(:last-child):not(:where([class~="not-prose"] *)) { - margin-bottom: 0; - } - - .lg\:left-1\/2 { - left: 50%; - } - - .lg\:col-span-3 { - grid-column: span 3 / span 3; - } - - .lg\:col-span-2 { - grid-column: span 2 / span 2; - } - - .lg\:col-span-6 { - grid-column: span 6 / span 6; - } - - .lg\:col-span-5 { - grid-column: span 5 / span 5; - } - - .lg\:col-span-8 { - grid-column: span 8 / span 8; - } - - .lg\:col-span-7 { - grid-column: span 7 / span 7; - } - - .lg\:col-span-10 { - grid-column: span 10 / span 10; - } - - .lg\:col-span-9 { - grid-column: span 9 / span 9; - } - - .lg\:col-start-10 { - grid-column-start: 10; - } - - .lg\:row-span-3 { - grid-row: span 3 / span 3; - } - - .lg\:mx-0 { - margin-left: 0px; - margin-right: 0px; - } - - .lg\:mt-8 { - margin-top: 2rem; - } - - .lg\:mt-0 { - margin-top: 0px; - } - - .lg\:mt-6 { - margin-top: 1.5rem; - } - - .lg\:mt-10 { - margin-top: 2.5rem; - } - - .lg\:mt-12 { - margin-top: 3rem; - } - - .lg\:mb-32 { - margin-bottom: 8rem; - } - - .lg\:ml-10 { - margin-left: 2.5rem; - } - - .lg\:ml-0 { - margin-left: 0px; - } - - .lg\:ml-6 { - margin-left: 1.5rem; - } - - .lg\:block { - display: block; - } - - .lg\:flex { - display: flex; - } - - .lg\:grid { - display: grid; - } - - .lg\:hidden { - display: none; - } - - .lg\:h-20 { - height: 5rem; - } - - .lg\:h-48 { - height: 12rem; - } - - .lg\:w-20 { - width: 5rem; - } - - .lg\:w-90 { - width: 22.5rem; - } - - .lg\:max-w-none { - max-width: none; - } - - .lg\:max-w-7xl { - max-width: 80rem; - } - - .lg\:max-w-xl { - max-width: 36rem; - } - - .lg\:max-w-3xl { - max-width: 48rem; - } - - .lg\:max-w-xs { - max-width: 20rem; - } - - .lg\:-translate-x-1\/2 { - --tw-translate-x: -50%; - transform: var(--tw-transform); - } - - .lg\:grid-flow-col { - grid-auto-flow: column; - } - - .lg\:grid-cols-5 { - grid-template-columns: repeat(5, minmax(0, 1fr)); - } - - .lg\:grid-cols-2 { - grid-template-columns: repeat(2, minmax(0, 1fr)); - } - - .lg\:grid-cols-3 { - grid-template-columns: repeat(3, minmax(0, 1fr)); - } - - .lg\:grid-cols-12 { - grid-template-columns: repeat(12, minmax(0, 1fr)); - } - - .lg\:grid-cols-9 { - grid-template-columns: repeat(9, minmax(0, 1fr)); - } - - .lg\:grid-cols-8 { - grid-template-columns: repeat(8, minmax(0, 1fr)); - } - - .lg\:grid-cols-4 { - grid-template-columns: repeat(4, minmax(0, 1fr)); - } - - .lg\:grid-rows-3 { - grid-template-rows: repeat(3, minmax(0, 1fr)); - } - - .lg\:items-start { - align-items: flex-start; - } - - .lg\:items-center { - align-items: center; - } - - .lg\:justify-end { - justify-content: flex-end; - } - - .lg\:justify-between { - justify-content: space-between; - } - - .lg\:justify-around { - justify-content: space-around; - } - - .lg\:gap-16 { - gap: 4rem; - } - - .lg\:gap-6 { - gap: 1.5rem; - } - - .lg\:gap-24 { - gap: 6rem; - } - - .lg\:gap-8 { - gap: 2rem; - } - - .lg\:gap-10 { - gap: 2.5rem; - } - - .lg\:gap-12 { - gap: 3rem; - } - - .lg\:gap-x-8 { - -moz-column-gap: 2rem; - column-gap: 2rem; - } - - .lg\:gap-x-5 { - -moz-column-gap: 1.25rem; - column-gap: 1.25rem; - } - - .lg\:gap-y-12 { - row-gap: 3rem; - } - - .lg\:gap-x-2 { - -moz-column-gap: 0.5rem; - column-gap: 0.5rem; - } - - .lg\:gap-x-3 { - -moz-column-gap: 0.75rem; - column-gap: 0.75rem; - } - - .lg\:gap-y-6 { - row-gap: 1.5rem; - } - - .lg\:space-y-0 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0px * var(--tw-space-y-reverse)); - } - - .lg\:space-x-6 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(1.5rem * var(--tw-space-x-reverse)); - margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse))); - } - - .lg\:space-x-3 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(0.75rem * var(--tw-space-x-reverse)); - margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse))); - } - - .lg\:self-center { - align-self: center; - } - - .lg\:border-l { - border-left-width: 1px; - } - - .lg\:border-skin-base { - --tw-border-opacity: 1; - border-color: rgba(var(--color-border), var(--tw-border-opacity)); - } - - .lg\:py-12 { - padding-top: 3rem; - padding-bottom: 3rem; - } - - .lg\:py-10 { - padding-top: 2.5rem; - padding-bottom: 2.5rem; - } - - .lg\:py-20 { - padding-top: 5rem; - padding-bottom: 5rem; - } - - .lg\:px-8 { - padding-left: 2rem; - padding-right: 2rem; - } - - .lg\:px-0 { - padding-left: 0px; - padding-right: 0px; - } - - .lg\:py-16 { - padding-top: 4rem; - padding-bottom: 4rem; - } - - .lg\:py-8 { - padding-top: 2rem; - padding-bottom: 2rem; - } - - .lg\:pl-8 { - padding-left: 2rem; - } - - .lg\:text-left { - text-align: left; - } - - .lg\:text-sm { - font-size: 0.875rem; - line-height: 1.25rem; - } - - .lg\:text-4xl { - font-size: 2.25rem; - line-height: 2.5rem; - } - - .lg\:text-base { - font-size: 1rem; - line-height: 1.5rem; - } - - .lg\:text-5xl { - font-size: 3rem; - line-height: 1; - } - - .lg\:text-lg { - font-size: 1.125rem; - line-height: 1.75rem; - } - - .lg\:leading-\[3\.5rem\] { - line-height: 3.5rem; - } -} - -@media (min-width: 1280px) { - - .xl\:absolute { - position: absolute; - } - - .xl\:relative { - position: relative; - } - - .xl\:inset-0 { - top: 0px; - right: 0px; - bottom: 0px; - left: 0px; - } - - .xl\:inset-y-0 { - top: 0px; - bottom: 0px; - } - - .xl\:left-0 { - left: 0px; - } - - .xl\:col-span-7 { - grid-column: span 7 / span 7; - } - - .xl\:col-span-3 { - grid-column: span 3 / span 3; - } - - .xl\:col-span-1 { - grid-column: span 1 / span 1; - } - - .xl\:col-span-2 { - grid-column: span 2 / span 2; - } - - .xl\:col-start-2 { - grid-column-start: 2; - } - - .xl\:col-start-1 { - grid-column-start: 1; - } - - .xl\:mt-16 { - margin-top: 4rem; - } - - .xl\:mt-0 { - margin-top: 0px; - } - - .xl\:grid { - display: grid; - } - - .xl\:h-full { - height: 100%; - } - - .xl\:w-32 { - width: 8rem; - } - - .xl\:grid-flow-col-dense { - grid-auto-flow: column dense; - } - - .xl\:grid-cols-2 { - grid-template-columns: repeat(2, minmax(0, 1fr)); - } - - .xl\:grid-cols-3 { - grid-template-columns: repeat(3, minmax(0, 1fr)); - } - - .xl\:gap-8 { - gap: 2rem; - } - - .xl\:gap-x-8 { - -moz-column-gap: 2rem; - column-gap: 2rem; - } - - .xl\:bg-gradient-to-r { - background-image: linear-gradient(to right, var(--tw-gradient-stops)); - } - - .xl\:pb-14 { - padding-bottom: 3.5rem; - } - - .xl\:pb-24 { - padding-bottom: 6rem; - } - - .xl\:text-base { - font-size: 1rem; - line-height: 1.5rem; - } - - .xl\:text-4xl { - font-size: 2.25rem; - line-height: 2.5rem; - } - - .xl\:text-3xl { - font-size: 1.875rem; - line-height: 2.25rem; - } - - .xl\:text-xl { - font-size: 1.25rem; - line-height: 1.75rem; - } -} - - +.hljs{background:#282c34;color:#abb2bf;display:block;overflow-x:auto;padding:.5em}.hljs-comment,.hljs-quote{color:#5c6370;font-style:italic}.hljs-doctag,.hljs-formula,.hljs-keyword{color:#c678dd}.hljs-deletion,.hljs-name,.hljs-section,.hljs-selector-tag,.hljs-subst{color:#e06c75}.hljs-literal{color:#56b6c2}.hljs-addition,.hljs-attribute,.hljs-meta-string,.hljs-regexp,.hljs-string{color:#98c379}.hljs-built_in,.hljs-class .hljs-title{color:#e6c07b}.hljs-attr,.hljs-number,.hljs-selector-attr,.hljs-selector-class,.hljs-selector-pseudo,.hljs-template-variable,.hljs-type,.hljs-variable{color:#d19a66}.hljs-bullet,.hljs-link,.hljs-meta,.hljs-selector-id,.hljs-symbol,.hljs-title{color:#61aeee}.hljs-emphasis{font-style:italic}.hljs-strong{font-weight:700}.hljs-link{text-decoration:underline} +.choices{font-size:16px;margin-bottom:24px;position:relative}.choices:focus{outline:none}.choices:last-child{margin-bottom:0}.choices.is-disabled .choices__inner,.choices.is-disabled .choices__input{background-color:#eaeaea;cursor:not-allowed;-webkit-user-select:none;-ms-user-select:none;-moz-user-select:none;user-select:none}.choices.is-disabled .choices__item{cursor:not-allowed}.choices [hidden]{display:none!important}.choices[data-type*=select-one]{cursor:pointer}.choices[data-type*=select-one] .choices__inner{padding-bottom:7.5px}.choices[data-type*=select-one] .choices__input{background-color:#fff;border-bottom:1px solid #ddd;display:block;margin:0;padding:10px;width:100%}.choices[data-type*=select-one] .choices__button{background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbC1ydWxlPSJldmVub2RkIj48cGF0aCBkPSJtMi41OTIuMDQ0IDE4LjM2NCAxOC4zNjQtMi41NDggMi41NDhMLjA0NCAyLjU5MnoiLz48cGF0aCBkPSJNMCAxOC4zNjQgMTguMzY0IDBsMi41NDggMi41NDhMMi41NDggMjAuOTEyeiIvPjwvZz48L3N2Zz4=);background-size:8px;border-radius:10em;height:20px;margin-right:25px;margin-top:-10px;opacity:.5;padding:0;position:absolute;right:0;top:50%;width:20px}.choices[data-type*=select-one] .choices__button:focus,.choices[data-type*=select-one] .choices__button:hover{opacity:1}.choices[data-type*=select-one] .choices__button:focus{box-shadow:0 0 0 2px #00bcd4}.choices[data-type*=select-one] .choices__item[data-value=""] .choices__button{display:none}.choices[data-type*=select-one]:after{border:5px solid transparent;border-top-color:#333;content:"";height:0;margin-top:-2.5px;pointer-events:none;position:absolute;right:11.5px;top:50%;width:0}.choices[data-type*=select-one].is-open:after{border-color:transparent transparent #333;margin-top:-7.5px}.choices[data-type*=select-one][dir=rtl]:after{left:11.5px;right:auto}.choices[data-type*=select-one][dir=rtl] .choices__button{left:0;margin-left:25px;margin-right:0;right:auto}.choices[data-type*=select-multiple] .choices__inner,.choices[data-type*=text] .choices__inner{cursor:text}.choices[data-type*=select-multiple] .choices__button,.choices[data-type*=text] .choices__button{background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbD0iI0ZGRiIgZmlsbC1ydWxlPSJldmVub2RkIj48cGF0aCBkPSJtMi41OTIuMDQ0IDE4LjM2NCAxOC4zNjQtMi41NDggMi41NDhMLjA0NCAyLjU5MnoiLz48cGF0aCBkPSJNMCAxOC4zNjQgMTguMzY0IDBsMi41NDggMi41NDhMMi41NDggMjAuOTEyeiIvPjwvZz48L3N2Zz4=);background-size:8px;border-left:1px solid #008fa1;border-radius:0;display:inline-block;line-height:1;margin:0 -4px 0 8px;opacity:.75;padding-left:16px;position:relative;width:8px}.choices[data-type*=select-multiple] .choices__button:focus,.choices[data-type*=select-multiple] .choices__button:hover,.choices[data-type*=text] .choices__button:focus,.choices[data-type*=text] .choices__button:hover{opacity:1}.choices__inner{background-color:#f9f9f9;border:1px solid #ddd;border-radius:2.5px;display:inline-block;font-size:14px;min-height:44px;overflow:hidden;padding:7.5px 7.5px 3.75px;vertical-align:top;width:100%}.is-focused .choices__inner,.is-open .choices__inner{border-color:#b7b7b7}.is-open .choices__inner{border-radius:2.5px 2.5px 0 0}.is-flipped.is-open .choices__inner{border-radius:0 0 2.5px 2.5px}.choices__list{list-style:none;margin:0;padding-left:0}.choices__list--single{display:inline-block;padding:4px 16px 4px 4px;width:100%}[dir=rtl] .choices__list--single{padding-left:16px;padding-right:4px}.choices__list--single .choices__item{width:100%}.choices__list--multiple{display:inline}.choices__list--multiple .choices__item{background-color:#00bcd4;border:1px solid #00a5bb;border-radius:20px;box-sizing:border-box;color:#fff;display:inline-block;font-size:12px;font-weight:500;margin-bottom:3.75px;margin-right:3.75px;padding:4px 10px;vertical-align:middle;word-break:break-all}.choices__list--multiple .choices__item[data-deletable]{padding-right:5px}[dir=rtl] .choices__list--multiple .choices__item{margin-left:3.75px;margin-right:0}.choices__list--multiple .choices__item.is-highlighted{background-color:#00a5bb;border:1px solid #008fa1}.is-disabled .choices__list--multiple .choices__item{background-color:#aaa;border:1px solid #919191}.choices__list--dropdown{background-color:#fff;border:1px solid #ddd;border-bottom-left-radius:2.5px;border-bottom-right-radius:2.5px;margin-top:-1px;overflow:hidden;position:absolute;top:100%;visibility:hidden;width:100%;will-change:visibility;word-break:break-all;z-index:1}.choices__list--dropdown.is-active{visibility:visible}.is-open .choices__list--dropdown{border-color:#b7b7b7}.is-flipped .choices__list--dropdown{border-radius:.25rem .25rem 0 0;bottom:100%;margin-bottom:-1px;margin-top:0;top:auto}.choices__list--dropdown .choices__list{-webkit-overflow-scrolling:touch;max-height:300px;overflow:auto;position:relative;will-change:scroll-position}.choices__list--dropdown .choices__item{font-size:14px;padding:10px;position:relative}[dir=rtl] .choices__list--dropdown .choices__item{text-align:right}@media (min-width:640px){.choices__list--dropdown .choices__item--selectable{padding-right:100px}.choices__list--dropdown .choices__item--selectable:after{content:attr(data-select-text);font-size:12px;opacity:0;position:absolute;right:10px;top:50%;transform:translateY(-50%)}[dir=rtl] .choices__list--dropdown .choices__item--selectable{padding-left:100px;padding-right:10px;text-align:right}[dir=rtl] .choices__list--dropdown .choices__item--selectable:after{left:10px;right:auto}}.choices__list--dropdown .choices__item--selectable.is-highlighted{background-color:#f2f2f2}.choices__list--dropdown .choices__item--selectable.is-highlighted:after{opacity:.5}.choices__item{cursor:default}.choices__item--selectable{cursor:pointer}.choices__item--disabled{cursor:not-allowed;opacity:.5;-webkit-user-select:none;-ms-user-select:none;-moz-user-select:none;user-select:none}.choices__heading{border-bottom:1px solid #f7f7f7;color:gray;font-size:12px;font-weight:600;padding:10px}.choices__button{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:transparent;background-position:50%;background-repeat:no-repeat;border:0;cursor:pointer;text-indent:-9999px}.choices__button:focus{outline:none}.choices__input{background-color:#f9f9f9;border:0;border-radius:0;display:inline-block;font-size:14px;margin-bottom:5px;max-width:100%;padding:4px 0 4px 2px;vertical-align:baseline}.choices__input:focus{outline:0}[dir=rtl] .choices__input{padding-left:0;padding-right:2px}.choices__placeholder{opacity:.5} +.iti{display:inline-block;position:relative}.iti *{box-sizing:border-box;-moz-box-sizing:border-box}.iti__hide{display:none}.iti__v-hide{visibility:hidden}.iti input,.iti input[type=tel],.iti input[type=text]{margin-bottom:0!important;margin-right:0;margin-top:0!important;padding-right:36px;position:relative;z-index:0}.iti__flag-container{bottom:0;padding:1px;position:absolute;right:0;top:0}.iti__selected-flag{align-items:center;display:flex;height:100%;padding:0 6px 0 8px;position:relative;z-index:1}.iti__arrow{border-left:3px solid transparent;border-right:3px solid transparent;border-top:4px solid #555;height:0;margin-left:6px;width:0}.iti__arrow--up{border-bottom:4px solid #555;border-top:none}.iti__country-list{-webkit-overflow-scrolling:touch;background-color:#fff;border:1px solid #ccc;box-shadow:1px 1px 4px rgba(0,0,0,.2);list-style:none;margin:0 0 0 -1px;max-height:200px;overflow-y:scroll;padding:0;position:absolute;text-align:left;white-space:nowrap;z-index:2}.iti__country-list--dropup{bottom:100%;margin-bottom:-1px}@media (max-width:500px){.iti__country-list{white-space:normal}}.iti__flag-box{display:inline-block;width:20px}.iti__divider{border-bottom:1px solid #ccc;margin-bottom:5px;padding-bottom:5px}.iti__country{outline:none;padding:5px 10px}.iti__dial-code{color:#999}.iti__country.iti__highlight{background-color:rgba(0,0,0,.05)}.iti__country-name,.iti__dial-code,.iti__flag-box{vertical-align:middle}.iti__country-name,.iti__flag-box{margin-right:6px}.iti--allow-dropdown input,.iti--allow-dropdown input[type=tel],.iti--allow-dropdown input[type=text],.iti--separate-dial-code input,.iti--separate-dial-code input[type=tel],.iti--separate-dial-code input[type=text]{margin-left:0;padding-left:52px;padding-right:6px}.iti--allow-dropdown .iti__flag-container,.iti--separate-dial-code .iti__flag-container{left:0;right:auto}.iti--allow-dropdown .iti__flag-container:hover{cursor:pointer}.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag{background-color:rgba(0,0,0,.05)}.iti--allow-dropdown input[disabled]+.iti__flag-container:hover,.iti--allow-dropdown input[readonly]+.iti__flag-container:hover{cursor:default}.iti--allow-dropdown input[disabled]+.iti__flag-container:hover .iti__selected-flag,.iti--allow-dropdown input[readonly]+.iti__flag-container:hover .iti__selected-flag{background-color:transparent}.iti--separate-dial-code .iti__selected-flag{background-color:rgba(0,0,0,.05)}.iti--separate-dial-code .iti__selected-dial-code{margin-left:6px}.iti--container{left:-1000px;padding:1px;position:absolute;top:-1000px;z-index:1060}.iti--container:hover{cursor:pointer}.iti-mobile .iti--container{bottom:30px;left:30px;position:fixed;right:30px;top:30px}.iti-mobile .iti__country-list{max-height:100%;width:100%}.iti-mobile .iti__country{line-height:1.5em;padding:10px}.iti__flag{width:20px}.iti__flag.iti__be{width:18px}.iti__flag.iti__ch{width:15px}.iti__flag.iti__mc{width:19px}.iti__flag.iti__ne{width:18px}.iti__flag.iti__np{width:13px}.iti__flag.iti__va{width:15px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){.iti__flag{background-size:5652px 15px}}.iti__flag.iti__ac{background-position:0 0;height:10px}.iti__flag.iti__ad{background-position:-22px 0;height:14px}.iti__flag.iti__ae{background-position:-44px 0;height:10px}.iti__flag.iti__af{background-position:-66px 0;height:14px}.iti__flag.iti__ag{background-position:-88px 0;height:14px}.iti__flag.iti__ai{background-position:-110px 0;height:10px}.iti__flag.iti__al{background-position:-132px 0;height:15px}.iti__flag.iti__am{background-position:-154px 0;height:10px}.iti__flag.iti__ao{background-position:-176px 0;height:14px}.iti__flag.iti__aq{background-position:-198px 0;height:14px}.iti__flag.iti__ar{background-position:-220px 0;height:13px}.iti__flag.iti__as{background-position:-242px 0;height:10px}.iti__flag.iti__at{background-position:-264px 0;height:14px}.iti__flag.iti__au{background-position:-286px 0;height:10px}.iti__flag.iti__aw{background-position:-308px 0;height:14px}.iti__flag.iti__ax{background-position:-330px 0;height:13px}.iti__flag.iti__az{background-position:-352px 0;height:10px}.iti__flag.iti__ba{background-position:-374px 0;height:10px}.iti__flag.iti__bb{background-position:-396px 0;height:14px}.iti__flag.iti__bd{background-position:-418px 0;height:12px}.iti__flag.iti__be{background-position:-440px 0;height:15px}.iti__flag.iti__bf{background-position:-460px 0;height:14px}.iti__flag.iti__bg{background-position:-482px 0;height:12px}.iti__flag.iti__bh{background-position:-504px 0;height:12px}.iti__flag.iti__bi{background-position:-526px 0;height:12px}.iti__flag.iti__bj{background-position:-548px 0;height:14px}.iti__flag.iti__bl{background-position:-570px 0;height:14px}.iti__flag.iti__bm{background-position:-592px 0;height:10px}.iti__flag.iti__bn{background-position:-614px 0;height:10px}.iti__flag.iti__bo{background-position:-636px 0;height:14px}.iti__flag.iti__bq{background-position:-658px 0;height:14px}.iti__flag.iti__br{background-position:-680px 0;height:14px}.iti__flag.iti__bs{background-position:-702px 0;height:10px}.iti__flag.iti__bt{background-position:-724px 0;height:14px}.iti__flag.iti__bv{background-position:-746px 0;height:15px}.iti__flag.iti__bw{background-position:-768px 0;height:14px}.iti__flag.iti__by{background-position:-790px 0;height:10px}.iti__flag.iti__bz{background-position:-812px 0;height:14px}.iti__flag.iti__ca{background-position:-834px 0;height:10px}.iti__flag.iti__cc{background-position:-856px 0;height:10px}.iti__flag.iti__cd{background-position:-878px 0;height:15px}.iti__flag.iti__cf{background-position:-900px 0;height:14px}.iti__flag.iti__cg{background-position:-922px 0;height:14px}.iti__flag.iti__ch{background-position:-944px 0;height:15px}.iti__flag.iti__ci{background-position:-961px 0;height:14px}.iti__flag.iti__ck{background-position:-983px 0;height:10px}.iti__flag.iti__cl{background-position:-1005px 0;height:14px}.iti__flag.iti__cm{background-position:-1027px 0;height:14px}.iti__flag.iti__cn{background-position:-1049px 0;height:14px}.iti__flag.iti__co{background-position:-1071px 0;height:14px}.iti__flag.iti__cp{background-position:-1093px 0;height:14px}.iti__flag.iti__cr{background-position:-1115px 0;height:12px}.iti__flag.iti__cu{background-position:-1137px 0;height:10px}.iti__flag.iti__cv{background-position:-1159px 0;height:12px}.iti__flag.iti__cw{background-position:-1181px 0;height:14px}.iti__flag.iti__cx{background-position:-1203px 0;height:10px}.iti__flag.iti__cy{background-position:-1225px 0;height:14px}.iti__flag.iti__cz{background-position:-1247px 0;height:14px}.iti__flag.iti__de{background-position:-1269px 0;height:12px}.iti__flag.iti__dg{background-position:-1291px 0;height:10px}.iti__flag.iti__dj{background-position:-1313px 0;height:14px}.iti__flag.iti__dk{background-position:-1335px 0;height:15px}.iti__flag.iti__dm{background-position:-1357px 0;height:10px}.iti__flag.iti__do{background-position:-1379px 0;height:14px}.iti__flag.iti__dz{background-position:-1401px 0;height:14px}.iti__flag.iti__ea{background-position:-1423px 0;height:14px}.iti__flag.iti__ec{background-position:-1445px 0;height:14px}.iti__flag.iti__ee{background-position:-1467px 0;height:13px}.iti__flag.iti__eg{background-position:-1489px 0;height:14px}.iti__flag.iti__eh{background-position:-1511px 0;height:10px}.iti__flag.iti__er{background-position:-1533px 0;height:10px}.iti__flag.iti__es{background-position:-1555px 0;height:14px}.iti__flag.iti__et{background-position:-1577px 0;height:10px}.iti__flag.iti__eu{background-position:-1599px 0;height:14px}.iti__flag.iti__fi{background-position:-1621px 0;height:12px}.iti__flag.iti__fj{background-position:-1643px 0;height:10px}.iti__flag.iti__fk{background-position:-1665px 0;height:10px}.iti__flag.iti__fm{background-position:-1687px 0;height:11px}.iti__flag.iti__fo{background-position:-1709px 0;height:15px}.iti__flag.iti__fr{background-position:-1731px 0;height:14px}.iti__flag.iti__ga{background-position:-1753px 0;height:15px}.iti__flag.iti__gb{background-position:-1775px 0;height:10px}.iti__flag.iti__gd{background-position:-1797px 0;height:12px}.iti__flag.iti__ge{background-position:-1819px 0;height:14px}.iti__flag.iti__gf{background-position:-1841px 0;height:14px}.iti__flag.iti__gg{background-position:-1863px 0;height:14px}.iti__flag.iti__gh{background-position:-1885px 0;height:14px}.iti__flag.iti__gi{background-position:-1907px 0;height:10px}.iti__flag.iti__gl{background-position:-1929px 0;height:14px}.iti__flag.iti__gm{background-position:-1951px 0;height:14px}.iti__flag.iti__gn{background-position:-1973px 0;height:14px}.iti__flag.iti__gp{background-position:-1995px 0;height:14px}.iti__flag.iti__gq{background-position:-2017px 0;height:14px}.iti__flag.iti__gr{background-position:-2039px 0;height:14px}.iti__flag.iti__gs{background-position:-2061px 0;height:10px}.iti__flag.iti__gt{background-position:-2083px 0;height:13px}.iti__flag.iti__gu{background-position:-2105px 0;height:11px}.iti__flag.iti__gw{background-position:-2127px 0;height:10px}.iti__flag.iti__gy{background-position:-2149px 0;height:12px}.iti__flag.iti__hk{background-position:-2171px 0;height:14px}.iti__flag.iti__hm{background-position:-2193px 0;height:10px}.iti__flag.iti__hn{background-position:-2215px 0;height:10px}.iti__flag.iti__hr{background-position:-2237px 0;height:10px}.iti__flag.iti__ht{background-position:-2259px 0;height:12px}.iti__flag.iti__hu{background-position:-2281px 0;height:10px}.iti__flag.iti__ic{background-position:-2303px 0;height:14px}.iti__flag.iti__id{background-position:-2325px 0;height:14px}.iti__flag.iti__ie{background-position:-2347px 0;height:10px}.iti__flag.iti__il{background-position:-2369px 0;height:15px}.iti__flag.iti__im{background-position:-2391px 0;height:10px}.iti__flag.iti__in{background-position:-2413px 0;height:14px}.iti__flag.iti__io{background-position:-2435px 0;height:10px}.iti__flag.iti__iq{background-position:-2457px 0;height:14px}.iti__flag.iti__ir{background-position:-2479px 0;height:12px}.iti__flag.iti__is{background-position:-2501px 0;height:15px}.iti__flag.iti__it{background-position:-2523px 0;height:14px}.iti__flag.iti__je{background-position:-2545px 0;height:12px}.iti__flag.iti__jm{background-position:-2567px 0;height:10px}.iti__flag.iti__jo{background-position:-2589px 0;height:10px}.iti__flag.iti__jp{background-position:-2611px 0;height:14px}.iti__flag.iti__ke{background-position:-2633px 0;height:14px}.iti__flag.iti__kg{background-position:-2655px 0;height:12px}.iti__flag.iti__kh{background-position:-2677px 0;height:13px}.iti__flag.iti__ki{background-position:-2699px 0;height:10px}.iti__flag.iti__km{background-position:-2721px 0;height:12px}.iti__flag.iti__kn{background-position:-2743px 0;height:14px}.iti__flag.iti__kp{background-position:-2765px 0;height:10px}.iti__flag.iti__kr{background-position:-2787px 0;height:14px}.iti__flag.iti__kw{background-position:-2809px 0;height:10px}.iti__flag.iti__ky{background-position:-2831px 0;height:10px}.iti__flag.iti__kz{background-position:-2853px 0;height:10px}.iti__flag.iti__la{background-position:-2875px 0;height:14px}.iti__flag.iti__lb{background-position:-2897px 0;height:14px}.iti__flag.iti__lc{background-position:-2919px 0;height:10px}.iti__flag.iti__li{background-position:-2941px 0;height:12px}.iti__flag.iti__lk{background-position:-2963px 0;height:10px}.iti__flag.iti__lr{background-position:-2985px 0;height:11px}.iti__flag.iti__ls{background-position:-3007px 0;height:14px}.iti__flag.iti__lt{background-position:-3029px 0;height:12px}.iti__flag.iti__lu{background-position:-3051px 0;height:12px}.iti__flag.iti__lv{background-position:-3073px 0;height:10px}.iti__flag.iti__ly{background-position:-3095px 0;height:10px}.iti__flag.iti__ma{background-position:-3117px 0;height:14px}.iti__flag.iti__mc{background-position:-3139px 0;height:15px}.iti__flag.iti__md{background-position:-3160px 0;height:10px}.iti__flag.iti__me{background-position:-3182px 0;height:10px}.iti__flag.iti__mf{background-position:-3204px 0;height:14px}.iti__flag.iti__mg{background-position:-3226px 0;height:14px}.iti__flag.iti__mh{background-position:-3248px 0;height:11px}.iti__flag.iti__mk{background-position:-3270px 0;height:10px}.iti__flag.iti__ml{background-position:-3292px 0;height:14px}.iti__flag.iti__mm{background-position:-3314px 0;height:14px}.iti__flag.iti__mn{background-position:-3336px 0;height:10px}.iti__flag.iti__mo{background-position:-3358px 0;height:14px}.iti__flag.iti__mp{background-position:-3380px 0;height:10px}.iti__flag.iti__mq{background-position:-3402px 0;height:14px}.iti__flag.iti__mr{background-position:-3424px 0;height:14px}.iti__flag.iti__ms{background-position:-3446px 0;height:10px}.iti__flag.iti__mt{background-position:-3468px 0;height:14px}.iti__flag.iti__mu{background-position:-3490px 0;height:14px}.iti__flag.iti__mv{background-position:-3512px 0;height:14px}.iti__flag.iti__mw{background-position:-3534px 0;height:14px}.iti__flag.iti__mx{background-position:-3556px 0;height:12px}.iti__flag.iti__my{background-position:-3578px 0;height:10px}.iti__flag.iti__mz{background-position:-3600px 0;height:14px}.iti__flag.iti__na{background-position:-3622px 0;height:14px}.iti__flag.iti__nc{background-position:-3644px 0;height:10px}.iti__flag.iti__ne{background-position:-3666px 0;height:15px}.iti__flag.iti__nf{background-position:-3686px 0;height:10px}.iti__flag.iti__ng{background-position:-3708px 0;height:10px}.iti__flag.iti__ni{background-position:-3730px 0;height:12px}.iti__flag.iti__nl{background-position:-3752px 0;height:14px}.iti__flag.iti__no{background-position:-3774px 0;height:15px}.iti__flag.iti__np{background-position:-3796px 0;height:15px}.iti__flag.iti__nr{background-position:-3811px 0;height:10px}.iti__flag.iti__nu{background-position:-3833px 0;height:10px}.iti__flag.iti__nz{background-position:-3855px 0;height:10px}.iti__flag.iti__om{background-position:-3877px 0;height:10px}.iti__flag.iti__pa{background-position:-3899px 0;height:14px}.iti__flag.iti__pe{background-position:-3921px 0;height:14px}.iti__flag.iti__pf{background-position:-3943px 0;height:14px}.iti__flag.iti__pg{background-position:-3965px 0;height:15px}.iti__flag.iti__ph{background-position:-3987px 0;height:10px}.iti__flag.iti__pk{background-position:-4009px 0;height:14px}.iti__flag.iti__pl{background-position:-4031px 0;height:13px}.iti__flag.iti__pm{background-position:-4053px 0;height:14px}.iti__flag.iti__pn{background-position:-4075px 0;height:10px}.iti__flag.iti__pr{background-position:-4097px 0;height:14px}.iti__flag.iti__ps{background-position:-4119px 0;height:10px}.iti__flag.iti__pt{background-position:-4141px 0;height:14px}.iti__flag.iti__pw{background-position:-4163px 0;height:13px}.iti__flag.iti__py{background-position:-4185px 0;height:11px}.iti__flag.iti__qa{background-position:-4207px 0;height:8px}.iti__flag.iti__re{background-position:-4229px 0;height:14px}.iti__flag.iti__ro{background-position:-4251px 0;height:14px}.iti__flag.iti__rs{background-position:-4273px 0;height:14px}.iti__flag.iti__ru{background-position:-4295px 0;height:14px}.iti__flag.iti__rw{background-position:-4317px 0;height:14px}.iti__flag.iti__sa{background-position:-4339px 0;height:14px}.iti__flag.iti__sb{background-position:-4361px 0;height:10px}.iti__flag.iti__sc{background-position:-4383px 0;height:10px}.iti__flag.iti__sd{background-position:-4405px 0;height:10px}.iti__flag.iti__se{background-position:-4427px 0;height:13px}.iti__flag.iti__sg{background-position:-4449px 0;height:14px}.iti__flag.iti__sh{background-position:-4471px 0;height:10px}.iti__flag.iti__si{background-position:-4493px 0;height:10px}.iti__flag.iti__sj{background-position:-4515px 0;height:15px}.iti__flag.iti__sk{background-position:-4537px 0;height:14px}.iti__flag.iti__sl{background-position:-4559px 0;height:14px}.iti__flag.iti__sm{background-position:-4581px 0;height:15px}.iti__flag.iti__sn{background-position:-4603px 0;height:14px}.iti__flag.iti__so{background-position:-4625px 0;height:14px}.iti__flag.iti__sr{background-position:-4647px 0;height:14px}.iti__flag.iti__ss{background-position:-4669px 0;height:10px}.iti__flag.iti__st{background-position:-4691px 0;height:10px}.iti__flag.iti__sv{background-position:-4713px 0;height:12px}.iti__flag.iti__sx{background-position:-4735px 0;height:14px}.iti__flag.iti__sy{background-position:-4757px 0;height:14px}.iti__flag.iti__sz{background-position:-4779px 0;height:14px}.iti__flag.iti__ta{background-position:-4801px 0;height:10px}.iti__flag.iti__tc{background-position:-4823px 0;height:10px}.iti__flag.iti__td{background-position:-4845px 0;height:14px}.iti__flag.iti__tf{background-position:-4867px 0;height:14px}.iti__flag.iti__tg{background-position:-4889px 0;height:13px}.iti__flag.iti__th{background-position:-4911px 0;height:14px}.iti__flag.iti__tj{background-position:-4933px 0;height:10px}.iti__flag.iti__tk{background-position:-4955px 0;height:10px}.iti__flag.iti__tl{background-position:-4977px 0;height:10px}.iti__flag.iti__tm{background-position:-4999px 0;height:14px}.iti__flag.iti__tn{background-position:-5021px 0;height:14px}.iti__flag.iti__to{background-position:-5043px 0;height:10px}.iti__flag.iti__tr{background-position:-5065px 0;height:14px}.iti__flag.iti__tt{background-position:-5087px 0;height:12px}.iti__flag.iti__tv{background-position:-5109px 0;height:10px}.iti__flag.iti__tw{background-position:-5131px 0;height:14px}.iti__flag.iti__tz{background-position:-5153px 0;height:14px}.iti__flag.iti__ua{background-position:-5175px 0;height:14px}.iti__flag.iti__ug{background-position:-5197px 0;height:14px}.iti__flag.iti__um{background-position:-5219px 0;height:11px}.iti__flag.iti__un{background-position:-5241px 0;height:14px}.iti__flag.iti__us{background-position:-5263px 0;height:11px}.iti__flag.iti__uy{background-position:-5285px 0;height:14px}.iti__flag.iti__uz{background-position:-5307px 0;height:10px}.iti__flag.iti__va{background-position:-5329px 0;height:15px}.iti__flag.iti__vc{background-position:-5346px 0;height:14px}.iti__flag.iti__ve{background-position:-5368px 0;height:14px}.iti__flag.iti__vg{background-position:-5390px 0;height:10px}.iti__flag.iti__vi{background-position:-5412px 0;height:14px}.iti__flag.iti__vn{background-position:-5434px 0;height:14px}.iti__flag.iti__vu{background-position:-5456px 0;height:12px}.iti__flag.iti__wf{background-position:-5478px 0;height:14px}.iti__flag.iti__ws{background-position:-5500px 0;height:10px}.iti__flag.iti__xk{background-position:-5522px 0;height:15px}.iti__flag.iti__ye{background-position:-5544px 0;height:14px}.iti__flag.iti__yt{background-position:-5566px 0;height:14px}.iti__flag.iti__za{background-position:-5588px 0;height:14px}.iti__flag.iti__zm{background-position:-5610px 0;height:14px}.iti__flag.iti__zw{background-position:-5632px 0;height:10px}.iti__flag{background-color:#dbdbdb;background-image:url(/images/vendor/intl-tel-input/build/flags.png?007b2705c0a8f69dfdf6ea1bfa0341c9);background-position:20px 0;background-repeat:no-repeat;box-shadow:0 0 1px 0 #888;height:15px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){.iti__flag{background-image:url(/images/vendor/intl-tel-input/build/flags@2x.png?9d5328fb490cddd43f6698012123404b)}}.iti__flag.iti__np{background-color:transparent} +body,html{height:100%}input{width:100%}.hide-scroll::-webkit-scrollbar{display:none}[x-cloak]{display:none} +.brand-laravel{color:var(--brand-laravel)}.brand-alpinejs{color:var(--brand-alpinejs)}.brand-javascript{color:var(--brand-javascript)}.brand-typesript{color:var(--brand-typesript)}.brand-react{color:var(--brand-react)}.brand-vue-js{color:var(--brand-vue-js)}.brand-php{color:var(--brand-php)}.brand-digital-ocean{color:var(--brand-digital-ocean)}.brand-forge{color:var(--brand-forge)}.brand-packages{color:var(--brand-packages)}.brand-outils{color:var(--brand-outils)}.brand-tailwindcss{color:var(--brand-tailwindcss)}.brand-design{color:var(--brand-design)}.brand-open-source{color:var(--brand-open-source)}.brand-freelance{color:var(--brand-freelance)}.brand-salaire{color:var(--brand-salaire)}.brand-projets{color:var(--brand-projets)}.brand-entrepreneuriat{color:var(--brand-entrepreneuriat)}.brand-paiement-en-ligne{color:var(--brand-paiement-en-ligne)}.brand-branding{color:var(--brand-branding)}.brand-applications{color:var(--brand-applications)}.brand-event{color:var(--brand-event)}.brand-tutoriel{color:var(--brand-tutoriel)}.brand-communaute{color:var(--brand-communaute)}.brand-astuces{color:var(--brand-astuces)} +.iti{display:block}.iti__selected-flag{padding:0 10px}.choices{margin-top:8px}.standard .choices__input.choices__input--cloned{display:none}.standard .choices__inner{--tw-border-opacity:1!important;--tw-bg-opacity:1!important;align-items:center!important;background-color:rgba(var(--color-input-fill),var(--tw-bg-opacity))!important;border-color:rgba(var(--color-input-border),var(--tw-border-opacity))!important;border-radius:.25rem!important;border-width:1px!important;display:flex!important;height:3rem!important;padding:.5rem!important;width:100%!important}.standard .choices__list--dropdown{--tw-border-opacity:1!important;border-color:rgba(var(--color-input-border),var(--tw-border-opacity))!important;border-width:2px!important}.standard .choices__list--dropdown .choices__list{--tw-border-opacity:1!important;--tw-bg-opacity:1!important;background-color:rgba(var(--color-input-fill),var(--tw-bg-opacity))!important;border-color:rgba(var(--color-border),var(--tw-border-opacity))!important;border-width:1px!important}.standard .choices__list--single{padding:0!important}.standard .choices__item{--tw-bg-opacity:1!important;--tw-text-opacity:1!important;background-color:rgba(var(--color-footer-fill),var(--tw-bg-opacity))!important;border-radius:.25rem!important;border-width:0!important;color:rgba(var(--color-text-base),var(--tw-text-opacity))!important;cursor:pointer!important;font-size:.875rem!important;line-height:1.25rem!important;margin-bottom:0!important;margin-top:0!important;padding:.25rem .5rem!important}.standard .choices__item.choices__item--choice{border-radius:0!important;padding-bottom:.5rem!important;padding-top:.5rem!important}.standard .choices__item.choices__item--choice.choices__item--selectable{--tw-bg-opacity:1!important;--tw-text-opacity:1!important;background-color:rgba(var(--color-input-fill),var(--tw-bg-opacity))!important;border-radius:0!important;color:rgba(var(--color-text-base),var(--tw-text-opacity))!important;padding:.5rem!important}.standard .choices__item.choices__item--choice.choices__item--selectable:hover{--tw-bg-opacity:1!important;background-color:rgba(var(--color-card-fill),var(--tw-bg-opacity))!important}.standard .choices__item.choices__item--selectable{background-color:rgb(16 185 129/var(--tw-bg-opacity))!important;border-color:rgb(16 185 129/var(--tw-border-opacity))!important}.standard .choices__item.choices__item--selectable,.standard .choices__item.is-highlighted{--tw-border-opacity:1!important;--tw-bg-opacity:1!important;--tw-text-opacity:1!important;color:rgb(255 255 255/var(--tw-text-opacity))!important}.standard .choices__item.is-highlighted{background-color:rgb(5 150 105/var(--tw-bg-opacity))!important;border-color:rgb(5 150 105/var(--tw-border-opacity))!important}.standard .choices[data-type*=select-one]:after{border-bottom-color:transparent!important;border-left-color:transparent!important;border-right-color:transparent!important;border-top-color:var(--color-input-border)!important}.standard .choices[data-type*=select-one] .choices__input{--tw-border-opacity:1!important;border-bottom-width:2px!important;border-color:rgba(var(--color-input-border),var(--tw-border-opacity))!important;border-radius:0!important}.standard .choices__item.choices__item--choice.choices__item--selectable.is-highlighted,.standard .choices__item.choices__item--choice.is-selected.choices__item--selectable{--tw-border-opacity:1!important;--tw-bg-opacity:1!important;--tw-text-opacity:1!important;background-color:rgb(16 185 129/var(--tw-bg-opacity))!important;border-color:rgb(16 185 129/var(--tw-border-opacity))!important;color:rgb(255 255 255/var(--tw-text-opacity))!important} +pre{border-radius:.25rem;font-size:1.125rem;line-height:1.75rem;margin-bottom:1rem;margin-top:1rem;overflow-x:auto;padding:0!important}pre,pre code.torchlight{font-family:Operator Mono,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace}pre code.torchlight{display:block;min-width:-webkit-max-content;min-width:-moz-max-content;min-width:max-content;padding:1rem;padding-bottom:1rem!important;padding-top:1rem!important}pre code.torchlight .line{font-weight:300;padding-left:1rem;padding-right:1rem}pre code.torchlight .line-number,pre code.torchlight .summary-caret{margin-right:1rem}.torchlight.has-focus-lines .line:not(.line-focus){filter:blur(.095rem);opacity:.65;transition:filter .35s,opacity .35s}.torchlight.has-focus-lines:hover .line:not(.line-focus){filter:blur(0);opacity:1}.torchlight summary:focus{outline:none}.torchlight details>summary::-webkit-details-marker,.torchlight details>summary::marker{display:none}.torchlight details .summary-caret:after{pointer-events:none}.torchlight .summary-caret-empty:after,.torchlight details .summary-caret-end:after,.torchlight details .summary-caret-middle:after{content:" "}.torchlight details[open] .summary-caret-start:after{content:"-"}.torchlight details:not([open]) .summary-caret-start:after{content:"+"}.torchlight details[open] .summary-hide-when-open{display:none}.torchlight details:not([open]) .summary-hide-when-open{display:inline;display:initial} +.toc li a{--tw-text-opacity:1;align-items:center;border-radius:.375rem;color:rgba(var(--color-text-base),var(--tw-text-opacity));display:flex;font-size:.875rem;font-weight:500;line-height:1.25rem;padding-bottom:.375rem;padding-top:.375rem;position:relative;transition-duration:.15s;transition-property:color,background-color,border-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-text-decoration-color,-webkit-backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-text-decoration-color,-webkit-backdrop-filter;transition-timing-function:cubic-bezier(.4,0,.2,1)}.toc li a:hover{--tw-text-opacity:1;color:rgba(var(--color-text-inverted),var(--tw-text-opacity))}.toc li a:focus{outline:2px solid transparent;outline-offset:2px}.toc li>ul>li{padding-left:1rem}.toc li.active>a,.toc li:not(.active)>ul>li.active a{--tw-text-opacity:1;color:rgba(var(--color-text-primary),var(--tw-text-opacity))} +.gu-mirror{-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";filter:alpha(opacity=80);margin:0!important;opacity:.8;position:fixed!important;z-index:9999!important}.gu-hide{display:none!important}.gu-unselectable{-webkit-user-select:none!important;-moz-user-select:none!important;-ms-user-select:none!important;user-select:none!important}.gu-transit{-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";filter:alpha(opacity=20);opacity:.2}.media-library,.media-library *,.media-library-item *{all:unset;border-style:solid;border-width:0;box-sizing:border-box;position:relative}.media-library-sortable .media-library-item{-webkit-user-drag:element}.media-library-item script,.media-library script{display:none}.media-library{--tw-text-opacity:1;color:rgba(var(--color-text-inverted-muted),var(--tw-text-opacity));display:grid;grid-template-areas:"errors" "items" "uploader";margin-bottom:2px}.media-library-listerrors{grid-area:errors;margin-bottom:-2px}.media-library-items{grid-area:items;margin-bottom:-2px}.media-library-uploader{grid-area:uploader;margin-bottom:-2px}.media-library-item.gu-mirror{--tw-border-opacity:1;--tw-shadow:0 20px 25px -5px rgba(0,0,0,.1),0 8px 10px -6px rgba(0,0,0,.1);--tw-shadow-colored:0 20px 25px -5px var(--tw-shadow-color),0 8px 10px -6px var(--tw-shadow-color);border-color:rgba(var(--color-input-border),var(--tw-border-opacity));border-width:2px;box-shadow:0 0 transparent,0 0 transparent,var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow,0 0 transparent),var(--tw-ring-shadow,0 0 transparent),var(--tw-shadow)}.media-library-add{display:flex}.media-library-replace,.media-library-replace .media-library-dropzone,.media-library-replace .media-library-placeholder{bottom:0;height:100%;left:0;margin:0;position:absolute;right:0;top:0;width:100%}.media-library-multiple .media-library-items{--tw-border-opacity:1;border-color:rgba(var(--color-input-border),var(--tw-border-opacity));border-width:2px;display:block}.media-library-item{--tw-bg-opacity:1;align-items:center;background-color:rgba(var(--color-card-fill),var(--tw-bg-opacity));display:flex;min-width:0}.media-library-item-row:not(:last-child){--tw-border-opacity:1;border-bottom-width:1px;border-color:rgba(var(--color-input-border),var(--tw-border-opacity))}.media-library-filled.media-library-sortable .media-library-add .media-library-dropzone:before{content:""}.media-library-filled.media-library-sortable .media-library-add .media-library-dropzone:before,.media-library-row-drag{--tw-bg-opacity:0.5;--tw-border-opacity:1;--tw-text-opacity:1;align-items:center;align-self:stretch;background-color:rgba(var(--color-card-fill),var(--tw-bg-opacity));border-color:rgba(var(--color-input-border),var(--tw-border-opacity));border-right-width:1px;color:rgba(var(--color-text-base),var(--tw-text-opacity));cursor:move;display:flex;flex:none;flex-direction:column;justify-content:center;width:2rem}.media-library-row-drag:hover{--tw-text-opacity:1;color:rgb(16 185 129/var(--tw-text-opacity))}.media-library-row-remove{--tw-text-opacity:1;align-items:center;color:rgba(var(--color-text-base),var(--tw-text-opacity));cursor:pointer;display:flex;height:3rem;justify-content:center;opacity:.5;position:absolute;right:0;top:0;width:3rem}.media-library-row-remove:hover{opacity:1;transition-duration:.3s;transition-property:opacity;transition-timing-function:cubic-bezier(.4,0,.2,1)}.media-library-listerrors{--tw-border-opacity:0.5;--tw-bg-opacity:0.5;background-color:rgb(254 202 202/var(--tw-bg-opacity));border-color:rgb(252 165 165/var(--tw-border-opacity));border-width:2px;display:block;font-size:.75rem;line-height:1rem}.media-library-listerror{align-items:flex-start;display:flex}.media-library-listerror:not(:last-child){--tw-border-opacity:0.25;border-bottom-width:2px;border-color:rgb(252 165 165/var(--tw-border-opacity))}.media-library-listerror-icon{align-self:stretch;display:flex;justify-content:center;margin-left:1rem;margin-right:1rem;padding-bottom:.75rem;padding-top:.75rem;width:2rem}.media-library-filled.media-library-sortable .media-library-listerror-icon{--tw-bg-opacity:0.5;--tw-border-opacity:1;background-color:rgb(254 202 202/var(--tw-bg-opacity));border-color:rgb(254 202 202/var(--tw-border-opacity));border-right-width:1px;margin-left:0;margin-right:1rem}.media-library-listerror-content{flex-grow:1;padding-right:3rem}.media-library-listerror-title{--tw-text-opacity:1;align-items:center;color:rgb(220 38 38/var(--tw-text-opacity));display:flex;height:3rem}.media-library-listerror-items{--tw-border-opacity:0.25;border-color:rgb(252 165 165/var(--tw-border-opacity));border-top-width:1px;margin-top:-.5rem}.media-library-listerror-item{align-items:center;display:flex;padding-bottom:.75rem;padding-top:.75rem}.media-library-listerror-thumb{flex:none;height:1.5rem;margin-right:.75rem;width:1.5rem}.media-library-listerror-thumb:after{--tw-border-opacity:0.5;border-color:rgb(220 38 38/var(--tw-border-opacity));border-width:1px;bottom:0;content:"";left:0;position:absolute;right:0;top:0}.media-library-listerror-text{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.media-library-thumb{flex:none;height:4rem;margin:1rem;position:relative;width:4rem}.media-library-single .media-library-thumb{margin:0 1rem 0 0}.media-library-thumb-img{height:100%;-o-object-fit:cover;object-fit:cover;overflow:hidden;width:100%}.media-library-thumb-extension{--tw-bg-opacity:1;align-items:center;background-color:rgba(var(--color-card-fill),var(--tw-bg-opacity));display:flex;height:100%;justify-content:center;width:100%}.media-library-thumb-extension-truncate{--tw-text-opacity:1;color:rgba(var(--color-text-base),var(--tw-text-opacity));font-size:.75rem;font-weight:600;line-height:1rem;max-width:100%;overflow:hidden;text-overflow:ellipsis;text-transform:uppercase;white-space:nowrap}.media-library-placeholder{align-items:center;display:flex;height:calc(4rem - 4px);justify-content:center;width:4rem}.media-library-filled.media-library-sortable .media-library-add .media-library-placeholder{height:2rem;margin-left:-2rem;margin-right:1rem;width:2rem}.media-library-multiple.media-library-empty .media-library-add .media-library-placeholder:before{--tw-bg-opacity:0.25;background-color:rgba(var(--color-footer-fill),var(--tw-bg-opacity));content:"";height:2.5rem;left:50%;position:absolute;top:50%;transform:translate(calc(-50% + 3px),calc(-50% + 3px));width:2.5rem}.media-library-multiple.media-library-empty .media-library-add .media-library-placeholder:after{--tw-bg-opacity:1;--tw-border-opacity:0.25;background-color:rgba(var(--color-input-fill),var(--tw-bg-opacity));border-color:rgba(var(--color-input-border),var(--tw-border-opacity));border-width:1px;content:"";height:2.5rem;left:50%;position:absolute;top:50%;transform:translate(-50%,-50%);width:2.5rem}.media-library-dropzone-drop .media-library-placeholder,.media-library-dropzone:not(.disabled):active .media-library-placeholder{transform:translateY(1px)}.media-library-help{--tw-text-opacity:1;color:rgba(var(--color-text-base),var(--tw-text-opacity));font-size:.75rem;line-height:1rem;padding-right:1rem;text-align:left}.media-library-help-clear{cursor:pointer;opacity:.75;padding-left:.5rem;padding-right:.5rem}.media-library-help-clear:hover{opacity:1;transition-duration:.3s;transition-property:opacity;transition-timing-function:cubic-bezier(.4,0,.2,1)}.media-library-dropzone{--tw-border-opacity:0.5;align-items:center;-webkit-appearance:none!important;-moz-appearance:none!important;appearance:none!important;background-color:transparent;border-color:rgba(var(--color-input-border),var(--tw-border-opacity));border-width:2px;display:flex;flex-grow:1;transition-duration:.3s;transition-property:color,background-color,border-color,fill,stroke,-webkit-text-decoration-color;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,-webkit-text-decoration-color;transition-timing-function:cubic-bezier(.4,0,.2,1)}.media-library-dropzone-add{--tw-bg-opacity:1;background-color:rgba(var(--color-card-muted-fill),var(--tw-bg-opacity));border-style:dashed}.media-library-dropzone-replace{border-style:solid}.media-library-dropzone-drag,.media-library-dropzone:not(.disabled):hover{--tw-bg-opacity:0.25;--tw-border-opacity:0.25;background-color:rgb(110 231 183/var(--tw-bg-opacity));border-color:rgb(5 150 105/var(--tw-border-opacity))}.media-library-dropzone-drop,.media-library-dropzone:not(.disabled):active,.media-library-dropzone:not(.disabled):focus{--tw-bg-opacity:0.5;--tw-border-opacity:0.25;background-color:rgb(110 231 183/var(--tw-bg-opacity));border-color:rgb(5 150 105/var(--tw-border-opacity));outline:2px solid transparent;outline-offset:2px}.media-library-dropzone.disabled{--tw-bg-opacity:0.25;--tw-border-opacity:0.25;background-color:rgb(252 165 165/var(--tw-bg-opacity));border-color:rgb(220 38 38/var(--tw-border-opacity));cursor:not-allowed}.media-library-properties{--tw-text-opacity:1;color:rgba(var(--color-text-base),var(--tw-text-opacity));flex-grow:1;font-size:.75rem;line-height:1rem;margin-bottom:1rem;margin-right:1rem;margin-top:1rem;min-width:0}.media-library-single .media-library-properties{margin-bottom:0;margin-top:0}.media-library-properties-fixed{flex-grow:0;width:8rem}.media-library-property{--tw-text-opacity:1;color:rgba(var(--color-text-base),var(--tw-text-opacity));display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.media-library-field{display:block;margin-bottom:.5rem;margin-top:.5rem;overflow:hidden}.media-library-field-error{--tw-text-opacity:1;color:rgb(220 38 38/var(--tw-text-opacity));display:block;margin-top:.25rem}.media-library-label{--tw-text-opacity:1;color:rgba(var(--color-text-base),var(--tw-text-opacity));display:block;font-size:.75rem;line-height:1rem;padding-right:.5rem}.media-library-input{--tw-text-opacity:1;--tw-bg-opacity:1;background-color:rgba(var(--color-card-fill),var(--tw-bg-opacity));border-radius:.375rem;color:rgba(var(--color-text-inverted),var(--tw-text-opacity));flex:1 1 0%;font-size:.75rem;line-height:1rem;padding:.25rem .5rem;transition-duration:.3s;transition-property:color,background-color,border-color,fill,stroke,-webkit-text-decoration-color;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,-webkit-text-decoration-color;transition-timing-function:cubic-bezier(.4,0,.2,1);width:100%}.media-library-input:focus{--tw-bg-opacity:1;background-color:rgb(209 250 229/var(--tw-bg-opacity));outline:2px solid transparent;outline-offset:2px}.media-library-button{--tw-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px -1px rgba(0,0,0,.1);--tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color),0 1px 2px -1px var(--tw-shadow-color);--tw-border-opacity:0.75;align-items:center;border-color:rgba(var(--color-input-border),var(--tw-border-opacity));border-radius:9999px;border-width:1px;box-shadow:0 0 transparent,0 0 transparent,var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow,0 0 transparent),var(--tw-ring-shadow,0 0 transparent),var(--tw-shadow);display:flex;height:1.5rem;justify-content:center;line-height:1;transition-duration:.15s;transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1);width:1.5rem;z-index:10}.media-library-sortable .media-library-button{height:1.25rem;width:1.25rem}.media-library-button-info{color:rgb(16 185 129/var(--tw-text-opacity))}.media-library-button-info,.media-library-button-warning{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgba(var(--color-card-fill),var(--tw-bg-opacity))}.media-library-button-warning{color:rgb(239 68 68/var(--tw-text-opacity))}.media-library-button-error{--tw-bg-opacity:1;--tw-text-opacity:1;--tw-border-opacity:1;background-color:rgb(239 68 68/var(--tw-bg-opacity));border-color:rgb(248 113 113/var(--tw-border-opacity));color:rgba(var(--color-text-inverted),var(--tw-text-opacity))}.media-library-button-success{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(16 185 129/var(--tw-bg-opacity));color:rgba(var(--color-text-inverted),var(--tw-text-opacity))}.media-library-replace .media-library-button{opacity:0}.media-library-dropzone-drag+.media-library-placeholder .media-library-button,.media-library-dropzone:not(.disabled):focus .media-library-placeholder .media-library-button,.media-library-dropzone:not(.disabled):hover .media-library-placeholder .media-library-button{--tw-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -2px rgba(0,0,0,.1);--tw-shadow-colored:0 4px 6px -1px var(--tw-shadow-color),0 2px 4px -2px var(--tw-shadow-color);box-shadow:0 0 transparent,0 0 transparent,var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow,0 0 transparent),var(--tw-ring-shadow,0 0 transparent),var(--tw-shadow);opacity:1}.media-library-dropzone-drop .media-library-placeholder .media-library-button,.media-library-dropzone:not(.disabled):active .media-library-placeholder .media-library-button{--tw-shadow:inset 0 2px 4px 0 rgba(0,0,0,.05);--tw-shadow-colored:inset 0 2px 4px 0 var(--tw-shadow-color);box-shadow:0 0 transparent,0 0 transparent,var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow,0 0 transparent),var(--tw-ring-shadow,0 0 transparent),var(--tw-shadow);opacity:1}.media-library-icon{height:1.25rem;width:1.25rem}.media-library-icon-fill{fill:currentColor}.media-library-progress-wrap{--tw-bg-opacity:0.5;align-items:center;background-color:rgba(var(--color-card-fill),var(--tw-bg-opacity));bottom:0;display:flex;height:100%;justify-content:center;left:0;opacity:0;padding-left:.75rem;padding-right:.75rem;pointer-events:none;position:absolute;right:0;top:0;transition-duration:.3s;transition-property:opacity;transition-timing-function:cubic-bezier(.4,0,.2,1);width:100%;z-index:10}.media-library-progress-wrap-loading{opacity:1}.media-library-progress{--tw-bg-opacity:1;--tw-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px -1px rgba(0,0,0,.1);--tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color),0 1px 2px -1px var(--tw-shadow-color);-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:rgba(var(--color-card-fill),var(--tw-bg-opacity));border-radius:9999px;box-shadow:0 0 transparent,0 0 transparent,var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow,0 0 transparent),var(--tw-ring-shadow,0 0 transparent),var(--tw-shadow);height:.25rem;max-width:28rem;width:100%}.media-library progress::-webkit-progress-bar{--tw-bg-opacity:1;-webkit-appearance:none;appearance:none;background-color:rgba(var(--color-card-fill),var(--tw-bg-opacity));border-radius:9999px}.media-library progress::-moz-progress-bar{--tw-bg-opacity:1;background-color:rgb(16 185 129/var(--tw-bg-opacity));height:100%}.media-library progress::-webkit-progress-value{--tw-bg-opacity:1;background-color:rgb(16 185 129/var(--tw-bg-opacity));height:100%}.media-library-text-separator{opacity:.5;padding-left:.25rem;padding-right:.25rem}.media-library-text-success{--tw-text-opacity:1;color:rgb(5 150 105/var(--tw-text-opacity))}.media-library-text-error{--tw-text-opacity:1;color:rgb(220 38 38/var(--tw-text-opacity))}.media-library-text-link{cursor:pointer;-webkit-text-decoration-line:underline;text-decoration-line:underline}.media-library-hidden{display:none}.media-library-block{display:block}[dir=rtl] .media-library-row-remove{left:0;right:auto}[dir=rtl] .media-library-properties{margin-left:1rem;margin-right:0}[dir=rtl] .media-library-filled.media-library-sortable .media-library-add .media-library-placeholder{margin-left:1rem;margin-right:-2rem}[dir=rtl] .media-library-filled.media-library-sortable .media-library-add .media-library-dropzone:before,[dir=rtl] .media-library-row-drag{border-left-width:1px;border-right-width:0}[dir=rtl] .media-library-help{padding-left:1rem;padding-right:0;text-align:right}[dir=rtl] .media-library-listerror-content{padding-left:3rem;padding-right:0}[dir=rtl] .media-library-filled.media-library-sortable .media-library-listerror-icon{border-left-width:1px;border-right-width:0;margin-left:1rem;margin-right:0} +/*! tailwindcss v3.0.8 | MIT License | https://tailwindcss.com*/*,:after,:before{border:0 solid;box-sizing:border-box}:after,:before{--tw-content:""}html{-webkit-text-size-adjust:100%;font-family:Inter var,ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,sans-serif,BlinkMacSystemFont,Helvetica Neue,Arial,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;line-height:1.5;-moz-tab-size:4;-o-tab-size:4;tab-size:4}body{line-height:inherit;margin:0}hr{border-top-width:1px;color:inherit;height:0}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:Operator Mono,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{border-collapse:collapse;border-color:inherit;text-indent:0}button,input,optgroup,select,textarea{color:inherit;font-family:inherit;font-size:100%;line-height:inherit;margin:0;padding:0}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0}fieldset,legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{color:#9ca3af;opacity:1}input:-ms-input-placeholder,textarea:-ms-input-placeholder{color:#9ca3af;opacity:1}input::placeholder,textarea::placeholder{color:#9ca3af;opacity:1}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{height:auto;max-width:100%}[hidden]{display:none}[multiple],[type=date],[type=datetime-local],[type=email],[type=month],[type=number],[type=password],[type=search],[type=tel],[type=text],[type=time],[type=url],[type=week],select,textarea{--tw-shadow:0 0 transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;border-color:#6b7280;border-radius:0;border-width:1px;font-size:1rem;line-height:1.5rem;padding:.5rem .75rem}[multiple]:focus,[type=date]:focus,[type=datetime-local]:focus,[type=email]:focus,[type=month]:focus,[type=number]:focus,[type=password]:focus,[type=search]:focus,[type=tel]:focus,[type=text]:focus,[type=time]:focus,[type=url]:focus,[type=week]:focus,select:focus,textarea:focus{--tw-ring-inset:var(--tw-empty,/*!*/ /*!*/);--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:#2563eb;--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);border-color:#2563eb;box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);outline:2px solid transparent;outline-offset:2px}input::-moz-placeholder,textarea::-moz-placeholder{color:#6b7280;opacity:1}input:-ms-input-placeholder,textarea:-ms-input-placeholder{color:#6b7280;opacity:1}input::placeholder,textarea::placeholder{color:#6b7280;opacity:1}::-webkit-datetime-edit-fields-wrapper{padding:0}::-webkit-date-and-time-value{min-height:1.5em}select{-webkit-print-color-adjust:exact;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3E%3C/svg%3E");background-position:right .5rem center;background-repeat:no-repeat;background-size:1.5em 1.5em;color-adjust:exact;padding-right:2.5rem}[multiple]{-webkit-print-color-adjust:unset;background-image:none;background-position:0 0;background-repeat:unset;background-size:auto auto;background-size:initial;color-adjust:unset;padding-right:.75rem}[type=checkbox],[type=radio]{-webkit-print-color-adjust:exact;--tw-shadow:0 0 transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;background-origin:border-box;border-color:#6b7280;border-width:1px;color:#2563eb;color-adjust:exact;display:inline-block;flex-shrink:0;height:1rem;padding:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;vertical-align:middle;width:1rem}[type=checkbox]{border-radius:0}[type=radio]{border-radius:100%}[type=checkbox]:focus,[type=radio]:focus{--tw-ring-inset:var(--tw-empty,/*!*/ /*!*/);--tw-ring-offset-width:2px;--tw-ring-offset-color:#fff;--tw-ring-color:#2563eb;--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);outline:2px solid transparent;outline-offset:2px}[type=checkbox]:checked,[type=radio]:checked{background-color:currentColor;background-position:50%;background-repeat:no-repeat;background-size:100% 100%;border-color:transparent}[type=checkbox]:checked{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 16 16' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.207 4.793a1 1 0 0 1 0 1.414l-5 5a1 1 0 0 1-1.414 0l-2-2a1 1 0 0 1 1.414-1.414L6.5 9.086l4.293-4.293a1 1 0 0 1 1.414 0z'/%3E%3C/svg%3E")}[type=radio]:checked{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 16 16' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='3'/%3E%3C/svg%3E")}[type=checkbox]:checked:focus,[type=checkbox]:checked:hover,[type=radio]:checked:focus,[type=radio]:checked:hover{background-color:currentColor;border-color:transparent}[type=checkbox]:indeterminate{background-color:currentColor;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%3Cpath stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3E%3C/svg%3E");background-position:50%;background-repeat:no-repeat;background-size:100% 100%;border-color:transparent}[type=checkbox]:indeterminate:focus,[type=checkbox]:indeterminate:hover{background-color:currentColor;border-color:transparent}[type=file]{background:unset;border-color:inherit;border-radius:0;border-width:0;font-size:unset;line-height:inherit;padding:0}[type=file]:focus{outline:1px auto -webkit-focus-ring-color}:root{--color-text-primary:5,150,105;--color-text-primary-hover:16,185,129;--color-text-link-menu:107,114,128;--color-text-link-menu-hover:17,24,39;--color-text-base:107,114,128;--color-text-muted:156,163,175;--color-text-inverted:17,24,39;--color-text-inverted-muted:31,41,55;--color-link-fill:243,244,246;--color-menu-fill:255,255,255;--color-body-fill:249,250,251;--color-footer-fill:var(--color-menu-fill);--color-footer-light-fill:var(--color-body-fill);--color-input-fill:var(--color-menu-fill);--color-button-default:var(--color-menu-fill);--color-card-fill:var(--color-menu-fill);--color-card-gray:243,244,246;--color-card-muted-fill:var(--color-body-fill);--color-input-border:209,213,219;--color-divide:229,231,235;--color-divide-light:243,244,246;--color-border:var(--color-divide);--color-border-light:var(--color-divide-light)}.theme-dark{--color-text-primary:5,150,105;--color-text-primary-hover:16,185,129;--color-text-link-menu:209,213,219;--color-text-link-menu-hover:255,255,255;--color-text-base:181,181,189;--color-text-muted:107,114,128;--color-text-inverted:255,255,255;--color-text-inverted-muted:156,163,175;--color-link-fill:55,65,81;--color-menu-fill:22,27,34;--color-body-fill:13,17,23;--color-footer-fill:var(--color-menu-fill);--color-footer-light-fill:var(--color-footer-fill);--color-input-fill:31,41,55;--color-button-default:55,65,81;--color-card-fill:22,27,34;--color-card-gray:var(--color-menu-fill);--color-card-muted-fill:17,22,29;--color-input-border:31,41,55;--color-divide:55,65,81;--color-divide-light:55,65,81;--color-border:55,65,81;--color-border-light:55,65,81}*,:after,:before{--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-transform:translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));--tw-border-opacity:1;--tw-ring-inset:var(--tw-empty,/*!*/ /*!*/);--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 transparent;--tw-ring-shadow:0 0 transparent;--tw-shadow:0 0 transparent;--tw-shadow-colored:0 0 transparent;--tw-blur:var(--tw-empty,/*!*/ /*!*/);--tw-brightness:var(--tw-empty,/*!*/ /*!*/);--tw-contrast:var(--tw-empty,/*!*/ /*!*/);--tw-grayscale:var(--tw-empty,/*!*/ /*!*/);--tw-hue-rotate:var(--tw-empty,/*!*/ /*!*/);--tw-invert:var(--tw-empty,/*!*/ /*!*/);--tw-saturate:var(--tw-empty,/*!*/ /*!*/);--tw-sepia:var(--tw-empty,/*!*/ /*!*/);--tw-drop-shadow:var(--tw-empty,/*!*/ /*!*/);--tw-filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);--tw-backdrop-blur:var(--tw-empty,/*!*/ /*!*/);--tw-backdrop-brightness:var(--tw-empty,/*!*/ /*!*/);--tw-backdrop-contrast:var(--tw-empty,/*!*/ /*!*/);--tw-backdrop-grayscale:var(--tw-empty,/*!*/ /*!*/);--tw-backdrop-hue-rotate:var(--tw-empty,/*!*/ /*!*/);--tw-backdrop-invert:var(--tw-empty,/*!*/ /*!*/);--tw-backdrop-opacity:var(--tw-empty,/*!*/ /*!*/);--tw-backdrop-saturate:var(--tw-empty,/*!*/ /*!*/);--tw-backdrop-sepia:var(--tw-empty,/*!*/ /*!*/);--tw-backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);border-color:rgb(229 231 235/var(--tw-border-opacity))}.aspect-w-4{--tw-aspect-w:4;padding-bottom:calc(var(--tw-aspect-h)/var(--tw-aspect-w)*100%);position:relative}.aspect-w-4>*{bottom:0;height:100%;left:0;position:absolute;right:0;top:0;width:100%}.aspect-h-2{--tw-aspect-h:2}.aspect-w-3{--tw-aspect-w:3;padding-bottom:calc(var(--tw-aspect-h)/var(--tw-aspect-w)*100%);position:relative}.aspect-w-3>*{bottom:0;height:100%;left:0;position:absolute;right:0;top:0;width:100%}.prose{color:rgb(var(--color-text-base));max-width:65ch}.prose :where([class~=lead]):not(:where([class~=not-prose] *)){color:var(--tw-prose-lead);font-size:1.25em;line-height:1.6;margin-bottom:1.2em;margin-top:1.2em}.prose a{color:rgb(var(--color-text-primary));font-weight:500;text-decoration:none}:where(.prose a:hover):not(:where([class~=not-prose] *)){color:rgb(var(--color-text-primary-hover))}.prose :where(strong):not(:where([class~=not-prose] *)){color:var(--tw-prose-bold);font-weight:600}.prose :where(ol):not(:where([class~=not-prose] *)){list-style-type:decimal;padding-left:1.625em}.prose :where(ol[type=A]):not(:where([class~=not-prose] *)){list-style-type:upper-alpha}.prose :where(ol[type=a]):not(:where([class~=not-prose] *)){list-style-type:lower-alpha}.prose :where(ol[type=A s]):not(:where([class~=not-prose] *)){list-style-type:upper-alpha}.prose :where(ol[type=a s]):not(:where([class~=not-prose] *)){list-style-type:lower-alpha}.prose :where(ol[type=I]):not(:where([class~=not-prose] *)){list-style-type:upper-roman}.prose :where(ol[type=i]):not(:where([class~=not-prose] *)){list-style-type:lower-roman}.prose :where(ol[type=I s]):not(:where([class~=not-prose] *)){list-style-type:upper-roman}.prose :where(ol[type=i s]):not(:where([class~=not-prose] *)){list-style-type:lower-roman}.prose :where(ol[type="1"]):not(:where([class~=not-prose] *)){list-style-type:decimal}.prose :where(ul):not(:where([class~=not-prose] *)){list-style-type:disc;padding-left:1.625em}.prose :where(ol>li):not(:where([class~=not-prose] *))::marker{color:var(--tw-prose-counters);font-weight:400}.prose :where(ul>li):not(:where([class~=not-prose] *))::marker{color:var(--tw-prose-bullets)}.prose :where(hr):not(:where([class~=not-prose] *)){border-color:rgb(var(--color-border));border-top-width:1px;margin-bottom:3em;margin-top:3em}.prose :where(blockquote):not(:where([class~=not-prose] *)){border-left-color:var(--tw-prose-quote-borders);border-left-width:.25rem;color:rgb(var(--color-text-inverted));font-style:italic;font-weight:500;margin-bottom:1.6em;margin-top:1.6em;padding-left:1em;quotes:"\201C""\201D""\2018""\2019"}.prose :where(blockquote p:first-of-type):not(:where([class~=not-prose] *)):before{content:open-quote}.prose :where(blockquote p:last-of-type):not(:where([class~=not-prose] *)):after{content:close-quote}.prose :where(h1):not(:where([class~=not-prose] *)){color:var(--tw-prose-headings);font-size:2.25em;font-weight:800;line-height:1.1111111;margin-bottom:.8888889em;margin-top:0}.prose :where(h1 strong):not(:where([class~=not-prose] *)){font-weight:900}.prose :where(h2):not(:where([class~=not-prose] *)){color:var(--tw-prose-headings);font-size:1.5em;font-weight:700;line-height:1.3333333;margin-bottom:1em;margin-top:2em}.prose :where(h2 strong):not(:where([class~=not-prose] *)){font-weight:800}.prose :where(h3):not(:where([class~=not-prose] *)){color:var(--tw-prose-headings);font-size:1.25em;font-weight:600;line-height:1.6;margin-bottom:.6em;margin-top:1.6em}.prose :where(h3 strong):not(:where([class~=not-prose] *)){font-weight:700}.prose :where(h4):not(:where([class~=not-prose] *)){color:var(--tw-prose-headings);font-weight:600;line-height:1.5;margin-bottom:.5em;margin-top:1.5em}.prose :where(h4 strong):not(:where([class~=not-prose] *)){font-weight:700}.prose :where(figure>*):not(:where([class~=not-prose] *)){margin-bottom:0;margin-top:0}.prose :where(figcaption):not(:where([class~=not-prose] *)){color:var(--tw-prose-captions);font-size:.875em;line-height:1.4285714;margin-top:.8571429em}.prose :where(code):not(:where([class~=not-prose] *)){color:var(--tw-prose-code);font-size:.875em;font-weight:600}.prose :where(code):not(:where([class~=not-prose] *)):before{content:"`"}.prose :where(code):not(:where([class~=not-prose] *)):after{content:"`"}.prose :where(a code):not(:where([class~=not-prose] *)){color:var(--tw-prose-links)}.prose :where(pre):not(:where([class~=not-prose] *)){background-color:var(--tw-prose-pre-bg);border-radius:.375rem;color:var(--tw-prose-pre-code);font-size:.875em;font-weight:400;line-height:1.7142857;margin-bottom:1.7142857em;margin-top:1.7142857em;overflow-x:auto;padding:.8571429em 1.1428571em}.prose :where(pre code):not(:where([class~=not-prose] *)){background-color:transparent;border-radius:0;border-width:0;color:inherit;font-family:inherit;font-size:inherit;font-weight:inherit;line-height:inherit;padding:0}.prose :where(pre code):not(:where([class~=not-prose] *)):before{content:none}.prose :where(pre code):not(:where([class~=not-prose] *)):after{content:none}.prose :where(table):not(:where([class~=not-prose] *)){font-size:.875em;line-height:1.7142857;margin-bottom:2em;margin-top:2em;table-layout:auto;text-align:left;width:100%}.prose :where(thead):not(:where([class~=not-prose] *)){border-bottom-color:var(--tw-prose-th-borders);border-bottom-width:1px}.prose :where(thead th):not(:where([class~=not-prose] *)){color:var(--tw-prose-headings);font-weight:600;padding-bottom:.5714286em;padding-left:.5714286em;padding-right:.5714286em;vertical-align:bottom}.prose :where(tbody tr):not(:where([class~=not-prose] *)){border-bottom-color:var(--tw-prose-td-borders);border-bottom-width:1px}.prose :where(tbody tr:last-child):not(:where([class~=not-prose] *)){border-bottom-width:0}.prose :where(tbody td):not(:where([class~=not-prose] *)){padding:.5714286em;vertical-align:baseline}.prose{--tw-prose-body:#374151;--tw-prose-headings:#111827;--tw-prose-lead:#4b5563;--tw-prose-links:#111827;--tw-prose-bold:#111827;--tw-prose-counters:#6b7280;--tw-prose-bullets:#d1d5db;--tw-prose-hr:#e5e7eb;--tw-prose-quotes:#111827;--tw-prose-quote-borders:#e5e7eb;--tw-prose-captions:#6b7280;--tw-prose-code:#111827;--tw-prose-pre-code:#e5e7eb;--tw-prose-pre-bg:#1f2937;--tw-prose-th-borders:#d1d5db;--tw-prose-td-borders:#e5e7eb;--tw-prose-invert-body:#d1d5db;--tw-prose-invert-headings:#fff;--tw-prose-invert-lead:#9ca3af;--tw-prose-invert-links:#fff;--tw-prose-invert-bold:#fff;--tw-prose-invert-counters:#9ca3af;--tw-prose-invert-bullets:#4b5563;--tw-prose-invert-hr:#374151;--tw-prose-invert-quotes:#f3f4f6;--tw-prose-invert-quote-borders:#374151;--tw-prose-invert-captions:#9ca3af;--tw-prose-invert-code:#fff;--tw-prose-invert-pre-code:#d1d5db;--tw-prose-invert-pre-bg:rgba(0,0,0,.5);--tw-prose-invert-th-borders:#4b5563;--tw-prose-invert-td-borders:#374151;font-size:1rem;line-height:1.75}.prose :where(p):not(:where([class~=not-prose] *)){font-weight:300;margin-bottom:1.25em;margin-top:1.25em}.prose :where(img):not(:where([class~=not-prose] *)){border-radius:.5rem;margin-bottom:2em;margin-top:2em}.prose :where(video):not(:where([class~=not-prose] *)){margin-bottom:2em;margin-top:2em}.prose :where(figure):not(:where([class~=not-prose] *)){margin-bottom:2em;margin-top:2em}.prose :where(h2 code):not(:where([class~=not-prose] *)){font-size:.875em}.prose :where(h3 code):not(:where([class~=not-prose] *)){font-size:.9em}.prose :where(li):not(:where([class~=not-prose] *)){margin-bottom:.5em;margin-top:.5em}.prose :where(ol>li):not(:where([class~=not-prose] *)){padding-left:.375em}.prose :where(ul>li):not(:where([class~=not-prose] *)){padding-left:.375em}.prose>:where(ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.75em;margin-top:.75em}.prose>:where(ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.25em}.prose>:where(ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.25em}.prose>:where(ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.25em}.prose>:where(ol>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.25em}.prose :where(ul ul,ul ol,ol ul,ol ol):not(:where([class~=not-prose] *)){margin-bottom:.75em;margin-top:.75em}.prose :where(hr+*):not(:where([class~=not-prose] *)){margin-top:0}.prose :where(h2+*):not(:where([class~=not-prose] *)){margin-top:0}.prose :where(h3+*):not(:where([class~=not-prose] *)){margin-top:0}.prose :where(h4+*):not(:where([class~=not-prose] *)){margin-top:0}.prose :where(thead th:first-child):not(:where([class~=not-prose] *)){padding-left:0}.prose :where(thead th:last-child):not(:where([class~=not-prose] *)){padding-right:0}.prose :where(tbody td:first-child):not(:where([class~=not-prose] *)){padding-left:0}.prose :where(tbody td:last-child):not(:where([class~=not-prose] *)){padding-right:0}.prose>:where(:first-child):not(:where([class~=not-prose] *)){margin-top:0}.prose>:where(:last-child):not(:where([class~=not-prose] *)){margin-bottom:0}.prose :where(h1,h2,h3,h4):not(:where([class~=not-prose] *)){color:rgb(var(--color-text-inverted));font-family:Inter var,serif}.prose :where(li strong,strong):not(:where([class~=not-prose] *)){color:rgb(var(--color-text-inverted-muted));font-weight:400}.prose :where(p>code,code):not(:where([class~=not-prose] *)){align-items:center;background-color:#d1fae5;border-radius:.375rem;color:#065f46;display:inline-flex;font-family:Operator Mono,monospace;font-size:1rem;font-weight:400;line-height:1.25rem;padding:.125rem .625rem}.prose-sm{font-size:.875rem;line-height:1.7142857}.prose-sm :where(p):not(:where([class~=not-prose] *)){margin-bottom:1.1428571em;margin-top:1.1428571em}.prose-sm :where([class~=lead]):not(:where([class~=not-prose] *)){font-size:1.2857143em;line-height:1.5555556;margin-bottom:.8888889em;margin-top:.8888889em}.prose-sm :where(blockquote):not(:where([class~=not-prose] *)){margin-bottom:1.3333333em;margin-top:1.3333333em;padding-left:1.1111111em}.prose-sm :where(h1):not(:where([class~=not-prose] *)){font-size:2.1428571em;line-height:1.2;margin-bottom:.8em;margin-top:0}.prose-sm :where(h2):not(:where([class~=not-prose] *)){font-size:1.4285714em;line-height:1.4;margin-bottom:.8em;margin-top:1.6em}.prose-sm :where(h3):not(:where([class~=not-prose] *)){font-size:1.2857143em;line-height:1.5555556;margin-bottom:.4444444em;margin-top:1.5555556em}.prose-sm :where(h4):not(:where([class~=not-prose] *)){line-height:1.4285714;margin-bottom:.5714286em;margin-top:1.4285714em}.prose-sm :where(img):not(:where([class~=not-prose] *)){margin-bottom:1.7142857em;margin-top:1.7142857em}.prose-sm :where(video):not(:where([class~=not-prose] *)){margin-bottom:1.7142857em;margin-top:1.7142857em}.prose-sm :where(figure):not(:where([class~=not-prose] *)){margin-bottom:1.7142857em;margin-top:1.7142857em}.prose-sm :where(figure>*):not(:where([class~=not-prose] *)){margin-bottom:0;margin-top:0}.prose-sm :where(figcaption):not(:where([class~=not-prose] *)){font-size:.8571429em;line-height:1.3333333;margin-top:.6666667em}.prose-sm :where(code):not(:where([class~=not-prose] *)){font-size:.8571429em}.prose-sm :where(h2 code):not(:where([class~=not-prose] *)){font-size:.9em}.prose-sm :where(h3 code):not(:where([class~=not-prose] *)){font-size:.8888889em}.prose-sm :where(pre):not(:where([class~=not-prose] *)){border-radius:.25rem;font-size:.8571429em;line-height:1.6666667;margin-bottom:1.6666667em;margin-top:1.6666667em;padding:.6666667em 1em}.prose-sm :where(ol):not(:where([class~=not-prose] *)){padding-left:1.5714286em}.prose-sm :where(ul):not(:where([class~=not-prose] *)){padding-left:1.5714286em}.prose-sm :where(li):not(:where([class~=not-prose] *)){margin-bottom:.2857143em;margin-top:.2857143em}.prose-sm :where(ol>li):not(:where([class~=not-prose] *)){padding-left:.4285714em}.prose-sm :where(ul>li):not(:where([class~=not-prose] *)){padding-left:.4285714em}.prose-sm>:where(ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.5714286em;margin-top:.5714286em}.prose-sm>:where(ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.1428571em}.prose-sm>:where(ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.1428571em}.prose-sm>:where(ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.1428571em}.prose-sm>:where(ol>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.1428571em}.prose-sm :where(ul ul,ul ol,ol ul,ol ol):not(:where([class~=not-prose] *)){margin-bottom:.5714286em;margin-top:.5714286em}.prose-sm :where(hr):not(:where([class~=not-prose] *)){margin-bottom:2.8571429em;margin-top:2.8571429em}.prose-sm :where(hr+*):not(:where([class~=not-prose] *)){margin-top:0}.prose-sm :where(h2+*):not(:where([class~=not-prose] *)){margin-top:0}.prose-sm :where(h3+*):not(:where([class~=not-prose] *)){margin-top:0}.prose-sm :where(h4+*):not(:where([class~=not-prose] *)){margin-top:0}.prose-sm :where(table):not(:where([class~=not-prose] *)){font-size:.8571429em;line-height:1.5}.prose-sm :where(thead th):not(:where([class~=not-prose] *)){padding-bottom:.6666667em;padding-left:1em;padding-right:1em}.prose-sm :where(thead th:first-child):not(:where([class~=not-prose] *)){padding-left:0}.prose-sm :where(thead th:last-child):not(:where([class~=not-prose] *)){padding-right:0}.prose-sm :where(tbody td):not(:where([class~=not-prose] *)){padding:.6666667em 1em}.prose-sm :where(tbody td:first-child):not(:where([class~=not-prose] *)){padding-left:0}.prose-sm :where(tbody td:last-child):not(:where([class~=not-prose] *)){padding-right:0}.prose-sm>:where(:first-child):not(:where([class~=not-prose] *)){margin-top:0}.prose-sm>:where(:last-child):not(:where([class~=not-prose] *)){margin-bottom:0}.prose-base{font-size:1rem;line-height:1.75}.prose-base :where(p):not(:where([class~=not-prose] *)){margin-bottom:1.25em;margin-top:1.25em}.prose-base :where([class~=lead]):not(:where([class~=not-prose] *)){font-size:1.25em;line-height:1.6;margin-bottom:1.2em;margin-top:1.2em}.prose-base :where(blockquote):not(:where([class~=not-prose] *)){margin-bottom:1.6em;margin-top:1.6em;padding-left:1em}.prose-base :where(h1):not(:where([class~=not-prose] *)){font-size:2.25em;line-height:1.1111111;margin-bottom:.8888889em;margin-top:0}.prose-base :where(h2):not(:where([class~=not-prose] *)){font-size:1.5em;line-height:1.3333333;margin-bottom:1em;margin-top:2em}.prose-base :where(h3):not(:where([class~=not-prose] *)){font-size:1.25em;line-height:1.6;margin-bottom:.6em;margin-top:1.6em}.prose-base :where(h4):not(:where([class~=not-prose] *)){line-height:1.5;margin-bottom:.5em;margin-top:1.5em}.prose-base :where(img):not(:where([class~=not-prose] *)){margin-bottom:2em;margin-top:2em}.prose-base :where(video):not(:where([class~=not-prose] *)){margin-bottom:2em;margin-top:2em}.prose-base :where(figure):not(:where([class~=not-prose] *)){margin-bottom:2em;margin-top:2em}.prose-base :where(figure>*):not(:where([class~=not-prose] *)){margin-bottom:0;margin-top:0}.prose-base :where(figcaption):not(:where([class~=not-prose] *)){font-size:.875em;line-height:1.4285714;margin-top:.8571429em}.prose-base :where(code):not(:where([class~=not-prose] *)){font-size:.875em}.prose-base :where(h2 code):not(:where([class~=not-prose] *)){font-size:.875em}.prose-base :where(h3 code):not(:where([class~=not-prose] *)){font-size:.9em}.prose-base :where(pre):not(:where([class~=not-prose] *)){border-radius:.375rem;font-size:.875em;line-height:1.7142857;margin-bottom:1.7142857em;margin-top:1.7142857em;padding:.8571429em 1.1428571em}.prose-base :where(ol):not(:where([class~=not-prose] *)){padding-left:1.625em}.prose-base :where(ul):not(:where([class~=not-prose] *)){padding-left:1.625em}.prose-base :where(li):not(:where([class~=not-prose] *)){margin-bottom:.5em;margin-top:.5em}.prose-base :where(ol>li):not(:where([class~=not-prose] *)){padding-left:.375em}.prose-base :where(ul>li):not(:where([class~=not-prose] *)){padding-left:.375em}.prose-base>:where(ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.75em;margin-top:.75em}.prose-base>:where(ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.25em}.prose-base>:where(ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.25em}.prose-base>:where(ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.25em}.prose-base>:where(ol>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.25em}.prose-base :where(ul ul,ul ol,ol ul,ol ol):not(:where([class~=not-prose] *)){margin-bottom:.75em;margin-top:.75em}.prose-base :where(hr):not(:where([class~=not-prose] *)){margin-bottom:3em;margin-top:3em}.prose-base :where(hr+*):not(:where([class~=not-prose] *)){margin-top:0}.prose-base :where(h2+*):not(:where([class~=not-prose] *)){margin-top:0}.prose-base :where(h3+*):not(:where([class~=not-prose] *)){margin-top:0}.prose-base :where(h4+*):not(:where([class~=not-prose] *)){margin-top:0}.prose-base :where(table):not(:where([class~=not-prose] *)){font-size:.875em;line-height:1.7142857}.prose-base :where(thead th):not(:where([class~=not-prose] *)){padding-bottom:.5714286em;padding-left:.5714286em;padding-right:.5714286em}.prose-base :where(thead th:first-child):not(:where([class~=not-prose] *)){padding-left:0}.prose-base :where(thead th:last-child):not(:where([class~=not-prose] *)){padding-right:0}.prose-base :where(tbody td):not(:where([class~=not-prose] *)){padding:.5714286em}.prose-base :where(tbody td:first-child):not(:where([class~=not-prose] *)){padding-left:0}.prose-base :where(tbody td:last-child):not(:where([class~=not-prose] *)){padding-right:0}.prose-base>:where(:first-child):not(:where([class~=not-prose] *)){margin-top:0}.prose-base>:where(:last-child):not(:where([class~=not-prose] *)){margin-bottom:0}.prose-lg{font-size:1.125rem;line-height:1.7777778}.prose-lg :where(p):not(:where([class~=not-prose] *)){margin-bottom:1.3333333em;margin-top:1.3333333em}.prose-lg :where([class~=lead]):not(:where([class~=not-prose] *)){font-size:1.2222222em;line-height:1.4545455;margin-bottom:1.0909091em;margin-top:1.0909091em}.prose-lg :where(blockquote):not(:where([class~=not-prose] *)){margin-bottom:1.6666667em;margin-top:1.6666667em;padding-left:1em}.prose-lg :where(h1):not(:where([class~=not-prose] *)){font-size:2.6666667em;line-height:1;margin-bottom:.8333333em;margin-top:0}.prose-lg :where(h2):not(:where([class~=not-prose] *)){font-size:1.6666667em;line-height:1.3333333;margin-bottom:1.0666667em;margin-top:1.8666667em}.prose-lg :where(h3):not(:where([class~=not-prose] *)){font-size:1.3333333em;line-height:1.5;margin-bottom:.6666667em;margin-top:1.6666667em}.prose-lg :where(h4):not(:where([class~=not-prose] *)){line-height:1.5555556;margin-bottom:.4444444em;margin-top:1.7777778em}.prose-lg :where(img):not(:where([class~=not-prose] *)){margin-bottom:1.7777778em;margin-top:1.7777778em}.prose-lg :where(video):not(:where([class~=not-prose] *)){margin-bottom:1.7777778em;margin-top:1.7777778em}.prose-lg :where(figure):not(:where([class~=not-prose] *)){margin-bottom:1.7777778em;margin-top:1.7777778em}.prose-lg :where(figure>*):not(:where([class~=not-prose] *)){margin-bottom:0;margin-top:0}.prose-lg :where(figcaption):not(:where([class~=not-prose] *)){font-size:.8888889em;line-height:1.5;margin-top:1em}.prose-lg :where(code):not(:where([class~=not-prose] *)){font-size:.8888889em}.prose-lg :where(h2 code):not(:where([class~=not-prose] *)){font-size:.8666667em}.prose-lg :where(h3 code):not(:where([class~=not-prose] *)){font-size:.875em}.prose-lg :where(pre):not(:where([class~=not-prose] *)){border-radius:.375rem;font-size:.8888889em;line-height:1.75;margin-bottom:2em;margin-top:2em;padding:1em 1.5em}.prose-lg :where(ol):not(:where([class~=not-prose] *)){padding-left:1.5555556em}.prose-lg :where(ul):not(:where([class~=not-prose] *)){padding-left:1.5555556em}.prose-lg :where(li):not(:where([class~=not-prose] *)){margin-bottom:.6666667em;margin-top:.6666667em}.prose-lg :where(ol>li):not(:where([class~=not-prose] *)){padding-left:.4444444em}.prose-lg :where(ul>li):not(:where([class~=not-prose] *)){padding-left:.4444444em}.prose-lg>:where(ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.8888889em;margin-top:.8888889em}.prose-lg>:where(ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.3333333em}.prose-lg>:where(ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.3333333em}.prose-lg>:where(ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.3333333em}.prose-lg>:where(ol>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.3333333em}.prose-lg :where(ul ul,ul ol,ol ul,ol ol):not(:where([class~=not-prose] *)){margin-bottom:.8888889em;margin-top:.8888889em}.prose-lg :where(hr):not(:where([class~=not-prose] *)){margin-bottom:3.1111111em;margin-top:3.1111111em}.prose-lg :where(hr+*):not(:where([class~=not-prose] *)){margin-top:0}.prose-lg :where(h2+*):not(:where([class~=not-prose] *)){margin-top:0}.prose-lg :where(h3+*):not(:where([class~=not-prose] *)){margin-top:0}.prose-lg :where(h4+*):not(:where([class~=not-prose] *)){margin-top:0}.prose-lg :where(table):not(:where([class~=not-prose] *)){font-size:.8888889em;line-height:1.5}.prose-lg :where(thead th):not(:where([class~=not-prose] *)){padding-bottom:.75em;padding-left:.75em;padding-right:.75em}.prose-lg :where(thead th:first-child):not(:where([class~=not-prose] *)){padding-left:0}.prose-lg :where(thead th:last-child):not(:where([class~=not-prose] *)){padding-right:0}.prose-lg :where(tbody td):not(:where([class~=not-prose] *)){padding:.75em}.prose-lg :where(tbody td:first-child):not(:where([class~=not-prose] *)){padding-left:0}.prose-lg :where(tbody td:last-child):not(:where([class~=not-prose] *)){padding-right:0}.prose-lg>:where(:first-child):not(:where([class~=not-prose] *)){margin-top:0}.prose-lg>:where(:last-child):not(:where([class~=not-prose] *)){margin-bottom:0}.prose-green{--tw-prose-links:#16a34a;--tw-prose-invert-links:#22c55e}.sr-only{clip:rect(0,0,0,0);border-width:0;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.pointer-events-none{pointer-events:none}.pointer-events-auto{pointer-events:auto}.fixed{position:fixed}.absolute{position:absolute}.relative{position:relative}.sticky{position:-webkit-sticky;position:sticky}.inset-0{bottom:0;left:0;right:0;top:0}.-inset-px{bottom:-1px;left:-1px;right:-1px;top:-1px}.inset-x-0{left:0;right:0}.inset-y-0{bottom:0;top:0}.bottom-0{bottom:0}.top-0{top:0}.top-4{top:1rem}.right-0{right:0}.top-40{top:10rem}.left-0{left:0}.-top-8{top:-2rem}.top-\[-75px\]{top:-75px}.top-\[-50px\]{top:-50px}.top-5{top:1.25rem}.-right-1{right:-.25rem}.left-1{left:.25rem}.-bottom-0\.5{bottom:-.125rem}.-bottom-0{bottom:0}.left-5{left:1.25rem}.-top-3{top:-.75rem}.right-3{right:.75rem}.right-5{right:1.25rem}.right-2{right:.5rem}.-top-2{top:-.5rem}.top-2{top:.5rem}.z-0{z-index:0}.z-30{z-index:30}.z-50{z-index:50}.z-10{z-index:10}.z-40{z-index:40}.z-20{z-index:20}.order-2{order:2}.order-1{order:1}.col-span-1{grid-column:span 1/span 1}.-m-3{margin:-.75rem}.-m-2{margin:-.5rem}.my-10{margin-bottom:2.5rem;margin-top:2.5rem}.-mx-2{margin-left:-.5rem;margin-right:-.5rem}.mx-auto{margin-left:auto;margin-right:auto}.mx-1\.5{margin-left:.375rem;margin-right:.375rem}.mx-1{margin-left:.25rem;margin-right:.25rem}.-my-5{margin-bottom:-1.25rem;margin-top:-1.25rem}.mx-2{margin-left:.5rem;margin-right:.5rem}.my-8{margin-bottom:2rem;margin-top:2rem}.mx-3{margin-left:.75rem;margin-right:.75rem}.mx-0{margin-left:0;margin-right:0}.my-auto{margin-bottom:auto;margin-top:auto}.my-2{margin-bottom:.5rem;margin-top:.5rem}.mt-1{margin-top:.25rem}.mt-8{margin-top:2rem}.mt-2{margin-top:.5rem}.mt-5{margin-top:1.25rem}.mt-12{margin-top:3rem}.mb-14{margin-bottom:3.5rem}.-mt-4{margin-top:-1rem}.mt-4{margin-top:1rem}.mb-2{margin-bottom:.5rem}.ml-4{margin-left:1rem}.ml-2{margin-left:.5rem}.mt-3{margin-top:.75rem}.mt-10{margin-top:2.5rem}.ml-1\.5{margin-left:.375rem}.ml-1{margin-left:.25rem}.mr-1\.5{margin-right:.375rem}.mr-1{margin-right:.25rem}.mt-6{margin-top:1.5rem}.ml-12{margin-left:3rem}.ml-3{margin-left:.75rem}.-mr-1{margin-right:-.25rem}.mt-16{margin-top:4rem}.mb-5{margin-bottom:1.25rem}.ml-9{margin-left:2.25rem}.mb-4{margin-bottom:1rem}.-ml-1{margin-left:-.25rem}.mr-3{margin-right:.75rem}.mb-1\.5{margin-bottom:.375rem}.mb-1{margin-bottom:.25rem}.ml-2\.5{margin-left:.625rem}.-ml-px{margin-left:-1px}.mt-0\.5{margin-top:.125rem}.mt-0{margin-top:0}.ml-8{margin-left:2rem}.mr-2{margin-right:.5rem}.mt-1\.5{margin-top:.375rem}.-ml-4{margin-left:-1rem}.ml-auto{margin-left:auto}.-mt-2{margin-top:-.5rem}.ml-3\.5{margin-left:.875rem}.-ml-9{margin-left:-2.25rem}.mb-3{margin-bottom:.75rem}.-mb-2{margin-bottom:-.5rem}.mb-6{margin-bottom:1.5rem}.mb-8{margin-bottom:2rem}.-mt-12{margin-top:-3rem}.-mb-px{margin-bottom:-1px}.ml-6{margin-left:1.5rem}.-mt-3{margin-top:-.75rem}.-mb-8{margin-bottom:-2rem}.-mt-6{margin-top:-1.5rem}.-ml-0\.5{margin-left:-.125rem}.-ml-0{margin-left:0}.mr-0{margin-right:0}.ml-5{margin-left:1.25rem}.mr-4{margin-right:1rem}.block{display:block}.inline-block{display:inline-block}.inline{display:inline}.flex{display:flex}.inline-flex{display:inline-flex}.flow-root{display:flow-root}.grid{display:grid}.hidden{display:none}.h-16{height:4rem}.h-5{height:1.25rem}.h-8{height:2rem}.h-12{height:3rem}.h-6{height:1.5rem}.h-80{height:20rem}.h-full{height:100%}.h-32{height:8rem}.h-14{height:3.5rem}.h-10{height:2.5rem}.h-9{height:2.25rem}.h-3\.5{height:.875rem}.h-3{height:.75rem}.h-\[450px\]{height:450px}.h-7{height:1.75rem}.h-4{height:1rem}.h-\[120px\]{height:120px}.h-2{height:.5rem}.h-auto{height:auto}.h-64{height:16rem}.h-24{height:6rem}.h-0\.5{height:.125rem}.h-0{height:0}.h-56{height:14rem}.h-\[350px\]{height:350px}.h-\[250px\]{height:250px}.h-52{height:13rem}.h-screen{height:100vh}.max-h-96{max-height:24rem}.max-h-60{max-height:15rem}.min-h-full{min-height:100%}.min-h-screen{min-height:100vh}.min-h-\[250px\]{min-height:250px}.w-5{width:1.25rem}.w-full{width:100%}.w-1\/2{width:50%}.w-1\/3{width:33.333333%}.w-6{width:1.5rem}.w-14{width:3.5rem}.w-auto{width:auto}.w-8{width:2rem}.w-9{width:2.25rem}.w-10{width:2.5rem}.w-3\.5{width:.875rem}.w-3{width:.75rem}.w-screen{width:100vw}.w-4{width:1rem}.w-0{width:0}.w-3\/4{width:75%}.w-5\/6{width:83.333333%}.w-2{width:.5rem}.w-12{width:3rem}.w-0\.5{width:.125rem}.w-56{width:14rem}.w-60{width:15rem}.w-40{width:10rem}.w-7{width:1.75rem}.w-24{width:6rem}.w-11{width:2.75rem}.min-w-0{min-width:0}.max-w-7xl{max-width:80rem}.max-w-xl{max-width:36rem}.max-w-4xl{max-width:56rem}.max-w-3xl{max-width:48rem}.max-w-full{max-width:100%}.max-w-xs{max-width:20rem}.max-w-md{max-width:28rem}.max-w-sm{max-width:24rem}.max-w-2xl{max-width:42rem}.max-w-none{max-width:none}.max-w-lg{max-width:32rem}.flex-none{flex:none}.flex-1{flex:1 1 0%}.shrink-0{flex-shrink:0}.flex-grow{flex-grow:1}.origin-top{transform-origin:top}.origin-top-right{transform-origin:top right}.translate-x-full{--tw-translate-x:100%;transform:var(--tw-transform)}.translate-x-0{--tw-translate-x:0px;transform:var(--tw-transform)}.translate-y-2{--tw-translate-y:0.5rem;transform:var(--tw-transform)}.translate-y-0{--tw-translate-y:0px;transform:var(--tw-transform)}.translate-y-1{--tw-translate-y:0.25rem;transform:var(--tw-transform)}.translate-y-7{--tw-translate-y:1.75rem;transform:var(--tw-transform)}.translate-y-9{--tw-translate-y:2.25rem;transform:var(--tw-transform)}.translate-x-5{--tw-translate-x:1.25rem;transform:var(--tw-transform)}.translate-y-4{--tw-translate-y:1rem;transform:var(--tw-transform)}.-translate-y-12{--tw-translate-y:-3rem}.-translate-y-12,.rotate-45{transform:var(--tw-transform)}.rotate-45{--tw-rotate:45deg}.rotate-90{--tw-rotate:90deg}.rotate-0,.rotate-90{transform:var(--tw-transform)}.rotate-0{--tw-rotate:0deg}.scale-95{--tw-scale-x:.95;--tw-scale-y:.95}.scale-95,.scale-100{transform:var(--tw-transform)}.scale-100{--tw-scale-x:1;--tw-scale-y:1}.transform{transform:var(--tw-transform)}@-webkit-keyframes spin{to{transform:rotate(1turn)}}@keyframes spin{to{transform:rotate(1turn)}}.animate-spin{-webkit-animation:spin 1s linear infinite;animation:spin 1s linear infinite}@-webkit-keyframes pulse{50%{opacity:.5}}@keyframes pulse{50%{opacity:.5}}.animate-pulse{-webkit-animation:pulse 2s cubic-bezier(.4,0,.6,1) infinite;animation:pulse 2s cubic-bezier(.4,0,.6,1) infinite}.cursor-pointer{cursor:pointer}.cursor-text{cursor:text}.cursor-default{cursor:default}.cursor-not-allowed{cursor:not-allowed}.select-none{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.resize-none{resize:none}.list-disc{list-style-type:disc}.appearance-none{-webkit-appearance:none;-moz-appearance:none;appearance:none}.grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}.grid-cols-7{grid-template-columns:repeat(7,minmax(0,1fr))}.flex-col{flex-direction:column}.flex-col-reverse{flex-direction:column-reverse}.flex-wrap{flex-wrap:wrap}.items-start{align-items:flex-start}.items-end{align-items:flex-end}.items-center{align-items:center}.justify-end{justify-content:flex-end}.justify-center{justify-content:center}.justify-between{justify-content:space-between}.gap-10{gap:2.5rem}.gap-2{gap:.5rem}.gap-6{gap:1.5rem}.gap-8{gap:2rem}.gap-1{gap:.25rem}.gap-5{gap:1.25rem}.gap-3{gap:.75rem}.gap-y-12{row-gap:3rem}.gap-x-6{-moz-column-gap:1.5rem;column-gap:1.5rem}.gap-x-2{-moz-column-gap:.5rem;column-gap:.5rem}.gap-x-12{-moz-column-gap:3rem;column-gap:3rem}.gap-y-4{row-gap:1rem}.gap-x-5{-moz-column-gap:1.25rem;column-gap:1.25rem}.gap-x-3{-moz-column-gap:.75rem;column-gap:.75rem}.gap-x-4{-moz-column-gap:1rem;column-gap:1rem}.gap-y-6{row-gap:1.5rem}.gap-x-8{-moz-column-gap:2rem;column-gap:2rem}.gap-y-2{row-gap:.5rem}.space-y-12>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(3rem*var(--tw-space-y-reverse));margin-top:calc(3rem*(1 - var(--tw-space-y-reverse)))}.space-y-4>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(1rem*var(--tw-space-y-reverse));margin-top:calc(1rem*(1 - var(--tw-space-y-reverse)))}.space-y-1>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(.25rem*var(--tw-space-y-reverse));margin-top:calc(.25rem*(1 - var(--tw-space-y-reverse)))}.space-x-5>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(1.25rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(1.25rem*var(--tw-space-x-reverse))}.space-y-5>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(1.25rem*var(--tw-space-y-reverse));margin-top:calc(1.25rem*(1 - var(--tw-space-y-reverse)))}.space-x-1\.5>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(.375rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(.375rem*var(--tw-space-x-reverse))}.space-x-1>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(.25rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(.25rem*var(--tw-space-x-reverse))}.space-y-6>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(1.5rem*var(--tw-space-y-reverse));margin-top:calc(1.5rem*(1 - var(--tw-space-y-reverse)))}.space-x-4>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(1rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(1rem*var(--tw-space-x-reverse))}.space-x-3>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(.75rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(.75rem*var(--tw-space-x-reverse))}.space-x-2>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(.5rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(.5rem*var(--tw-space-x-reverse))}.-space-x-px>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(-1px*(1 - var(--tw-space-x-reverse)));margin-right:calc(-1px*var(--tw-space-x-reverse))}.space-y-8>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(2rem*var(--tw-space-y-reverse));margin-top:calc(2rem*(1 - var(--tw-space-y-reverse)))}.space-y-10>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(2.5rem*var(--tw-space-y-reverse));margin-top:calc(2.5rem*(1 - var(--tw-space-y-reverse)))}.space-y-3>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(.75rem*var(--tw-space-y-reverse));margin-top:calc(.75rem*(1 - var(--tw-space-y-reverse)))}.-space-x-2>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(-.5rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(-.5rem*var(--tw-space-x-reverse))}.space-y-2>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(.5rem*var(--tw-space-y-reverse));margin-top:calc(.5rem*(1 - var(--tw-space-y-reverse)))}.space-y-16>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(4rem*var(--tw-space-y-reverse));margin-top:calc(4rem*(1 - var(--tw-space-y-reverse)))}.space-x-6>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(1.5rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(1.5rem*var(--tw-space-x-reverse))}.space-x-8>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(2rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(2rem*var(--tw-space-x-reverse))}.divide-y>:not([hidden])~:not([hidden]){--tw-divide-y-reverse:0;border-bottom-width:calc(1px*var(--tw-divide-y-reverse));border-top-width:calc(1px*(1 - var(--tw-divide-y-reverse)))}.divide-x>:not([hidden])~:not([hidden]){--tw-divide-x-reverse:0;border-left-width:calc(1px*(1 - var(--tw-divide-x-reverse)));border-right-width:calc(1px*var(--tw-divide-x-reverse))}.divide-skin-base>:not([hidden])~:not([hidden]){--tw-divide-opacity:1;border-color:rgba(var(--color-divide),var(--tw-divide-opacity))}.divide-skin-light>:not([hidden])~:not([hidden]){--tw-divide-opacity:1;border-color:rgba(var(--color-divide-light),var(--tw-divide-opacity))}.self-start{align-self:flex-start}.self-center{align-self:center}.overflow-hidden{overflow:hidden}.overflow-scroll{overflow:scroll}.overflow-x-auto{overflow-x:auto}.overflow-y-auto{overflow-y:auto}.overflow-x-hidden{overflow-x:hidden}.overflow-y-scroll{overflow-y:scroll}.scroll-smooth{scroll-behavior:smooth}.truncate{overflow:hidden;text-overflow:ellipsis}.truncate,.whitespace-nowrap{white-space:nowrap}.whitespace-pre-wrap{white-space:pre-wrap}.break-words{word-wrap:break-word}.rounded-lg{border-radius:.5rem}.rounded-full{border-radius:9999px}.rounded-md{border-radius:.375rem}.rounded{border-radius:.25rem}.rounded-sm{border-radius:.125rem}.rounded-xl{border-radius:.75rem}.rounded-none{border-radius:0}.rounded-l-md{border-bottom-left-radius:.375rem;border-top-left-radius:.375rem}.rounded-r-md{border-bottom-right-radius:.375rem;border-top-right-radius:.375rem}.rounded-l-lg{border-bottom-left-radius:.5rem;border-top-left-radius:.5rem}.rounded-r-lg{border-top-right-radius:.5rem}.rounded-b-lg,.rounded-r-lg{border-bottom-right-radius:.5rem}.rounded-b-lg{border-bottom-left-radius:.5rem}.rounded-t-none{border-top-left-radius:0;border-top-right-radius:0}.rounded-t-md{border-top-left-radius:.375rem;border-top-right-radius:.375rem}.rounded-tl{border-top-left-radius:.25rem}.rounded-tl-sm{border-top-left-radius:.125rem}.rounded-tr-lg{border-top-right-radius:.5rem}.rounded-br-lg{border-bottom-right-radius:.5rem}.border{border-width:1px}.border-0{border-width:0}.border-2{border-width:2px}.border-t{border-top-width:1px}.border-b{border-bottom-width:1px}.border-l-4{border-left-width:4px}.border-l{border-left-width:1px}.border-r-0{border-right-width:0}.border-b-2{border-bottom-width:2px}.border-dashed{border-style:dashed}.border-none{border-style:none}.border-skin-base{--tw-border-opacity:1;border-color:rgba(var(--color-border),var(--tw-border-opacity))}.border-skin-input{--tw-border-opacity:1;border-color:rgba(var(--color-input-border),var(--tw-border-opacity))}.border-transparent{border-color:transparent}.border-green-500{--tw-border-opacity:1;border-color:rgb(16 185 129/var(--tw-border-opacity))}.border-gray-300{--tw-border-opacity:1;border-color:rgb(209 213 219/var(--tw-border-opacity))}.border-gray-800{--tw-border-opacity:1;border-color:rgb(31 41 55/var(--tw-border-opacity))}.border-secondary-200{--tw-border-opacity:1;border-color:rgb(229 231 235/var(--tw-border-opacity))}.border-primary-600{--tw-border-opacity:1;border-color:rgb(5 150 105/var(--tw-border-opacity))}.border-negative-200{--tw-border-opacity:1;border-color:rgb(254 202 202/var(--tw-border-opacity))}.border-red-300{--tw-border-opacity:1;border-color:rgb(252 165 165/var(--tw-border-opacity))}.bg-green-50{--tw-bg-opacity:1;background-color:rgb(236 253 245/var(--tw-bg-opacity))}.bg-skin-card{--tw-bg-opacity:1;background-color:rgba(var(--color-card-fill),var(--tw-bg-opacity))}.bg-green-700{--tw-bg-opacity:1;background-color:rgb(4 120 87/var(--tw-bg-opacity))}.bg-flag-green{--tw-bg-opacity:1;background-color:rgb(9 145 112/var(--tw-bg-opacity))}.bg-black{--tw-bg-opacity:1;background-color:rgb(22 27 34/var(--tw-bg-opacity))}.bg-skin-button{--tw-bg-opacity:1;background-color:rgba(var(--color-button-default),var(--tw-bg-opacity))}.bg-skin-input{--tw-bg-opacity:1;background-color:rgba(var(--color-input-fill),var(--tw-bg-opacity))}.bg-green-600{--tw-bg-opacity:1;background-color:rgb(5 150 105/var(--tw-bg-opacity))}.bg-red-50{--tw-bg-opacity:1;background-color:rgb(254 242 242/var(--tw-bg-opacity))}.bg-blue-50{--tw-bg-opacity:1;background-color:rgb(239 246 255/var(--tw-bg-opacity))}.bg-green-100{--tw-bg-opacity:1;background-color:rgb(209 250 229/var(--tw-bg-opacity))}.bg-skin-card-muted{--tw-bg-opacity:1;background-color:rgba(var(--color-card-muted-fill),var(--tw-bg-opacity))}.bg-skin-card-gray{--tw-bg-opacity:1;background-color:rgba(var(--color-card-gray),var(--tw-bg-opacity))}.bg-skin-body{--tw-bg-opacity:1;background-color:rgba(var(--color-body-fill),var(--tw-bg-opacity))}.bg-blue-100{--tw-bg-opacity:1;background-color:rgb(219 234 254/var(--tw-bg-opacity))}.bg-skin-menu{--tw-bg-opacity:1;background-color:rgba(var(--color-menu-fill),var(--tw-bg-opacity))}.bg-green-500{--tw-bg-opacity:1;background-color:rgb(16 185 129/var(--tw-bg-opacity))}.bg-white{--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity))}.bg-skin-footer{--tw-bg-opacity:1;background-color:rgba(var(--color-footer-fill),var(--tw-bg-opacity))}.bg-red-100{--tw-bg-opacity:1;background-color:rgb(254 226 226/var(--tw-bg-opacity))}.bg-red-400{--tw-bg-opacity:1;background-color:rgb(248 113 113/var(--tw-bg-opacity))}.bg-skin-primary{--tw-bg-opacity:1;background-color:rgba(var(--color-text-primary),var(--tw-bg-opacity))}.bg-flag-red{--tw-bg-opacity:1;background-color:rgb(226 27 48/var(--tw-bg-opacity))}.bg-yellow-500{--tw-bg-opacity:1;background-color:rgb(234 179 8/var(--tw-bg-opacity))}.bg-blue-500{--tw-bg-opacity:1;background-color:rgb(59 130 246/var(--tw-bg-opacity))}.bg-yellow-100{--tw-bg-opacity:1;background-color:rgb(254 249 195/var(--tw-bg-opacity))}.bg-skin-link{--tw-bg-opacity:1;background-color:rgba(var(--color-link-fill),var(--tw-bg-opacity))}.bg-transparent{background-color:transparent}.bg-gray-700{--tw-bg-opacity:1;background-color:rgb(55 65 81/var(--tw-bg-opacity))}.bg-yellow-50{--tw-bg-opacity:1;background-color:rgb(254 252 232/var(--tw-bg-opacity))}.bg-red-500{--tw-bg-opacity:1;background-color:rgb(239 68 68/var(--tw-bg-opacity))}.bg-gray-500{--tw-bg-opacity:1;background-color:rgb(107 114 128/var(--tw-bg-opacity))}.bg-gray-900{--tw-bg-opacity:1;background-color:rgb(17 24 39/var(--tw-bg-opacity))}.bg-gray-100{--tw-bg-opacity:1;background-color:rgb(243 244 246/var(--tw-bg-opacity))}.bg-secondary-50{--tw-bg-opacity:1;background-color:rgb(249 250 251/var(--tw-bg-opacity))}.bg-secondary-400{--tw-bg-opacity:1;background-color:rgb(156 163 175/var(--tw-bg-opacity))}.bg-secondary-100{--tw-bg-opacity:1;background-color:rgb(243 244 246/var(--tw-bg-opacity))}.bg-primary-600{--tw-bg-opacity:1;background-color:rgb(5 150 105/var(--tw-bg-opacity))}.bg-negative-50{--tw-bg-opacity:1;background-color:rgb(254 242 242/var(--tw-bg-opacity))}.bg-secondary-300{--tw-bg-opacity:1;background-color:rgb(209 213 219/var(--tw-bg-opacity))}.bg-blueGray-100{--tw-bg-opacity:1;background-color:rgb(241 245 249/var(--tw-bg-opacity))}.bg-secondary-500{--tw-bg-opacity:1;background-color:rgb(107 114 128/var(--tw-bg-opacity))}.bg-opacity-50{--tw-bg-opacity:0.5}.bg-opacity-20{--tw-bg-opacity:0.2}.bg-opacity-10{--tw-bg-opacity:0.1}.bg-opacity-60{--tw-bg-opacity:0.6}.bg-opacity-75{--tw-bg-opacity:0.75}.bg-gradient-to-b{background-image:linear-gradient(to bottom,var(--tw-gradient-stops))}.bg-gradient-to-br{background-image:linear-gradient(to bottom right,var(--tw-gradient-stops))}.bg-gradient-to-r{background-image:linear-gradient(to right,var(--tw-gradient-stops))}.from-black{--tw-gradient-from:#161b22;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to,rgba(22,27,34,0))}.from-flag-yellow{--tw-gradient-from:#ffdc44;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to,rgba(255,220,68,0))}.from-\[\#413626\]{--tw-gradient-from:#413626;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to,rgba(65,54,38,0))}.to-flag-red{--tw-gradient-to:#e21b30}.to-\[\#7E5D36\]{--tw-gradient-to:#7e5d36}.fill-current{fill:currentColor}.stroke-current{stroke:currentColor}.object-cover{-o-object-fit:cover;object-fit:cover}.p-6{padding:1.5rem}.p-1{padding:.25rem}.p-4{padding:1rem}.p-3{padding:.75rem}.p-2{padding:.5rem}.p-5{padding:1.25rem}.p-1\.5{padding:.375rem}.p-2\.5{padding:.625rem}.p-0{padding:0}.py-8{padding-bottom:2rem;padding-top:2rem}.px-2{padding-left:.5rem;padding-right:.5rem}.px-4{padding-left:1rem;padding-right:1rem}.py-10{padding-bottom:2.5rem;padding-top:2.5rem}.px-3{padding-left:.75rem;padding-right:.75rem}.py-0\.5{padding-bottom:.125rem;padding-top:.125rem}.py-0{padding-bottom:0;padding-top:0}.py-12{padding-bottom:3rem;padding-top:3rem}.py-14{padding-bottom:3.5rem;padding-top:3.5rem}.py-6{padding-bottom:1.5rem;padding-top:1.5rem}.py-2{padding-bottom:.5rem;padding-top:.5rem}.px-1\.5{padding-left:.375rem;padding-right:.375rem}.py-1{padding-bottom:.25rem;padding-top:.25rem}.px-1{padding-left:.25rem;padding-right:.25rem}.py-16{padding-bottom:4rem;padding-top:4rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}.py-4{padding-bottom:1rem;padding-top:1rem}.px-2\.5{padding-left:.625rem;padding-right:.625rem}.py-1\.5{padding-bottom:.375rem;padding-top:.375rem}.px-0\.5{padding-left:.125rem;padding-right:.125rem}.py-px{padding-bottom:1px;padding-top:1px}.px-0{padding-left:0;padding-right:0}.py-3{padding-bottom:.75rem;padding-top:.75rem}.px-5{padding-left:1.25rem;padding-right:1.25rem}.px-3\.5{padding-left:.875rem;padding-right:.875rem}.py-5{padding-bottom:1.25rem;padding-top:1.25rem}.py-2\.5{padding-bottom:.625rem;padding-top:.625rem}.pt-12{padding-top:3rem}.pr-2{padding-right:.5rem}.pb-64{padding-bottom:16rem}.pt-6{padding-top:1.5rem}.pt-5{padding-top:1.25rem}.pl-10{padding-left:2.5rem}.pl-3{padding-left:.75rem}.pb-5{padding-bottom:1.25rem}.pt-0\.5{padding-top:.125rem}.pt-0{padding-top:0}.pl-5{padding-left:1.25rem}.pb-8{padding-bottom:2rem}.pt-16{padding-top:4rem}.pb-4{padding-bottom:1rem}.pt-2{padding-top:.5rem}.pb-3{padding-bottom:.75rem}.pr-4{padding-right:1rem}.pt-4{padding-top:1rem}.pr-10{padding-right:2.5rem}.pt-10{padding-top:2.5rem}.pb-10{padding-bottom:2.5rem}.pr-12{padding-right:3rem}.pl-4{padding-left:1rem}.pr-1{padding-right:.25rem}.pt-8{padding-top:2rem}.pb-6{padding-bottom:1.5rem}.pl-2{padding-left:.5rem}.pb-20{padding-bottom:5rem}.pb-1{padding-bottom:.25rem}.pr-9{padding-right:2.25rem}.pl-1{padding-left:.25rem}.pl-2\.5{padding-left:.625rem}.pr-2\.5{padding-right:.625rem}.pr-14{padding-right:3.5rem}.pr-0\.5{padding-right:.125rem}.pr-0{padding-right:0}.pl-16{padding-left:4rem}.pr-3{padding-right:.75rem}.text-left{text-align:left}.text-center{text-align:center}.text-right{text-align:right}.align-bottom{vertical-align:bottom}.font-sans{font-family:Inter var,ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,sans-serif,BlinkMacSystemFont,Helvetica Neue,Arial,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji}.font-mono{font-family:Operator Mono,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace}.text-sm{font-size:.875rem;line-height:1.25rem}.text-2xl{font-size:1.5rem;line-height:2rem}.text-base{font-size:1rem;line-height:1.5rem}.text-lg{font-size:1.125rem;line-height:1.75rem}.text-5xl{font-size:3rem;line-height:1}.text-xl{font-size:1.25rem;line-height:1.75rem}.text-3xl{font-size:1.875rem;line-height:2.25rem}.text-xs{font-size:.75rem;line-height:1rem}.text-4xl{font-size:2.25rem;line-height:2.5rem}.text-\[12px\]{font-size:12px}.text-2xs{font-size:.5rem}.font-semibold{font-weight:600}.font-extrabold{font-weight:800}.font-normal{font-weight:300}.font-medium{font-weight:500}.font-bold{font-weight:700}.uppercase{text-transform:uppercase}.lowercase{text-transform:lowercase}.capitalize{text-transform:capitalize}.italic{font-style:italic}.leading-6{line-height:1.5rem}.leading-5{line-height:1.25rem}.leading-7{line-height:1.75rem}.leading-4{line-height:1rem}.leading-tight{line-height:1.25}.leading-none{line-height:1}.leading-loose{line-height:2}.leading-3{line-height:.75rem}.leading-normal{line-height:1.5}.leading-8{line-height:2rem}.tracking-tight{letter-spacing:-.025em}.tracking-wide{letter-spacing:.025em}.tracking-wider{letter-spacing:.05em}.tracking-widest{letter-spacing:.1em}.tracking-tighter{letter-spacing:-.05em}.text-skin-inverted{--tw-text-opacity:1;color:rgba(var(--color-text-inverted),var(--tw-text-opacity))}.text-skin-primary{--tw-text-opacity:1;color:rgba(var(--color-text-primary),var(--tw-text-opacity))}.text-skin-base{--tw-text-opacity:1;color:rgba(var(--color-text-base),var(--tw-text-opacity))}.text-green-900{--tw-text-opacity:1;color:rgb(6 78 59/var(--tw-text-opacity))}.text-green-600{--tw-text-opacity:1;color:rgb(5 150 105/var(--tw-text-opacity))}.text-skin-muted{--tw-text-opacity:1;color:rgba(var(--color-text-muted),var(--tw-text-opacity))}.text-white{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.text-green-300{--tw-text-opacity:1;color:rgb(110 231 183/var(--tw-text-opacity))}.text-gray-400{--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity))}.text-gray-500{--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity))}.text-green-500{--tw-text-opacity:1;color:rgb(16 185 129/var(--tw-text-opacity))}.text-green-400{--tw-text-opacity:1;color:rgb(52 211 153/var(--tw-text-opacity))}.text-green-800{--tw-text-opacity:1;color:rgb(6 95 70/var(--tw-text-opacity))}.text-red-400{--tw-text-opacity:1;color:rgb(248 113 113/var(--tw-text-opacity))}.text-red-800{--tw-text-opacity:1;color:rgb(153 27 27/var(--tw-text-opacity))}.text-blue-400{--tw-text-opacity:1;color:rgb(96 165 250/var(--tw-text-opacity))}.text-blue-700{--tw-text-opacity:1;color:rgb(29 78 216/var(--tw-text-opacity))}.text-red-700{--tw-text-opacity:1;color:rgb(185 28 28/var(--tw-text-opacity))}.text-red-500{--tw-text-opacity:1;color:rgb(239 68 68/var(--tw-text-opacity))}.text-green-700{--tw-text-opacity:1;color:rgb(4 120 87/var(--tw-text-opacity))}.text-skin-inverted-muted{--tw-text-opacity:1;color:rgba(var(--color-text-inverted-muted),var(--tw-text-opacity))}.text-skin-menu{--tw-text-opacity:1;color:rgba(var(--color-text-link-menu),var(--tw-text-opacity))}.text-skin-menu-hover{--tw-text-opacity:1;color:rgba(var(--color-text-link-menu-hover),var(--tw-text-opacity))}.text-yellow-500{--tw-text-opacity:1;color:rgb(234 179 8/var(--tw-text-opacity))}.text-flag-green{--tw-text-opacity:1;color:rgb(9 145 112/var(--tw-text-opacity))}.text-gray-800{--tw-text-opacity:1;color:rgb(31 41 55/var(--tw-text-opacity))}.text-\[\#1E9DEA\]{--tw-text-opacity:1;color:rgb(30 157 234/var(--tw-text-opacity))}.text-blue-800{--tw-text-opacity:1;color:rgb(30 64 175/var(--tw-text-opacity))}.text-yellow-800{--tw-text-opacity:1;color:rgb(133 77 14/var(--tw-text-opacity))}.text-red-600{--tw-text-opacity:1;color:rgb(220 38 38/var(--tw-text-opacity))}.text-gray-300{--tw-text-opacity:1;color:rgb(209 213 219/var(--tw-text-opacity))}.text-yellow-400{--tw-text-opacity:1;color:rgb(250 204 21/var(--tw-text-opacity))}.text-yellow-700{--tw-text-opacity:1;color:rgb(161 98 7/var(--tw-text-opacity))}.text-gray-700{--tw-text-opacity:1;color:rgb(55 65 81/var(--tw-text-opacity))}.text-gray-200{--tw-text-opacity:1;color:rgb(229 231 235/var(--tw-text-opacity))}.text-gray-100{--tw-text-opacity:1;color:rgb(243 244 246/var(--tw-text-opacity))}.text-blue-500{--tw-text-opacity:1;color:rgb(59 130 246/var(--tw-text-opacity))}.text-secondary-700{--tw-text-opacity:1;color:rgb(55 65 81/var(--tw-text-opacity))}.text-negative-600{--tw-text-opacity:1;color:rgb(220 38 38/var(--tw-text-opacity))}.text-negative-400{--tw-text-opacity:1;color:rgb(248 113 113/var(--tw-text-opacity))}.text-secondary-400{--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity))}.text-secondary-600{--tw-text-opacity:1;color:rgb(75 85 99/var(--tw-text-opacity))}.text-primary-600{--tw-text-opacity:1;color:rgb(5 150 105/var(--tw-text-opacity))}.text-secondary-500{--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity))}.text-negative-800{--tw-text-opacity:1;color:rgb(153 27 27/var(--tw-text-opacity))}.text-negative-700{--tw-text-opacity:1;color:rgb(185 28 28/var(--tw-text-opacity))}.text-negative-500{--tw-text-opacity:1;color:rgb(239 68 68/var(--tw-text-opacity))}.text-secondary-300{--tw-text-opacity:1;color:rgb(209 213 219/var(--tw-text-opacity))}.text-red-900{--tw-text-opacity:1;color:rgb(127 29 29/var(--tw-text-opacity))}.underline{-webkit-text-decoration-line:underline;text-decoration-line:underline}.antialiased{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.placeholder-skin-input::-moz-placeholder{--tw-placeholder-opacity:1;color:rgba(var(--color-text-muted),var(--tw-placeholder-opacity))}.placeholder-skin-input:-ms-input-placeholder{--tw-placeholder-opacity:1;color:rgba(var(--color-text-muted),var(--tw-placeholder-opacity))}.placeholder-skin-input::placeholder{--tw-placeholder-opacity:1;color:rgba(var(--color-text-muted),var(--tw-placeholder-opacity))}.placeholder-gray-500::-moz-placeholder{--tw-placeholder-opacity:1;color:rgb(107 114 128/var(--tw-placeholder-opacity))}.placeholder-gray-500:-ms-input-placeholder{--tw-placeholder-opacity:1;color:rgb(107 114 128/var(--tw-placeholder-opacity))}.placeholder-gray-500::placeholder{--tw-placeholder-opacity:1;color:rgb(107 114 128/var(--tw-placeholder-opacity))}.placeholder-red-300::-moz-placeholder{--tw-placeholder-opacity:1;color:rgb(252 165 165/var(--tw-placeholder-opacity))}.placeholder-red-300:-ms-input-placeholder{--tw-placeholder-opacity:1;color:rgb(252 165 165/var(--tw-placeholder-opacity))}.placeholder-red-300::placeholder{--tw-placeholder-opacity:1;color:rgb(252 165 165/var(--tw-placeholder-opacity))}.opacity-25{opacity:.25}.opacity-75{opacity:.75}.opacity-0{opacity:0}.opacity-100{opacity:1}.opacity-70{opacity:.7}.opacity-50{opacity:.5}.opacity-20{opacity:.2}.opacity-60{opacity:.6}.shadow-lg{--tw-shadow:0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -4px rgba(0,0,0,.1);--tw-shadow-colored:0 10px 15px -3px var(--tw-shadow-color),0 4px 6px -4px var(--tw-shadow-color)}.shadow,.shadow-lg{box-shadow:0 0 transparent,0 0 transparent,var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow,0 0 transparent),var(--tw-ring-shadow,0 0 transparent),var(--tw-shadow)}.shadow{--tw-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px -1px rgba(0,0,0,.1);--tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color),0 1px 2px -1px var(--tw-shadow-color)}.shadow-sm{--tw-shadow:0 1px 2px 0 rgba(0,0,0,.05);--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color)}.shadow-sm,.shadow-xl{box-shadow:0 0 transparent,0 0 transparent,var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow,0 0 transparent),var(--tw-ring-shadow,0 0 transparent),var(--tw-shadow)}.shadow-xl{--tw-shadow:0 20px 25px -5px rgba(0,0,0,.1),0 8px 10px -6px rgba(0,0,0,.1);--tw-shadow-colored:0 20px 25px -5px var(--tw-shadow-color),0 8px 10px -6px var(--tw-shadow-color)}.shadow-md{--tw-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -2px rgba(0,0,0,.1);--tw-shadow-colored:0 4px 6px -1px var(--tw-shadow-color),0 2px 4px -2px var(--tw-shadow-color)}.shadow-md,.shadow-none{box-shadow:0 0 transparent,0 0 transparent,var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow,0 0 transparent),var(--tw-ring-shadow,0 0 transparent),var(--tw-shadow)}.shadow-none{--tw-shadow:0 0 transparent;--tw-shadow-colored:0 0 transparent}.outline-none{outline:2px solid transparent;outline-offset:2px}.ring-2{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color)}.ring-2,.ring-8{box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),0 0 transparent;box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 transparent)}.ring-8{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color)}.ring-1{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color)}.ring-1,.ring-4{box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),0 0 transparent;box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 transparent)}.ring-4{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color)}.ring-0{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),0 0 transparent;box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 transparent)}.ring-white{--tw-ring-opacity:1;--tw-ring-color:rgb(255 255 255/var(--tw-ring-opacity))}.ring-body{--tw-ring-color:rgb(var(--color-body-fill))}.ring-black{--tw-ring-opacity:1;--tw-ring-color:rgb(22 27 34/var(--tw-ring-opacity))}.ring-card{--tw-ring-color:rgb(var(--color-card-fill))}.ring-gray-300{--tw-ring-opacity:1;--tw-ring-color:rgb(209 213 219/var(--tw-ring-opacity))}.ring-green-500{--tw-ring-opacity:1;--tw-ring-color:rgb(16 185 129/var(--tw-ring-opacity))}.ring-opacity-5{--tw-ring-opacity:0.05}.blur{--tw-blur:blur(8px)}.blur,.filter{filter:var(--tw-filter)}.backdrop-blur-sm{--tw-backdrop-blur:blur(4px)}.backdrop-blur-sm,.backdrop-filter{-webkit-backdrop-filter:var(--tw-backdrop-filter);backdrop-filter:var(--tw-backdrop-filter)}.transition{transition-duration:.15s;transition-property:color,background-color,border-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-text-decoration-color,-webkit-backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-text-decoration-color,-webkit-backdrop-filter;transition-timing-function:cubic-bezier(.4,0,.2,1)}.transition-transform{transition-duration:.15s;transition-property:transform;transition-timing-function:cubic-bezier(.4,0,.2,1)}.transition-all{transition-duration:.15s;transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1)}.transition-opacity{transition-duration:.15s;transition-property:opacity;transition-timing-function:cubic-bezier(.4,0,.2,1)}.transition-colors{transition-duration:.15s;transition-property:color,background-color,border-color,fill,stroke,-webkit-text-decoration-color;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,-webkit-text-decoration-color;transition-timing-function:cubic-bezier(.4,0,.2,1)}.delay-200{transition-delay:.2s}.duration-500{transition-duration:.5s}.duration-150{transition-duration:.15s}.duration-300{transition-duration:.3s}.duration-100{transition-duration:.1s}.duration-200{transition-duration:.2s}.duration-75{transition-duration:75ms}.ease-in-out{transition-timing-function:cubic-bezier(.4,0,.2,1)}.ease-out{transition-timing-function:cubic-bezier(0,0,.2,1)}.ease-in{transition-timing-function:cubic-bezier(.4,0,1,1)}.ease-linear{transition-timing-function:linear}.hide-scrollbar::-webkit-scrollbar{display:none}.hide-scrollbar{-ms-overflow-style:none;scrollbar-width:none}.line-clamp-2{-webkit-box-orient:vertical;-webkit-line-clamp:2;display:-webkit-box;overflow:hidden}:root{--brand-laravel:#ff2d20;--brand-livewire:#fb70a9;--brand-inertia:#8b5cf6;--brand-javascript:#f7df1e;--brand-typesript:#007acc;--brand-react:#53c1de;--brand-vue-js:#41b883;--brand-php:#777bb3;--brand-digital-ocean:#0080ff;--brand-forge:#19b69b;--brand-packages:#4f46e5;--brand-outils:#22d3ee;--brand-tailwindcss:#06b6d4;--brand-design:#78350f;--brand-alpinejs:#2d3441;--brand-open-source:#f97316;--brand-freelance:#f43f5e;--brand-salaire:#c7d2fe;--brand-projets:#14b8a6;--brand-entrepreneuriat:#0ea5e9;--brand-paiement-en-ligne:#10b981;--brand-branding:#ec4899;--brand-applications:#0284c7;--brand-developpement:#4d7c0f;--brand-event:#36bffa;--brand-tutoriel:#164e63;--brand-communaute:#dd2590;--brand-astuces:#d6bbfb}html{scroll-behavior:smooth}[x-cloak]{display:none!important}.logo-dark,.theme-dark .logo-white{display:none}.theme-dark .logo-dark{display:block}.focus-within\:ring-2[focus-within]{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),0 0 transparent;box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 transparent)}.focus-within\:ring-2:focus-within{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),0 0 transparent;box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 transparent)}.focus-within\:ring-green-500[focus-within]{--tw-ring-opacity:1;--tw-ring-color:rgb(16 185 129/var(--tw-ring-opacity))}.focus-within\:ring-green-500:focus-within{--tw-ring-opacity:1;--tw-ring-color:rgb(16 185 129/var(--tw-ring-opacity))}.focus-within\:ring-offset-2[focus-within]{--tw-ring-offset-width:2px}.focus-within\:ring-offset-2:focus-within{--tw-ring-offset-width:2px}.hover\:scale-125:hover{--tw-scale-x:1.25;--tw-scale-y:1.25;transform:var(--tw-transform)}.hover\:border-green-600:hover{--tw-border-opacity:1;border-color:rgb(5 150 105/var(--tw-border-opacity))}.hover\:border-green-500:hover{--tw-border-opacity:1;border-color:rgb(16 185 129/var(--tw-border-opacity))}.hover\:border-skin-base:hover{--tw-border-opacity:1;border-color:rgba(var(--color-border),var(--tw-border-opacity))}.hover\:bg-skin-button-hover:hover,.hover\:bg-skin-card-muted:hover{--tw-bg-opacity:1;background-color:rgba(var(--color-card-muted-fill),var(--tw-bg-opacity))}.hover\:bg-green-700:hover{--tw-bg-opacity:1;background-color:rgb(4 120 87/var(--tw-bg-opacity))}.hover\:bg-skin-card:hover{--tw-bg-opacity:1;background-color:rgba(var(--color-card-fill),var(--tw-bg-opacity))}.hover\:bg-skin-footer:hover{--tw-bg-opacity:1;background-color:rgba(var(--color-footer-fill),var(--tw-bg-opacity))}.hover\:bg-skin-body:hover{--tw-bg-opacity:1;background-color:rgba(var(--color-body-fill),var(--tw-bg-opacity))}.hover\:bg-skin-primary:hover{--tw-bg-opacity:1;background-color:rgba(var(--color-text-primary),var(--tw-bg-opacity))}.hover\:bg-green-600:hover{--tw-bg-opacity:1;background-color:rgb(5 150 105/var(--tw-bg-opacity))}.hover\:bg-gray-800:hover{--tw-bg-opacity:1;background-color:rgb(31 41 55/var(--tw-bg-opacity))}.hover\:bg-red-50:hover{--tw-bg-opacity:1;background-color:rgb(254 242 242/var(--tw-bg-opacity))}.hover\:bg-primary-100:hover{--tw-bg-opacity:1;background-color:rgb(209 250 229/var(--tw-bg-opacity))}.hover\:bg-primary-600:hover{--tw-bg-opacity:1;background-color:rgb(5 150 105/var(--tw-bg-opacity))}.hover\:bg-secondary-50:hover{--tw-bg-opacity:1;background-color:rgb(249 250 251/var(--tw-bg-opacity))}.hover\:bg-negative-500:hover{--tw-bg-opacity:1;background-color:rgb(239 68 68/var(--tw-bg-opacity))}.hover\:bg-primary-500:hover{--tw-bg-opacity:1;background-color:rgb(16 185 129/var(--tw-bg-opacity))}.hover\:text-skin-primary-hover:hover{--tw-text-opacity:1;color:rgba(var(--color-text-primary-hover),var(--tw-text-opacity))}.hover\:text-skin-base:hover{--tw-text-opacity:1;color:rgba(var(--color-text-base),var(--tw-text-opacity))}.hover\:text-green-500:hover{--tw-text-opacity:1;color:rgb(16 185 129/var(--tw-text-opacity))}.hover\:text-skin-inverted:hover{--tw-text-opacity:1;color:rgba(var(--color-text-inverted),var(--tw-text-opacity))}.hover\:text-blue-600:hover{--tw-text-opacity:1;color:rgb(37 99 235/var(--tw-text-opacity))}.hover\:text-skin-primary:hover{--tw-text-opacity:1;color:rgba(var(--color-text-primary),var(--tw-text-opacity))}.hover\:text-skin-menu-hover:hover{--tw-text-opacity:1;color:rgba(var(--color-text-link-menu-hover),var(--tw-text-opacity))}.hover\:text-white:hover{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.hover\:text-yellow-600:hover{--tw-text-opacity:1;color:rgb(202 138 4/var(--tw-text-opacity))}.hover\:text-red-500:hover{--tw-text-opacity:1;color:rgb(239 68 68/var(--tw-text-opacity))}.hover\:text-\[\#29aaec\]:hover{--tw-text-opacity:1;color:rgb(41 170 236/var(--tw-text-opacity))}.hover\:text-\[\#004182\]:hover{--tw-text-opacity:1;color:rgb(0 65 130/var(--tw-text-opacity))}.hover\:text-skin-inverted-muted:hover{--tw-text-opacity:1;color:rgba(var(--color-text-inverted-muted),var(--tw-text-opacity))}.hover\:text-skin-muted:hover{--tw-text-opacity:1;color:rgba(var(--color-text-muted),var(--tw-text-opacity))}.hover\:text-gray-500:hover{--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity))}.hover\:text-negative-500:hover{--tw-text-opacity:1;color:rgb(239 68 68/var(--tw-text-opacity))}.hover\:text-secondary-700:hover{--tw-text-opacity:1;color:rgb(55 65 81/var(--tw-text-opacity))}.hover\:text-primary-500:hover{--tw-text-opacity:1;color:rgb(16 185 129/var(--tw-text-opacity))}.hover\:text-secondary-500:hover{--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity))}.hover\:text-negative-400:hover{--tw-text-opacity:1;color:rgb(248 113 113/var(--tw-text-opacity))}.hover\:underline:hover{-webkit-text-decoration-line:underline;text-decoration-line:underline}.hover\:opacity-50:hover{opacity:.5}.focus\:z-10:focus{z-index:10}.focus\:border:focus{border-width:1px}.focus\:border-0:focus{border-width:0}.focus\:border-green-500:focus{--tw-border-opacity:1;border-color:rgb(16 185 129/var(--tw-border-opacity))}.focus\:border-skin-input:focus{--tw-border-opacity:1;border-color:rgba(var(--color-input-border),var(--tw-border-opacity))}.focus\:border-green-300:focus{--tw-border-opacity:1;border-color:rgb(110 231 183/var(--tw-border-opacity))}.focus\:border-flag-green:focus{--tw-border-opacity:1;border-color:rgb(9 145 112/var(--tw-border-opacity))}.focus\:border-skin-base:focus{--tw-border-opacity:1;border-color:rgba(var(--color-border),var(--tw-border-opacity))}.focus\:border-transparent:focus{border-color:transparent}.focus\:border-blue-300:focus{--tw-border-opacity:1;border-color:rgb(147 197 253/var(--tw-border-opacity))}.focus\:border-primary-600:focus{--tw-border-opacity:1;border-color:rgb(5 150 105/var(--tw-border-opacity))}.focus\:border-red-500:focus{--tw-border-opacity:1;border-color:rgb(239 68 68/var(--tw-border-opacity))}.focus\:bg-primary-100:focus{--tw-bg-opacity:1;background-color:rgb(209 250 229/var(--tw-bg-opacity))}.focus\:text-skin-base:focus{--tw-text-opacity:1;color:rgba(var(--color-text-base),var(--tw-text-opacity))}.focus\:text-green-600:focus{--tw-text-opacity:1;color:rgb(5 150 105/var(--tw-text-opacity))}.focus\:text-primary-800:focus{--tw-text-opacity:1;color:rgb(6 95 70/var(--tw-text-opacity))}.focus\:underline:focus{-webkit-text-decoration-line:underline;text-decoration-line:underline}.focus\:placeholder-skin-input-focus:focus::-moz-placeholder{--tw-placeholder-opacity:1;color:rgba(var(--color-text-base),var(--tw-placeholder-opacity))}.focus\:placeholder-skin-input-focus:focus:-ms-input-placeholder{--tw-placeholder-opacity:1;color:rgba(var(--color-text-base),var(--tw-placeholder-opacity))}.focus\:placeholder-skin-input-focus:focus::placeholder{--tw-placeholder-opacity:1;color:rgba(var(--color-text-base),var(--tw-placeholder-opacity))}.focus\:shadow-none:focus{--tw-shadow:0 0 transparent;--tw-shadow-colored:0 0 transparent}.focus\:shadow-md:focus,.focus\:shadow-none:focus{box-shadow:0 0 transparent,0 0 transparent,var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow,0 0 transparent),var(--tw-ring-shadow,0 0 transparent),var(--tw-shadow)}.focus\:shadow-md:focus{--tw-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -2px rgba(0,0,0,.1);--tw-shadow-colored:0 4px 6px -1px var(--tw-shadow-color),0 2px 4px -2px var(--tw-shadow-color)}.focus\:outline-none:focus{outline:2px solid transparent;outline-offset:2px}.focus\:ring-2:focus{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color)}.focus\:ring-1:focus,.focus\:ring-2:focus{box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),0 0 transparent;box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 transparent)}.focus\:ring-1:focus{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color)}.focus\:ring-0:focus{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(var(--tw-ring-offset-width)) var(--tw-ring-color)}.focus\:ring-0:focus,.focus\:ring:focus{box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),0 0 transparent;box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 transparent)}.focus\:ring:focus{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color)}.focus\:ring-inset:focus{--tw-ring-inset:inset}.focus\:ring-green-500:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(16 185 129/var(--tw-ring-opacity))}.focus\:ring-blue-600:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(37 99 235/var(--tw-ring-opacity))}.focus\:ring-flag-green:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(9 145 112/var(--tw-ring-opacity))}.focus\:ring-primary-600:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(5 150 105/var(--tw-ring-opacity))}.focus\:ring-secondary-200:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(229 231 235/var(--tw-ring-opacity))}.focus\:ring-red-500:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(239 68 68/var(--tw-ring-opacity))}.focus\:ring-opacity-50:focus{--tw-ring-opacity:0.5}.focus\:ring-offset-2:focus{--tw-ring-offset-width:2px}.focus\:ring-offset-body:focus{--tw-ring-offset-color:rgb(var(--color-body-fill))}.focus\:ring-offset-blue-50:focus{--tw-ring-offset-color:#eff6ff}.active\:bg-skin-footer:active{--tw-bg-opacity:1;background-color:rgba(var(--color-footer-fill),var(--tw-bg-opacity))}.active\:bg-gray-100:active{--tw-bg-opacity:1;background-color:rgb(243 244 246/var(--tw-bg-opacity))}.active\:text-skin-base:active{--tw-text-opacity:1;color:rgba(var(--color-text-base),var(--tw-text-opacity))}.active\:text-gray-700:active{--tw-text-opacity:1;color:rgb(55 65 81/var(--tw-text-opacity))}.group:hover .group-hover\:block{display:block}.group:hover .group-hover\:hidden{display:none}.group:hover .group-hover\:rotate-90{--tw-rotate:90deg;transform:var(--tw-transform)}.group:hover .group-hover\:bg-skin-card-gray{--tw-bg-opacity:1;background-color:rgba(var(--color-card-gray),var(--tw-bg-opacity))}.group:hover .group-hover\:text-green-400{--tw-text-opacity:1;color:rgb(52 211 153/var(--tw-text-opacity))}.group:hover .group-hover\:text-skin-base{--tw-text-opacity:1;color:rgba(var(--color-text-base),var(--tw-text-opacity))}.group:hover .group-hover\:text-skin-primary{--tw-text-opacity:1;color:rgba(var(--color-text-primary),var(--tw-text-opacity))}.group:hover .group-hover\:text-white{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.group:hover .group-hover\:text-green-200{--tw-text-opacity:1;color:rgb(167 243 208/var(--tw-text-opacity))}.group:hover .group-hover\:underline{-webkit-text-decoration-line:underline;text-decoration-line:underline}.group:hover .group-hover\:opacity-75{opacity:.75}.dark .dark\:border-0{border-width:0}.dark .dark\:border{border-width:1px}.dark .dark\:border-none{border-style:none}.dark .dark\:border-gray-700{--tw-border-opacity:1;border-color:rgb(55 65 81/var(--tw-border-opacity))}.dark .dark\:border-secondary-600{--tw-border-opacity:1;border-color:rgb(75 85 99/var(--tw-border-opacity))}.dark .dark\:border-gray-400,.dark .dark\:border-secondary-400{--tw-border-opacity:1;border-color:rgb(156 163 175/var(--tw-border-opacity))}.dark .dark\:border-negative-600{--tw-border-opacity:1;border-color:rgb(220 38 38/var(--tw-border-opacity))}.dark .dark\:border-negative-700{--tw-border-opacity:1;border-color:rgb(185 28 28/var(--tw-border-opacity))}.dark .dark\:bg-gray-900{--tw-bg-opacity:1;background-color:rgb(17 24 39/var(--tw-bg-opacity))}.dark .dark\:bg-secondary-800{--tw-bg-opacity:1;background-color:rgb(31 41 55/var(--tw-bg-opacity))}.dark .dark\:bg-secondary-700{--tw-bg-opacity:1;background-color:rgb(55 65 81/var(--tw-bg-opacity))}.dark .dark\:bg-opacity-60{--tw-bg-opacity:0.6}.dark .dark\:text-secondary-400{--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity))}.dark .dark\:text-negative-600{--tw-text-opacity:1;color:rgb(220 38 38/var(--tw-text-opacity))}.dark .dark\:text-secondary-500{--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity))}.dark .dark\:text-secondary-600{--tw-text-opacity:1;color:rgb(75 85 99/var(--tw-text-opacity))}.dark .dark\:text-gray-400{--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity))}.dark .dark\:hover\:bg-secondary-700:hover{--tw-bg-opacity:1;background-color:rgb(55 65 81/var(--tw-bg-opacity))}.dark .dark\:hover\:text-secondary-600:hover{--tw-text-opacity:1;color:rgb(75 85 99/var(--tw-text-opacity))}.dark .dark\:hover\:text-secondary-100:hover{--tw-text-opacity:1;color:rgb(243 244 246/var(--tw-text-opacity))}.dark .dark\:focus\:bg-secondary-700:focus{--tw-bg-opacity:1;background-color:rgb(55 65 81/var(--tw-bg-opacity))}.dark .dark\:focus\:ring-secondary-400:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(156 163 175/var(--tw-ring-opacity))}@media (min-width:640px){.sm\:prose-base{font-size:1rem;line-height:1.75}.sm\:prose-base :where(p):not(:where([class~=not-prose] *)){margin-bottom:1.25em;margin-top:1.25em}.sm\:prose-base :where([class~=lead]):not(:where([class~=not-prose] *)){font-size:1.25em;line-height:1.6;margin-bottom:1.2em;margin-top:1.2em}.sm\:prose-base :where(blockquote):not(:where([class~=not-prose] *)){margin-bottom:1.6em;margin-top:1.6em;padding-left:1em}.sm\:prose-base :where(h1):not(:where([class~=not-prose] *)){font-size:2.25em;line-height:1.1111111;margin-bottom:.8888889em;margin-top:0}.sm\:prose-base :where(h2):not(:where([class~=not-prose] *)){font-size:1.5em;line-height:1.3333333;margin-bottom:1em;margin-top:2em}.sm\:prose-base :where(h3):not(:where([class~=not-prose] *)){font-size:1.25em;line-height:1.6;margin-bottom:.6em;margin-top:1.6em}.sm\:prose-base :where(h4):not(:where([class~=not-prose] *)){line-height:1.5;margin-bottom:.5em;margin-top:1.5em}.sm\:prose-base :where(img):not(:where([class~=not-prose] *)){margin-bottom:2em;margin-top:2em}.sm\:prose-base :where(video):not(:where([class~=not-prose] *)){margin-bottom:2em;margin-top:2em}.sm\:prose-base :where(figure):not(:where([class~=not-prose] *)){margin-bottom:2em;margin-top:2em}.sm\:prose-base :where(figure>*):not(:where([class~=not-prose] *)){margin-bottom:0;margin-top:0}.sm\:prose-base :where(figcaption):not(:where([class~=not-prose] *)){font-size:.875em;line-height:1.4285714;margin-top:.8571429em}.sm\:prose-base :where(code):not(:where([class~=not-prose] *)){font-size:.875em}.sm\:prose-base :where(h2 code):not(:where([class~=not-prose] *)){font-size:.875em}.sm\:prose-base :where(h3 code):not(:where([class~=not-prose] *)){font-size:.9em}.sm\:prose-base :where(pre):not(:where([class~=not-prose] *)){border-radius:.375rem;font-size:.875em;line-height:1.7142857;margin-bottom:1.7142857em;margin-top:1.7142857em;padding:.8571429em 1.1428571em}.sm\:prose-base :where(ol):not(:where([class~=not-prose] *)){padding-left:1.625em}.sm\:prose-base :where(ul):not(:where([class~=not-prose] *)){padding-left:1.625em}.sm\:prose-base :where(li):not(:where([class~=not-prose] *)){margin-bottom:.5em;margin-top:.5em}.sm\:prose-base :where(ol>li):not(:where([class~=not-prose] *)){padding-left:.375em}.sm\:prose-base :where(ul>li):not(:where([class~=not-prose] *)){padding-left:.375em}.sm\:prose-base>:where(ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.75em;margin-top:.75em}.sm\:prose-base>:where(ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.25em}.sm\:prose-base>:where(ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.25em}.sm\:prose-base>:where(ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.25em}.sm\:prose-base>:where(ol>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.25em}.sm\:prose-base :where(ul ul,ul ol,ol ul,ol ol):not(:where([class~=not-prose] *)){margin-bottom:.75em;margin-top:.75em}.sm\:prose-base :where(hr):not(:where([class~=not-prose] *)){margin-bottom:3em;margin-top:3em}.sm\:prose-base :where(hr+*):not(:where([class~=not-prose] *)){margin-top:0}.sm\:prose-base :where(h2+*):not(:where([class~=not-prose] *)){margin-top:0}.sm\:prose-base :where(h3+*):not(:where([class~=not-prose] *)){margin-top:0}.sm\:prose-base :where(h4+*):not(:where([class~=not-prose] *)){margin-top:0}.sm\:prose-base :where(table):not(:where([class~=not-prose] *)){font-size:.875em;line-height:1.7142857}.sm\:prose-base :where(thead th):not(:where([class~=not-prose] *)){padding-bottom:.5714286em;padding-left:.5714286em;padding-right:.5714286em}.sm\:prose-base :where(thead th:first-child):not(:where([class~=not-prose] *)){padding-left:0}.sm\:prose-base :where(thead th:last-child):not(:where([class~=not-prose] *)){padding-right:0}.sm\:prose-base :where(tbody td):not(:where([class~=not-prose] *)){padding:.5714286em}.sm\:prose-base :where(tbody td:first-child):not(:where([class~=not-prose] *)){padding-left:0}.sm\:prose-base :where(tbody td:last-child):not(:where([class~=not-prose] *)){padding-right:0}.sm\:prose-base>:where(:first-child):not(:where([class~=not-prose] *)){margin-top:0}.sm\:prose-base>:where(:last-child):not(:where([class~=not-prose] *)){margin-bottom:0}.sm\:absolute{position:absolute}.sm\:inset-auto{bottom:auto;left:auto;right:auto;top:auto}.sm\:top-10{top:2.5rem}.sm\:right-0{right:0}.sm\:top-0{top:0}.sm\:order-last{order:9999}.sm\:col-span-1{grid-column:span 1/span 1}.sm\:col-span-2{grid-column:span 2/span 2}.sm\:col-span-3{grid-column:span 3/span 3}.sm\:mx-auto{margin-left:auto;margin-right:auto}.sm\:-mx-4{margin-left:-1rem;margin-right:-1rem}.sm\:mx-0{margin-left:0;margin-right:0}.sm\:my-8{margin-bottom:2rem;margin-top:2rem}.sm\:mt-0{margin-top:0}.sm\:mt-14{margin-top:3.5rem}.sm\:mt-5{margin-top:1.25rem}.sm\:ml-3{margin-left:.75rem}.sm\:mt-12{margin-top:3rem}.sm\:ml-0{margin-left:0}.sm\:mt-8{margin-top:2rem}.sm\:ml-2{margin-left:.5rem}.sm\:mt-px{margin-top:1px}.sm\:-mt-16{margin-top:-4rem}.sm\:ml-4{margin-left:1rem}.sm\:mt-1{margin-top:.25rem}.sm\:mt-6{margin-top:1.5rem}.sm\:block{display:block}.sm\:inline-block{display:inline-block}.sm\:flex{display:flex}.sm\:inline-flex{display:inline-flex}.sm\:grid{display:grid}.sm\:hidden{display:none}.sm\:h-12{height:3rem}.sm\:h-20{height:5rem}.sm\:h-16{height:4rem}.sm\:h-9{height:2.25rem}.sm\:h-10{height:2.5rem}.sm\:h-32{height:8rem}.sm\:h-screen{height:100vh}.sm\:h-96{height:24rem}.sm\:h-48{height:12rem}.sm\:w-auto{width:auto}.sm\:w-12{width:3rem}.sm\:w-32{width:8rem}.sm\:w-10{width:2.5rem}.sm\:w-full{width:100%}.sm\:w-72{width:18rem}.sm\:w-14{width:3.5rem}.sm\:w-48{width:12rem}.sm\:min-w-0{min-width:0}.sm\:max-w-lg{max-width:32rem}.sm\:max-w-4xl{max-width:56rem}.sm\:max-w-md{max-width:28rem}.sm\:max-w-3xl{max-width:48rem}.sm\:max-w-none{max-width:none}.sm\:flex-1{flex:1 1 0%}.sm\:shrink-0{flex-shrink:0}.sm\:translate-y-0{--tw-translate-y:0px;transform:var(--tw-transform)}.sm\:translate-x-2{--tw-translate-x:0.5rem;transform:var(--tw-transform)}.sm\:translate-x-0{--tw-translate-x:0px}.sm\:scale-95,.sm\:translate-x-0{transform:var(--tw-transform)}.sm\:scale-95{--tw-scale-x:.95;--tw-scale-y:.95}.sm\:scale-100{--tw-scale-x:1;--tw-scale-y:1;transform:var(--tw-transform)}.sm\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.sm\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.sm\:grid-cols-5{grid-template-columns:repeat(5,minmax(0,1fr))}.sm\:grid-cols-none{grid-template-columns:none}.sm\:flex-row{flex-direction:row}.sm\:flex-row-reverse{flex-direction:row-reverse}.sm\:items-start{align-items:flex-start}.sm\:items-end{align-items:flex-end}.sm\:items-center{align-items:center}.sm\:justify-start{justify-content:flex-start}.sm\:justify-end{justify-content:flex-end}.sm\:justify-center{justify-content:center}.sm\:justify-between{justify-content:space-between}.sm\:gap-8{gap:2rem}.sm\:gap-12{gap:3rem}.sm\:gap-4{gap:1rem}.sm\:gap-10{gap:2.5rem}.sm\:gap-x-6{-moz-column-gap:1.5rem;column-gap:1.5rem}.sm\:gap-y-12{row-gap:3rem}.sm\:gap-x-3{-moz-column-gap:.75rem;column-gap:.75rem}.sm\:gap-y-0{row-gap:0}.sm\:space-y-0>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(0px*var(--tw-space-y-reverse));margin-top:calc(0px*(1 - var(--tw-space-y-reverse)))}.sm\:space-x-4>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(1rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(1rem*var(--tw-space-x-reverse))}.sm\:space-y-5>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(1.25rem*var(--tw-space-y-reverse));margin-top:calc(1.25rem*(1 - var(--tw-space-y-reverse)))}.sm\:space-x-3>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(.75rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(.75rem*var(--tw-space-x-reverse))}.sm\:space-y-3>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(.75rem*var(--tw-space-y-reverse));margin-top:calc(.75rem*(1 - var(--tw-space-y-reverse)))}.sm\:space-x-5>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(1.25rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(1.25rem*var(--tw-space-x-reverse))}.sm\:space-x-6>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(1.5rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(1.5rem*var(--tw-space-x-reverse))}.sm\:space-y-10>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(2.5rem*var(--tw-space-y-reverse));margin-top:calc(2.5rem*(1 - var(--tw-space-y-reverse)))}.sm\:truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.sm\:rounded-lg{border-radius:.5rem}.sm\:rounded-xl{border-radius:.75rem}.sm\:border-0{border-width:0}.sm\:border-t{border-top-width:1px}.sm\:border-skin-base{--tw-border-opacity:1;border-color:rgba(var(--color-border),var(--tw-border-opacity))}.sm\:p-10{padding:2.5rem}.sm\:p-6{padding:1.5rem}.sm\:p-8{padding:2rem}.sm\:p-4{padding:1rem}.sm\:p-0{padding:0}.sm\:p-5{padding:1.25rem}.sm\:py-10{padding-bottom:2.5rem;padding-top:2.5rem}.sm\:py-24{padding-bottom:6rem;padding-top:6rem}.sm\:px-6{padding-left:1.5rem;padding-right:1.5rem}.sm\:py-9{padding-bottom:2.25rem;padding-top:2.25rem}.sm\:px-4{padding-left:1rem;padding-right:1rem}.sm\:px-0{padding-left:0;padding-right:0}.sm\:px-5{padding-left:1.25rem;padding-right:1.25rem}.sm\:py-2{padding-bottom:.5rem;padding-top:.5rem}.sm\:pt-14{padding-top:3.5rem}.sm\:pt-24{padding-top:6rem}.sm\:pb-64{padding-bottom:16rem}.sm\:pt-0{padding-top:0}.sm\:pt-2{padding-top:.5rem}.sm\:pb-1{padding-bottom:.25rem}.sm\:pt-5{padding-top:1.25rem}.sm\:pt-10{padding-top:2.5rem}.sm\:pt-16{padding-top:4rem}.sm\:pt-7{padding-top:1.75rem}.sm\:pt-4{padding-top:1rem}.sm\:pl-14{padding-left:3.5rem}.sm\:text-left{text-align:left}.sm\:text-center{text-align:center}.sm\:text-right{text-align:right}.sm\:align-middle{vertical-align:middle}.sm\:text-base{font-size:1rem;line-height:1.5rem}.sm\:text-3xl{font-size:1.875rem;line-height:2.25rem}.sm\:text-lg{font-size:1.125rem;line-height:1.75rem}.sm\:text-2xl{font-size:1.5rem;line-height:2rem}.sm\:text-xl{font-size:1.25rem;line-height:1.75rem}.sm\:text-5xl{font-size:3rem;line-height:1}.sm\:text-sm{font-size:.875rem;line-height:1.25rem}.sm\:text-4xl{font-size:2.25rem;line-height:2.5rem}.sm\:leading-none{line-height:1}.sm\:leading-10{line-height:2.5rem}.sm\:leading-8{line-height:2rem}.sm\:leading-5{line-height:1.25rem}.sm\:shadow-md{--tw-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -2px rgba(0,0,0,.1);--tw-shadow-colored:0 4px 6px -1px var(--tw-shadow-color),0 2px 4px -2px var(--tw-shadow-color);box-shadow:0 0 transparent,0 0 transparent,var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow,0 0 transparent),var(--tw-ring-shadow,0 0 transparent),var(--tw-shadow)}.sm\:duration-700{transition-duration:.7s}}@media (min-width:768px){.md\:prose-sm{font-size:.875rem;line-height:1.7142857}.md\:prose-sm :where(p):not(:where([class~=not-prose] *)){margin-bottom:1.1428571em;margin-top:1.1428571em}.md\:prose-sm :where([class~=lead]):not(:where([class~=not-prose] *)){font-size:1.2857143em;line-height:1.5555556;margin-bottom:.8888889em;margin-top:.8888889em}.md\:prose-sm :where(blockquote):not(:where([class~=not-prose] *)){margin-bottom:1.3333333em;margin-top:1.3333333em;padding-left:1.1111111em}.md\:prose-sm :where(h1):not(:where([class~=not-prose] *)){font-size:2.1428571em;line-height:1.2;margin-bottom:.8em;margin-top:0}.md\:prose-sm :where(h2):not(:where([class~=not-prose] *)){font-size:1.4285714em;line-height:1.4;margin-bottom:.8em;margin-top:1.6em}.md\:prose-sm :where(h3):not(:where([class~=not-prose] *)){font-size:1.2857143em;line-height:1.5555556;margin-bottom:.4444444em;margin-top:1.5555556em}.md\:prose-sm :where(h4):not(:where([class~=not-prose] *)){line-height:1.4285714;margin-bottom:.5714286em;margin-top:1.4285714em}.md\:prose-sm :where(img):not(:where([class~=not-prose] *)){margin-bottom:1.7142857em;margin-top:1.7142857em}.md\:prose-sm :where(video):not(:where([class~=not-prose] *)){margin-bottom:1.7142857em;margin-top:1.7142857em}.md\:prose-sm :where(figure):not(:where([class~=not-prose] *)){margin-bottom:1.7142857em;margin-top:1.7142857em}.md\:prose-sm :where(figure>*):not(:where([class~=not-prose] *)){margin-bottom:0;margin-top:0}.md\:prose-sm :where(figcaption):not(:where([class~=not-prose] *)){font-size:.8571429em;line-height:1.3333333;margin-top:.6666667em}.md\:prose-sm :where(code):not(:where([class~=not-prose] *)){font-size:.8571429em}.md\:prose-sm :where(h2 code):not(:where([class~=not-prose] *)){font-size:.9em}.md\:prose-sm :where(h3 code):not(:where([class~=not-prose] *)){font-size:.8888889em}.md\:prose-sm :where(pre):not(:where([class~=not-prose] *)){border-radius:.25rem;font-size:.8571429em;line-height:1.6666667;margin-bottom:1.6666667em;margin-top:1.6666667em;padding:.6666667em 1em}.md\:prose-sm :where(ol):not(:where([class~=not-prose] *)){padding-left:1.5714286em}.md\:prose-sm :where(ul):not(:where([class~=not-prose] *)){padding-left:1.5714286em}.md\:prose-sm :where(li):not(:where([class~=not-prose] *)){margin-bottom:.2857143em;margin-top:.2857143em}.md\:prose-sm :where(ol>li):not(:where([class~=not-prose] *)){padding-left:.4285714em}.md\:prose-sm :where(ul>li):not(:where([class~=not-prose] *)){padding-left:.4285714em}.md\:prose-sm>:where(ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.5714286em;margin-top:.5714286em}.md\:prose-sm>:where(ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.1428571em}.md\:prose-sm>:where(ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.1428571em}.md\:prose-sm>:where(ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.1428571em}.md\:prose-sm>:where(ol>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.1428571em}.md\:prose-sm :where(ul ul,ul ol,ol ul,ol ol):not(:where([class~=not-prose] *)){margin-bottom:.5714286em;margin-top:.5714286em}.md\:prose-sm :where(hr):not(:where([class~=not-prose] *)){margin-bottom:2.8571429em;margin-top:2.8571429em}.md\:prose-sm :where(hr+*):not(:where([class~=not-prose] *)){margin-top:0}.md\:prose-sm :where(h2+*):not(:where([class~=not-prose] *)){margin-top:0}.md\:prose-sm :where(h3+*):not(:where([class~=not-prose] *)){margin-top:0}.md\:prose-sm :where(h4+*):not(:where([class~=not-prose] *)){margin-top:0}.md\:prose-sm :where(table):not(:where([class~=not-prose] *)){font-size:.8571429em;line-height:1.5}.md\:prose-sm :where(thead th):not(:where([class~=not-prose] *)){padding-bottom:.6666667em;padding-left:1em;padding-right:1em}.md\:prose-sm :where(thead th:first-child):not(:where([class~=not-prose] *)){padding-left:0}.md\:prose-sm :where(thead th:last-child):not(:where([class~=not-prose] *)){padding-right:0}.md\:prose-sm :where(tbody td):not(:where([class~=not-prose] *)){padding:.6666667em 1em}.md\:prose-sm :where(tbody td:first-child):not(:where([class~=not-prose] *)){padding-left:0}.md\:prose-sm :where(tbody td:last-child):not(:where([class~=not-prose] *)){padding-right:0}.md\:prose-sm>:where(:first-child):not(:where([class~=not-prose] *)){margin-top:0}.md\:prose-sm>:where(:last-child):not(:where([class~=not-prose] *)){margin-bottom:0}.md\:prose-lg{font-size:1.125rem;line-height:1.7777778}.md\:prose-lg :where(p):not(:where([class~=not-prose] *)){margin-bottom:1.3333333em;margin-top:1.3333333em}.md\:prose-lg :where([class~=lead]):not(:where([class~=not-prose] *)){font-size:1.2222222em;line-height:1.4545455;margin-bottom:1.0909091em;margin-top:1.0909091em}.md\:prose-lg :where(blockquote):not(:where([class~=not-prose] *)){margin-bottom:1.6666667em;margin-top:1.6666667em;padding-left:1em}.md\:prose-lg :where(h1):not(:where([class~=not-prose] *)){font-size:2.6666667em;line-height:1;margin-bottom:.8333333em;margin-top:0}.md\:prose-lg :where(h2):not(:where([class~=not-prose] *)){font-size:1.6666667em;line-height:1.3333333;margin-bottom:1.0666667em;margin-top:1.8666667em}.md\:prose-lg :where(h3):not(:where([class~=not-prose] *)){font-size:1.3333333em;line-height:1.5;margin-bottom:.6666667em;margin-top:1.6666667em}.md\:prose-lg :where(h4):not(:where([class~=not-prose] *)){line-height:1.5555556;margin-bottom:.4444444em;margin-top:1.7777778em}.md\:prose-lg :where(img):not(:where([class~=not-prose] *)){margin-bottom:1.7777778em;margin-top:1.7777778em}.md\:prose-lg :where(video):not(:where([class~=not-prose] *)){margin-bottom:1.7777778em;margin-top:1.7777778em}.md\:prose-lg :where(figure):not(:where([class~=not-prose] *)){margin-bottom:1.7777778em;margin-top:1.7777778em}.md\:prose-lg :where(figure>*):not(:where([class~=not-prose] *)){margin-bottom:0;margin-top:0}.md\:prose-lg :where(figcaption):not(:where([class~=not-prose] *)){font-size:.8888889em;line-height:1.5;margin-top:1em}.md\:prose-lg :where(code):not(:where([class~=not-prose] *)){font-size:.8888889em}.md\:prose-lg :where(h2 code):not(:where([class~=not-prose] *)){font-size:.8666667em}.md\:prose-lg :where(h3 code):not(:where([class~=not-prose] *)){font-size:.875em}.md\:prose-lg :where(pre):not(:where([class~=not-prose] *)){border-radius:.375rem;font-size:.8888889em;line-height:1.75;margin-bottom:2em;margin-top:2em;padding:1em 1.5em}.md\:prose-lg :where(ol):not(:where([class~=not-prose] *)){padding-left:1.5555556em}.md\:prose-lg :where(ul):not(:where([class~=not-prose] *)){padding-left:1.5555556em}.md\:prose-lg :where(li):not(:where([class~=not-prose] *)){margin-bottom:.6666667em;margin-top:.6666667em}.md\:prose-lg :where(ol>li):not(:where([class~=not-prose] *)){padding-left:.4444444em}.md\:prose-lg :where(ul>li):not(:where([class~=not-prose] *)){padding-left:.4444444em}.md\:prose-lg>:where(ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.8888889em;margin-top:.8888889em}.md\:prose-lg>:where(ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.3333333em}.md\:prose-lg>:where(ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.3333333em}.md\:prose-lg>:where(ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.3333333em}.md\:prose-lg>:where(ol>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.3333333em}.md\:prose-lg :where(ul ul,ul ol,ol ul,ol ol):not(:where([class~=not-prose] *)){margin-bottom:.8888889em;margin-top:.8888889em}.md\:prose-lg :where(hr):not(:where([class~=not-prose] *)){margin-bottom:3.1111111em;margin-top:3.1111111em}.md\:prose-lg :where(hr+*):not(:where([class~=not-prose] *)){margin-top:0}.md\:prose-lg :where(h2+*):not(:where([class~=not-prose] *)){margin-top:0}.md\:prose-lg :where(h3+*):not(:where([class~=not-prose] *)){margin-top:0}.md\:prose-lg :where(h4+*):not(:where([class~=not-prose] *)){margin-top:0}.md\:prose-lg :where(table):not(:where([class~=not-prose] *)){font-size:.8888889em;line-height:1.5}.md\:prose-lg :where(thead th):not(:where([class~=not-prose] *)){padding-bottom:.75em;padding-left:.75em;padding-right:.75em}.md\:prose-lg :where(thead th:first-child):not(:where([class~=not-prose] *)){padding-left:0}.md\:prose-lg :where(thead th:last-child):not(:where([class~=not-prose] *)){padding-right:0}.md\:prose-lg :where(tbody td):not(:where([class~=not-prose] *)){padding:.75em}.md\:prose-lg :where(tbody td:first-child):not(:where([class~=not-prose] *)){padding-left:0}.md\:prose-lg :where(tbody td:last-child):not(:where([class~=not-prose] *)){padding-right:0}.md\:prose-lg>:where(:first-child):not(:where([class~=not-prose] *)){margin-top:0}.md\:prose-lg>:where(:last-child):not(:where([class~=not-prose] *)){margin-bottom:0}.md\:prose-xl{font-size:1.25rem;line-height:1.8}.md\:prose-xl :where(p):not(:where([class~=not-prose] *)){margin-bottom:1.2em;margin-top:1.2em}.md\:prose-xl :where([class~=lead]):not(:where([class~=not-prose] *)){font-size:1.2em;line-height:1.5;margin-bottom:1em;margin-top:1em}.md\:prose-xl :where(blockquote):not(:where([class~=not-prose] *)){margin-bottom:1.6em;margin-top:1.6em;padding-left:1.0666667em}.md\:prose-xl :where(h1):not(:where([class~=not-prose] *)){font-size:2.8em;line-height:1;margin-bottom:.8571429em;margin-top:0}.md\:prose-xl :where(h2):not(:where([class~=not-prose] *)){font-size:1.8em;line-height:1.1111111;margin-bottom:.8888889em;margin-top:1.5555556em}.md\:prose-xl :where(h3):not(:where([class~=not-prose] *)){font-size:1.5em;line-height:1.3333333;margin-bottom:.6666667em;margin-top:1.6em}.md\:prose-xl :where(h4):not(:where([class~=not-prose] *)){line-height:1.6;margin-bottom:.6em;margin-top:1.8em}.md\:prose-xl :where(img):not(:where([class~=not-prose] *)){margin-bottom:2em;margin-top:2em}.md\:prose-xl :where(video):not(:where([class~=not-prose] *)){margin-bottom:2em;margin-top:2em}.md\:prose-xl :where(figure):not(:where([class~=not-prose] *)){margin-bottom:2em;margin-top:2em}.md\:prose-xl :where(figure>*):not(:where([class~=not-prose] *)){margin-bottom:0;margin-top:0}.md\:prose-xl :where(figcaption):not(:where([class~=not-prose] *)){font-size:.9em;line-height:1.5555556;margin-top:1em}.md\:prose-xl :where(code):not(:where([class~=not-prose] *)){font-size:.9em}.md\:prose-xl :where(h2 code):not(:where([class~=not-prose] *)){font-size:.8611111em}.md\:prose-xl :where(h3 code):not(:where([class~=not-prose] *)){font-size:.9em}.md\:prose-xl :where(pre):not(:where([class~=not-prose] *)){border-radius:.5rem;font-size:.9em;line-height:1.7777778;margin-bottom:2em;margin-top:2em;padding:1.1111111em 1.3333333em}.md\:prose-xl :where(ol):not(:where([class~=not-prose] *)){padding-left:1.6em}.md\:prose-xl :where(ul):not(:where([class~=not-prose] *)){padding-left:1.6em}.md\:prose-xl :where(li):not(:where([class~=not-prose] *)){margin-bottom:.6em;margin-top:.6em}.md\:prose-xl :where(ol>li):not(:where([class~=not-prose] *)){padding-left:.4em}.md\:prose-xl :where(ul>li):not(:where([class~=not-prose] *)){padding-left:.4em}.md\:prose-xl>:where(ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.8em;margin-top:.8em}.md\:prose-xl>:where(ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.2em}.md\:prose-xl>:where(ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.2em}.md\:prose-xl>:where(ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.2em}.md\:prose-xl>:where(ol>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.2em}.md\:prose-xl :where(ul ul,ul ol,ol ul,ol ol):not(:where([class~=not-prose] *)){margin-bottom:.8em;margin-top:.8em}.md\:prose-xl :where(hr):not(:where([class~=not-prose] *)){margin-bottom:2.8em;margin-top:2.8em}.md\:prose-xl :where(hr+*):not(:where([class~=not-prose] *)){margin-top:0}.md\:prose-xl :where(h2+*):not(:where([class~=not-prose] *)){margin-top:0}.md\:prose-xl :where(h3+*):not(:where([class~=not-prose] *)){margin-top:0}.md\:prose-xl :where(h4+*):not(:where([class~=not-prose] *)){margin-top:0}.md\:prose-xl :where(table):not(:where([class~=not-prose] *)){font-size:.9em;line-height:1.5555556}.md\:prose-xl :where(thead th):not(:where([class~=not-prose] *)){padding-bottom:.8888889em;padding-left:.6666667em;padding-right:.6666667em}.md\:prose-xl :where(thead th:first-child):not(:where([class~=not-prose] *)){padding-left:0}.md\:prose-xl :where(thead th:last-child):not(:where([class~=not-prose] *)){padding-right:0}.md\:prose-xl :where(tbody td):not(:where([class~=not-prose] *)){padding:.8888889em .6666667em}.md\:prose-xl :where(tbody td:first-child):not(:where([class~=not-prose] *)){padding-left:0}.md\:prose-xl :where(tbody td:last-child):not(:where([class~=not-prose] *)){padding-right:0}.md\:prose-xl>:where(:first-child):not(:where([class~=not-prose] *)){margin-top:0}.md\:prose-xl>:where(:last-child):not(:where([class~=not-prose] *)){margin-bottom:0}.md\:mx-auto{margin-left:auto;margin-right:auto}.md\:mt-0{margin-top:0}.md\:ml-6{margin-left:1.5rem}.md\:ml-4{margin-left:1rem}.md\:block{display:block}.md\:flex{display:flex}.md\:grid{display:grid}.md\:hidden{display:none}.md\:w-auto{width:auto}.md\:max-w-2xl{max-width:42rem}.md\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.md\:items-center{align-items:center}.md\:justify-between{justify-content:space-between}.md\:gap-4{gap:1rem}.md\:border-t-0{border-top-width:0}.md\:border-l{border-left-width:1px}.md\:px-1{padding-left:.25rem;padding-right:.25rem}.md\:text-4xl{font-size:2.25rem;line-height:2.5rem}}@media (min-width:1024px){.lg\:prose-lg{font-size:1.125rem;line-height:1.7777778}.lg\:prose-lg :where(p):not(:where([class~=not-prose] *)){margin-bottom:1.3333333em;margin-top:1.3333333em}.lg\:prose-lg :where([class~=lead]):not(:where([class~=not-prose] *)){font-size:1.2222222em;line-height:1.4545455;margin-bottom:1.0909091em;margin-top:1.0909091em}.lg\:prose-lg :where(blockquote):not(:where([class~=not-prose] *)){margin-bottom:1.6666667em;margin-top:1.6666667em;padding-left:1em}.lg\:prose-lg :where(h1):not(:where([class~=not-prose] *)){font-size:2.6666667em;line-height:1;margin-bottom:.8333333em;margin-top:0}.lg\:prose-lg :where(h2):not(:where([class~=not-prose] *)){font-size:1.6666667em;line-height:1.3333333;margin-bottom:1.0666667em;margin-top:1.8666667em}.lg\:prose-lg :where(h3):not(:where([class~=not-prose] *)){font-size:1.3333333em;line-height:1.5;margin-bottom:.6666667em;margin-top:1.6666667em}.lg\:prose-lg :where(h4):not(:where([class~=not-prose] *)){line-height:1.5555556;margin-bottom:.4444444em;margin-top:1.7777778em}.lg\:prose-lg :where(img):not(:where([class~=not-prose] *)){margin-bottom:1.7777778em;margin-top:1.7777778em}.lg\:prose-lg :where(video):not(:where([class~=not-prose] *)){margin-bottom:1.7777778em;margin-top:1.7777778em}.lg\:prose-lg :where(figure):not(:where([class~=not-prose] *)){margin-bottom:1.7777778em;margin-top:1.7777778em}.lg\:prose-lg :where(figure>*):not(:where([class~=not-prose] *)){margin-bottom:0;margin-top:0}.lg\:prose-lg :where(figcaption):not(:where([class~=not-prose] *)){font-size:.8888889em;line-height:1.5;margin-top:1em}.lg\:prose-lg :where(code):not(:where([class~=not-prose] *)){font-size:.8888889em}.lg\:prose-lg :where(h2 code):not(:where([class~=not-prose] *)){font-size:.8666667em}.lg\:prose-lg :where(h3 code):not(:where([class~=not-prose] *)){font-size:.875em}.lg\:prose-lg :where(pre):not(:where([class~=not-prose] *)){border-radius:.375rem;font-size:.8888889em;line-height:1.75;margin-bottom:2em;margin-top:2em;padding:1em 1.5em}.lg\:prose-lg :where(ol):not(:where([class~=not-prose] *)){padding-left:1.5555556em}.lg\:prose-lg :where(ul):not(:where([class~=not-prose] *)){padding-left:1.5555556em}.lg\:prose-lg :where(li):not(:where([class~=not-prose] *)){margin-bottom:.6666667em;margin-top:.6666667em}.lg\:prose-lg :where(ol>li):not(:where([class~=not-prose] *)){padding-left:.4444444em}.lg\:prose-lg :where(ul>li):not(:where([class~=not-prose] *)){padding-left:.4444444em}.lg\:prose-lg>:where(ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.8888889em;margin-top:.8888889em}.lg\:prose-lg>:where(ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.3333333em}.lg\:prose-lg>:where(ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.3333333em}.lg\:prose-lg>:where(ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.3333333em}.lg\:prose-lg>:where(ol>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.3333333em}.lg\:prose-lg :where(ul ul,ul ol,ol ul,ol ol):not(:where([class~=not-prose] *)){margin-bottom:.8888889em;margin-top:.8888889em}.lg\:prose-lg :where(hr):not(:where([class~=not-prose] *)){margin-bottom:3.1111111em;margin-top:3.1111111em}.lg\:prose-lg :where(hr+*):not(:where([class~=not-prose] *)){margin-top:0}.lg\:prose-lg :where(h2+*):not(:where([class~=not-prose] *)){margin-top:0}.lg\:prose-lg :where(h3+*):not(:where([class~=not-prose] *)){margin-top:0}.lg\:prose-lg :where(h4+*):not(:where([class~=not-prose] *)){margin-top:0}.lg\:prose-lg :where(table):not(:where([class~=not-prose] *)){font-size:.8888889em;line-height:1.5}.lg\:prose-lg :where(thead th):not(:where([class~=not-prose] *)){padding-bottom:.75em;padding-left:.75em;padding-right:.75em}.lg\:prose-lg :where(thead th:first-child):not(:where([class~=not-prose] *)){padding-left:0}.lg\:prose-lg :where(thead th:last-child):not(:where([class~=not-prose] *)){padding-right:0}.lg\:prose-lg :where(tbody td):not(:where([class~=not-prose] *)){padding:.75em}.lg\:prose-lg :where(tbody td:first-child):not(:where([class~=not-prose] *)){padding-left:0}.lg\:prose-lg :where(tbody td:last-child):not(:where([class~=not-prose] *)){padding-right:0}.lg\:prose-lg>:where(:first-child):not(:where([class~=not-prose] *)){margin-top:0}.lg\:prose-lg>:where(:last-child):not(:where([class~=not-prose] *)){margin-bottom:0}.lg\:prose-xl{font-size:1.25rem;line-height:1.8}.lg\:prose-xl :where(p):not(:where([class~=not-prose] *)){margin-bottom:1.2em;margin-top:1.2em}.lg\:prose-xl :where([class~=lead]):not(:where([class~=not-prose] *)){font-size:1.2em;line-height:1.5;margin-bottom:1em;margin-top:1em}.lg\:prose-xl :where(blockquote):not(:where([class~=not-prose] *)){margin-bottom:1.6em;margin-top:1.6em;padding-left:1.0666667em}.lg\:prose-xl :where(h1):not(:where([class~=not-prose] *)){font-size:2.8em;line-height:1;margin-bottom:.8571429em;margin-top:0}.lg\:prose-xl :where(h2):not(:where([class~=not-prose] *)){font-size:1.8em;line-height:1.1111111;margin-bottom:.8888889em;margin-top:1.5555556em}.lg\:prose-xl :where(h3):not(:where([class~=not-prose] *)){font-size:1.5em;line-height:1.3333333;margin-bottom:.6666667em;margin-top:1.6em}.lg\:prose-xl :where(h4):not(:where([class~=not-prose] *)){line-height:1.6;margin-bottom:.6em;margin-top:1.8em}.lg\:prose-xl :where(img):not(:where([class~=not-prose] *)){margin-bottom:2em;margin-top:2em}.lg\:prose-xl :where(video):not(:where([class~=not-prose] *)){margin-bottom:2em;margin-top:2em}.lg\:prose-xl :where(figure):not(:where([class~=not-prose] *)){margin-bottom:2em;margin-top:2em}.lg\:prose-xl :where(figure>*):not(:where([class~=not-prose] *)){margin-bottom:0;margin-top:0}.lg\:prose-xl :where(figcaption):not(:where([class~=not-prose] *)){font-size:.9em;line-height:1.5555556;margin-top:1em}.lg\:prose-xl :where(code):not(:where([class~=not-prose] *)){font-size:.9em}.lg\:prose-xl :where(h2 code):not(:where([class~=not-prose] *)){font-size:.8611111em}.lg\:prose-xl :where(h3 code):not(:where([class~=not-prose] *)){font-size:.9em}.lg\:prose-xl :where(pre):not(:where([class~=not-prose] *)){border-radius:.5rem;font-size:.9em;line-height:1.7777778;margin-bottom:2em;margin-top:2em;padding:1.1111111em 1.3333333em}.lg\:prose-xl :where(ol):not(:where([class~=not-prose] *)){padding-left:1.6em}.lg\:prose-xl :where(ul):not(:where([class~=not-prose] *)){padding-left:1.6em}.lg\:prose-xl :where(li):not(:where([class~=not-prose] *)){margin-bottom:.6em;margin-top:.6em}.lg\:prose-xl :where(ol>li):not(:where([class~=not-prose] *)){padding-left:.4em}.lg\:prose-xl :where(ul>li):not(:where([class~=not-prose] *)){padding-left:.4em}.lg\:prose-xl>:where(ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.8em;margin-top:.8em}.lg\:prose-xl>:where(ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.2em}.lg\:prose-xl>:where(ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.2em}.lg\:prose-xl>:where(ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.2em}.lg\:prose-xl>:where(ol>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.2em}.lg\:prose-xl :where(ul ul,ul ol,ol ul,ol ol):not(:where([class~=not-prose] *)){margin-bottom:.8em;margin-top:.8em}.lg\:prose-xl :where(hr):not(:where([class~=not-prose] *)){margin-bottom:2.8em;margin-top:2.8em}.lg\:prose-xl :where(hr+*):not(:where([class~=not-prose] *)){margin-top:0}.lg\:prose-xl :where(h2+*):not(:where([class~=not-prose] *)){margin-top:0}.lg\:prose-xl :where(h3+*):not(:where([class~=not-prose] *)){margin-top:0}.lg\:prose-xl :where(h4+*):not(:where([class~=not-prose] *)){margin-top:0}.lg\:prose-xl :where(table):not(:where([class~=not-prose] *)){font-size:.9em;line-height:1.5555556}.lg\:prose-xl :where(thead th):not(:where([class~=not-prose] *)){padding-bottom:.8888889em;padding-left:.6666667em;padding-right:.6666667em}.lg\:prose-xl :where(thead th:first-child):not(:where([class~=not-prose] *)){padding-left:0}.lg\:prose-xl :where(thead th:last-child):not(:where([class~=not-prose] *)){padding-right:0}.lg\:prose-xl :where(tbody td):not(:where([class~=not-prose] *)){padding:.8888889em .6666667em}.lg\:prose-xl :where(tbody td:first-child):not(:where([class~=not-prose] *)){padding-left:0}.lg\:prose-xl :where(tbody td:last-child):not(:where([class~=not-prose] *)){padding-right:0}.lg\:prose-xl>:where(:first-child):not(:where([class~=not-prose] *)){margin-top:0}.lg\:prose-xl>:where(:last-child):not(:where([class~=not-prose] *)){margin-bottom:0}.lg\:left-1\/2{left:50%}.lg\:col-span-3{grid-column:span 3/span 3}.lg\:col-span-2{grid-column:span 2/span 2}.lg\:col-span-6{grid-column:span 6/span 6}.lg\:col-span-5{grid-column:span 5/span 5}.lg\:col-span-8{grid-column:span 8/span 8}.lg\:col-span-7{grid-column:span 7/span 7}.lg\:col-span-10{grid-column:span 10/span 10}.lg\:col-span-9{grid-column:span 9/span 9}.lg\:col-start-10{grid-column-start:10}.lg\:row-span-3{grid-row:span 3/span 3}.lg\:mx-0{margin-left:0;margin-right:0}.lg\:mt-8{margin-top:2rem}.lg\:mt-0{margin-top:0}.lg\:mt-6{margin-top:1.5rem}.lg\:mt-10{margin-top:2.5rem}.lg\:mt-12{margin-top:3rem}.lg\:mb-32{margin-bottom:8rem}.lg\:ml-10{margin-left:2.5rem}.lg\:ml-0{margin-left:0}.lg\:ml-6{margin-left:1.5rem}.lg\:block{display:block}.lg\:flex{display:flex}.lg\:grid{display:grid}.lg\:hidden{display:none}.lg\:h-20{height:5rem}.lg\:h-48{height:12rem}.lg\:w-20{width:5rem}.lg\:w-90{width:22.5rem}.lg\:max-w-none{max-width:none}.lg\:max-w-7xl{max-width:80rem}.lg\:max-w-xl{max-width:36rem}.lg\:max-w-3xl{max-width:48rem}.lg\:max-w-xs{max-width:20rem}.lg\:-translate-x-1\/2{--tw-translate-x:-50%;transform:var(--tw-transform)}.lg\:grid-flow-col{grid-auto-flow:column}.lg\:grid-cols-5{grid-template-columns:repeat(5,minmax(0,1fr))}.lg\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.lg\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.lg\:grid-cols-12{grid-template-columns:repeat(12,minmax(0,1fr))}.lg\:grid-cols-9{grid-template-columns:repeat(9,minmax(0,1fr))}.lg\:grid-cols-8{grid-template-columns:repeat(8,minmax(0,1fr))}.lg\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}.lg\:grid-rows-3{grid-template-rows:repeat(3,minmax(0,1fr))}.lg\:items-start{align-items:flex-start}.lg\:items-center{align-items:center}.lg\:justify-end{justify-content:flex-end}.lg\:justify-between{justify-content:space-between}.lg\:justify-around{justify-content:space-around}.lg\:gap-16{gap:4rem}.lg\:gap-6{gap:1.5rem}.lg\:gap-24{gap:6rem}.lg\:gap-8{gap:2rem}.lg\:gap-10{gap:2.5rem}.lg\:gap-12{gap:3rem}.lg\:gap-x-8{-moz-column-gap:2rem;column-gap:2rem}.lg\:gap-x-5{-moz-column-gap:1.25rem;column-gap:1.25rem}.lg\:gap-y-12{row-gap:3rem}.lg\:gap-x-2{-moz-column-gap:.5rem;column-gap:.5rem}.lg\:gap-x-3{-moz-column-gap:.75rem;column-gap:.75rem}.lg\:gap-y-6{row-gap:1.5rem}.lg\:space-y-0>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(0px*var(--tw-space-y-reverse));margin-top:calc(0px*(1 - var(--tw-space-y-reverse)))}.lg\:space-x-6>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(1.5rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(1.5rem*var(--tw-space-x-reverse))}.lg\:space-x-3>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(.75rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(.75rem*var(--tw-space-x-reverse))}.lg\:self-center{align-self:center}.lg\:border-l{border-left-width:1px}.lg\:border-skin-base{--tw-border-opacity:1;border-color:rgba(var(--color-border),var(--tw-border-opacity))}.lg\:py-12{padding-bottom:3rem;padding-top:3rem}.lg\:py-10{padding-bottom:2.5rem;padding-top:2.5rem}.lg\:py-20{padding-bottom:5rem;padding-top:5rem}.lg\:px-8{padding-left:2rem;padding-right:2rem}.lg\:px-0{padding-left:0;padding-right:0}.lg\:py-16{padding-bottom:4rem;padding-top:4rem}.lg\:py-8{padding-bottom:2rem;padding-top:2rem}.lg\:pl-8{padding-left:2rem}.lg\:text-left{text-align:left}.lg\:text-sm{font-size:.875rem;line-height:1.25rem}.lg\:text-4xl{font-size:2.25rem;line-height:2.5rem}.lg\:text-base{font-size:1rem;line-height:1.5rem}.lg\:text-5xl{font-size:3rem;line-height:1}.lg\:text-lg{font-size:1.125rem;line-height:1.75rem}.lg\:leading-\[3\.5rem\]{line-height:3.5rem}}@media (min-width:1280px){.xl\:absolute{position:absolute}.xl\:relative{position:relative}.xl\:inset-0{left:0;right:0}.xl\:inset-0,.xl\:inset-y-0{bottom:0;top:0}.xl\:left-0{left:0}.xl\:col-span-7{grid-column:span 7/span 7}.xl\:col-span-3{grid-column:span 3/span 3}.xl\:col-span-1{grid-column:span 1/span 1}.xl\:col-span-2{grid-column:span 2/span 2}.xl\:col-start-2{grid-column-start:2}.xl\:col-start-1{grid-column-start:1}.xl\:mt-16{margin-top:4rem}.xl\:mt-0{margin-top:0}.xl\:grid{display:grid}.xl\:h-full{height:100%}.xl\:w-32{width:8rem}.xl\:grid-flow-col-dense{grid-auto-flow:column dense}.xl\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.xl\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.xl\:gap-8{gap:2rem}.xl\:gap-x-8{-moz-column-gap:2rem;column-gap:2rem}.xl\:bg-gradient-to-r{background-image:linear-gradient(to right,var(--tw-gradient-stops))}.xl\:pb-14{padding-bottom:3.5rem}.xl\:pb-24{padding-bottom:6rem}.xl\:text-base{font-size:1rem;line-height:1.5rem}.xl\:text-4xl{font-size:2.25rem;line-height:2.5rem}.xl\:text-3xl{font-size:1.875rem;line-height:2.25rem}.xl\:text-xl{font-size:1.25rem;line-height:1.75rem}} diff --git a/public/js/app.js b/public/js/app.js index 3b6ac492..b9dac889 100755 --- a/public/js/app.js +++ b/public/js/app.js @@ -1,69144 +1,2 @@ -/******/ (() => { // webpackBootstrap -/******/ var __webpack_modules__ = ({ - -/***/ "./node_modules/@alpinejs/intersect/dist/module.esm.js": -/*!*************************************************************!*\ - !*** ./node_modules/@alpinejs/intersect/dist/module.esm.js ***! - \*************************************************************/ -/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony export */ __webpack_require__.d(__webpack_exports__, { -/* harmony export */ "default": () => (/* binding */ module_default) -/* harmony export */ }); -// packages/intersect/src/index.js -function src_default(Alpine) { - Alpine.directive("intersect", (el, {value, expression, modifiers}, {evaluateLater, cleanup}) => { - let evaluate = evaluateLater(expression); - let options = { - threshold: getThreshhold(modifiers) - }; - let observer = new IntersectionObserver((entries) => { - entries.forEach((entry) => { - if (!entry.isIntersecting && value === "enter" || entry.isIntersecting && value === "leave" || entry.intersectionRatio === 0 && !value) - return; - evaluate(); - modifiers.includes("once") && observer.disconnect(); - }); - }, options); - observer.observe(el); - cleanup(() => { - observer.disconnect(); - }); - }); -} -function getThreshhold(modifiers) { - if (modifiers.includes("full")) - return 0.99; - if (modifiers.includes("half")) - return 0.5; - return 0; -} - -// packages/intersect/builds/module.js -var module_default = src_default; - - - -/***/ }), - -/***/ "./node_modules/alpinejs/dist/module.esm.js": -/*!**************************************************!*\ - !*** ./node_modules/alpinejs/dist/module.esm.js ***! - \**************************************************/ -/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony export */ __webpack_require__.d(__webpack_exports__, { -/* harmony export */ "default": () => (/* binding */ module_default) -/* harmony export */ }); -var __create = Object.create; -var __defProp = Object.defineProperty; -var __getProtoOf = Object.getPrototypeOf; -var __hasOwnProp = Object.prototype.hasOwnProperty; -var __getOwnPropNames = Object.getOwnPropertyNames; -var __getOwnPropDesc = Object.getOwnPropertyDescriptor; -var __markAsModule = (target) => __defProp(target, "__esModule", {value: true}); -var __commonJS = (callback, module) => () => { - if (!module) { - module = {exports: {}}; - callback(module.exports, module); - } - return module.exports; -}; -var __exportStar = (target, module, desc) => { - if (module && typeof module === "object" || typeof module === "function") { - for (let key of __getOwnPropNames(module)) - if (!__hasOwnProp.call(target, key) && key !== "default") - __defProp(target, key, {get: () => module[key], enumerable: !(desc = __getOwnPropDesc(module, key)) || desc.enumerable}); - } - return target; -}; -var __toModule = (module) => { - return __exportStar(__markAsModule(__defProp(module != null ? __create(__getProtoOf(module)) : {}, "default", module && module.__esModule && "default" in module ? {get: () => module.default, enumerable: true} : {value: module, enumerable: true})), module); -}; - -// node_modules/@vue/shared/dist/shared.cjs.js -var require_shared_cjs = __commonJS((exports) => { - "use strict"; - Object.defineProperty(exports, "__esModule", {value: true}); - function makeMap(str, expectsLowerCase) { - const map = Object.create(null); - const list = str.split(","); - for (let i = 0; i < list.length; i++) { - map[list[i]] = true; - } - return expectsLowerCase ? (val) => !!map[val.toLowerCase()] : (val) => !!map[val]; - } - var PatchFlagNames = { - [1]: `TEXT`, - [2]: `CLASS`, - [4]: `STYLE`, - [8]: `PROPS`, - [16]: `FULL_PROPS`, - [32]: `HYDRATE_EVENTS`, - [64]: `STABLE_FRAGMENT`, - [128]: `KEYED_FRAGMENT`, - [256]: `UNKEYED_FRAGMENT`, - [512]: `NEED_PATCH`, - [1024]: `DYNAMIC_SLOTS`, - [2048]: `DEV_ROOT_FRAGMENT`, - [-1]: `HOISTED`, - [-2]: `BAIL` - }; - var slotFlagsText = { - [1]: "STABLE", - [2]: "DYNAMIC", - [3]: "FORWARDED" - }; - var GLOBALS_WHITE_LISTED = "Infinity,undefined,NaN,isFinite,isNaN,parseFloat,parseInt,decodeURI,decodeURIComponent,encodeURI,encodeURIComponent,Math,Number,Date,Array,Object,Boolean,String,RegExp,Map,Set,JSON,Intl,BigInt"; - var isGloballyWhitelisted = /* @__PURE__ */ makeMap(GLOBALS_WHITE_LISTED); - var range = 2; - function generateCodeFrame(source, start2 = 0, end = source.length) { - const lines = source.split(/\r?\n/); - let count = 0; - const res = []; - for (let i = 0; i < lines.length; i++) { - count += lines[i].length + 1; - if (count >= start2) { - for (let j = i - range; j <= i + range || end > count; j++) { - if (j < 0 || j >= lines.length) - continue; - const line = j + 1; - res.push(`${line}${" ".repeat(Math.max(3 - String(line).length, 0))}| ${lines[j]}`); - const lineLength = lines[j].length; - if (j === i) { - const pad = start2 - (count - lineLength) + 1; - const length = Math.max(1, end > count ? lineLength - pad : end - start2); - res.push(` | ` + " ".repeat(pad) + "^".repeat(length)); - } else if (j > i) { - if (end > count) { - const length = Math.max(Math.min(end - count, lineLength), 1); - res.push(` | ` + "^".repeat(length)); - } - count += lineLength + 1; - } - } - break; - } - } - return res.join("\n"); - } - var specialBooleanAttrs = `itemscope,allowfullscreen,formnovalidate,ismap,nomodule,novalidate,readonly`; - var isSpecialBooleanAttr = /* @__PURE__ */ makeMap(specialBooleanAttrs); - var isBooleanAttr2 = /* @__PURE__ */ makeMap(specialBooleanAttrs + `,async,autofocus,autoplay,controls,default,defer,disabled,hidden,loop,open,required,reversed,scoped,seamless,checked,muted,multiple,selected`); - var unsafeAttrCharRE = /[>/="'\u0009\u000a\u000c\u0020]/; - var attrValidationCache = {}; - function isSSRSafeAttrName(name) { - if (attrValidationCache.hasOwnProperty(name)) { - return attrValidationCache[name]; - } - const isUnsafe = unsafeAttrCharRE.test(name); - if (isUnsafe) { - console.error(`unsafe attribute name: ${name}`); - } - return attrValidationCache[name] = !isUnsafe; - } - var propsToAttrMap = { - acceptCharset: "accept-charset", - className: "class", - htmlFor: "for", - httpEquiv: "http-equiv" - }; - var isNoUnitNumericStyleProp = /* @__PURE__ */ makeMap(`animation-iteration-count,border-image-outset,border-image-slice,border-image-width,box-flex,box-flex-group,box-ordinal-group,column-count,columns,flex,flex-grow,flex-positive,flex-shrink,flex-negative,flex-order,grid-row,grid-row-end,grid-row-span,grid-row-start,grid-column,grid-column-end,grid-column-span,grid-column-start,font-weight,line-clamp,line-height,opacity,order,orphans,tab-size,widows,z-index,zoom,fill-opacity,flood-opacity,stop-opacity,stroke-dasharray,stroke-dashoffset,stroke-miterlimit,stroke-opacity,stroke-width`); - var isKnownAttr = /* @__PURE__ */ makeMap(`accept,accept-charset,accesskey,action,align,allow,alt,async,autocapitalize,autocomplete,autofocus,autoplay,background,bgcolor,border,buffered,capture,challenge,charset,checked,cite,class,code,codebase,color,cols,colspan,content,contenteditable,contextmenu,controls,coords,crossorigin,csp,data,datetime,decoding,default,defer,dir,dirname,disabled,download,draggable,dropzone,enctype,enterkeyhint,for,form,formaction,formenctype,formmethod,formnovalidate,formtarget,headers,height,hidden,high,href,hreflang,http-equiv,icon,id,importance,integrity,ismap,itemprop,keytype,kind,label,lang,language,loading,list,loop,low,manifest,max,maxlength,minlength,media,min,multiple,muted,name,novalidate,open,optimum,pattern,ping,placeholder,poster,preload,radiogroup,readonly,referrerpolicy,rel,required,reversed,rows,rowspan,sandbox,scope,scoped,selected,shape,size,sizes,slot,span,spellcheck,src,srcdoc,srclang,srcset,start,step,style,summary,tabindex,target,title,translate,type,usemap,value,width,wrap`); - function normalizeStyle(value) { - if (isArray(value)) { - const res = {}; - for (let i = 0; i < value.length; i++) { - const item = value[i]; - const normalized = normalizeStyle(isString(item) ? parseStringStyle(item) : item); - if (normalized) { - for (const key in normalized) { - res[key] = normalized[key]; - } - } - } - return res; - } else if (isObject(value)) { - return value; - } - } - var listDelimiterRE = /;(?![^(]*\))/g; - var propertyDelimiterRE = /:(.+)/; - function parseStringStyle(cssText) { - const ret = {}; - cssText.split(listDelimiterRE).forEach((item) => { - if (item) { - const tmp = item.split(propertyDelimiterRE); - tmp.length > 1 && (ret[tmp[0].trim()] = tmp[1].trim()); - } - }); - return ret; - } - function stringifyStyle(styles) { - let ret = ""; - if (!styles) { - return ret; - } - for (const key in styles) { - const value = styles[key]; - const normalizedKey = key.startsWith(`--`) ? key : hyphenate(key); - if (isString(value) || typeof value === "number" && isNoUnitNumericStyleProp(normalizedKey)) { - ret += `${normalizedKey}:${value};`; - } - } - return ret; - } - function normalizeClass(value) { - let res = ""; - if (isString(value)) { - res = value; - } else if (isArray(value)) { - for (let i = 0; i < value.length; i++) { - const normalized = normalizeClass(value[i]); - if (normalized) { - res += normalized + " "; - } - } - } else if (isObject(value)) { - for (const name in value) { - if (value[name]) { - res += name + " "; - } - } - } - return res.trim(); - } - var HTML_TAGS = "html,body,base,head,link,meta,style,title,address,article,aside,footer,header,h1,h2,h3,h4,h5,h6,hgroup,nav,section,div,dd,dl,dt,figcaption,figure,picture,hr,img,li,main,ol,p,pre,ul,a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,rtc,ruby,s,samp,small,span,strong,sub,sup,time,u,var,wbr,area,audio,map,track,video,embed,object,param,source,canvas,script,noscript,del,ins,caption,col,colgroup,table,thead,tbody,td,th,tr,button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,output,progress,select,textarea,details,dialog,menu,summary,template,blockquote,iframe,tfoot"; - var SVG_TAGS = "svg,animate,animateMotion,animateTransform,circle,clipPath,color-profile,defs,desc,discard,ellipse,feBlend,feColorMatrix,feComponentTransfer,feComposite,feConvolveMatrix,feDiffuseLighting,feDisplacementMap,feDistanceLight,feDropShadow,feFlood,feFuncA,feFuncB,feFuncG,feFuncR,feGaussianBlur,feImage,feMerge,feMergeNode,feMorphology,feOffset,fePointLight,feSpecularLighting,feSpotLight,feTile,feTurbulence,filter,foreignObject,g,hatch,hatchpath,image,line,linearGradient,marker,mask,mesh,meshgradient,meshpatch,meshrow,metadata,mpath,path,pattern,polygon,polyline,radialGradient,rect,set,solidcolor,stop,switch,symbol,text,textPath,title,tspan,unknown,use,view"; - var VOID_TAGS = "area,base,br,col,embed,hr,img,input,link,meta,param,source,track,wbr"; - var isHTMLTag = /* @__PURE__ */ makeMap(HTML_TAGS); - var isSVGTag = /* @__PURE__ */ makeMap(SVG_TAGS); - var isVoidTag = /* @__PURE__ */ makeMap(VOID_TAGS); - var escapeRE = /["'&<>]/; - function escapeHtml(string) { - const str = "" + string; - const match = escapeRE.exec(str); - if (!match) { - return str; - } - let html = ""; - let escaped; - let index; - let lastIndex = 0; - for (index = match.index; index < str.length; index++) { - switch (str.charCodeAt(index)) { - case 34: - escaped = """; - break; - case 38: - escaped = "&"; - break; - case 39: - escaped = "'"; - break; - case 60: - escaped = "<"; - break; - case 62: - escaped = ">"; - break; - default: - continue; - } - if (lastIndex !== index) { - html += str.substring(lastIndex, index); - } - lastIndex = index + 1; - html += escaped; - } - return lastIndex !== index ? html + str.substring(lastIndex, index) : html; - } - var commentStripRE = /^-?>||--!>| looseEqual(item, val)); - } - var toDisplayString = (val) => { - return val == null ? "" : isObject(val) ? JSON.stringify(val, replacer, 2) : String(val); - }; - var replacer = (_key, val) => { - if (isMap(val)) { - return { - [`Map(${val.size})`]: [...val.entries()].reduce((entries, [key, val2]) => { - entries[`${key} =>`] = val2; - return entries; - }, {}) - }; - } else if (isSet(val)) { - return { - [`Set(${val.size})`]: [...val.values()] - }; - } else if (isObject(val) && !isArray(val) && !isPlainObject(val)) { - return String(val); - } - return val; - }; - var babelParserDefaultPlugins = [ - "bigInt", - "optionalChaining", - "nullishCoalescingOperator" - ]; - var EMPTY_OBJ = Object.freeze({}); - var EMPTY_ARR = Object.freeze([]); - var NOOP = () => { - }; - var NO = () => false; - var onRE = /^on[^a-z]/; - var isOn = (key) => onRE.test(key); - var isModelListener = (key) => key.startsWith("onUpdate:"); - var extend = Object.assign; - var remove = (arr, el) => { - const i = arr.indexOf(el); - if (i > -1) { - arr.splice(i, 1); - } - }; - var hasOwnProperty = Object.prototype.hasOwnProperty; - var hasOwn = (val, key) => hasOwnProperty.call(val, key); - var isArray = Array.isArray; - var isMap = (val) => toTypeString(val) === "[object Map]"; - var isSet = (val) => toTypeString(val) === "[object Set]"; - var isDate = (val) => val instanceof Date; - var isFunction = (val) => typeof val === "function"; - var isString = (val) => typeof val === "string"; - var isSymbol = (val) => typeof val === "symbol"; - var isObject = (val) => val !== null && typeof val === "object"; - var isPromise = (val) => { - return isObject(val) && isFunction(val.then) && isFunction(val.catch); - }; - var objectToString = Object.prototype.toString; - var toTypeString = (value) => objectToString.call(value); - var toRawType = (value) => { - return toTypeString(value).slice(8, -1); - }; - var isPlainObject = (val) => toTypeString(val) === "[object Object]"; - var isIntegerKey = (key) => isString(key) && key !== "NaN" && key[0] !== "-" && "" + parseInt(key, 10) === key; - var isReservedProp = /* @__PURE__ */ makeMap(",key,ref,onVnodeBeforeMount,onVnodeMounted,onVnodeBeforeUpdate,onVnodeUpdated,onVnodeBeforeUnmount,onVnodeUnmounted"); - var cacheStringFunction = (fn) => { - const cache = Object.create(null); - return (str) => { - const hit = cache[str]; - return hit || (cache[str] = fn(str)); - }; - }; - var camelizeRE = /-(\w)/g; - var camelize = cacheStringFunction((str) => { - return str.replace(camelizeRE, (_, c) => c ? c.toUpperCase() : ""); - }); - var hyphenateRE = /\B([A-Z])/g; - var hyphenate = cacheStringFunction((str) => str.replace(hyphenateRE, "-$1").toLowerCase()); - var capitalize = cacheStringFunction((str) => str.charAt(0).toUpperCase() + str.slice(1)); - var toHandlerKey = cacheStringFunction((str) => str ? `on${capitalize(str)}` : ``); - var hasChanged = (value, oldValue) => value !== oldValue && (value === value || oldValue === oldValue); - var invokeArrayFns = (fns, arg) => { - for (let i = 0; i < fns.length; i++) { - fns[i](arg); - } - }; - var def = (obj, key, value) => { - Object.defineProperty(obj, key, { - configurable: true, - enumerable: false, - value - }); - }; - var toNumber = (val) => { - const n = parseFloat(val); - return isNaN(n) ? val : n; - }; - var _globalThis; - var getGlobalThis = () => { - return _globalThis || (_globalThis = typeof globalThis !== "undefined" ? globalThis : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : typeof __webpack_require__.g !== "undefined" ? __webpack_require__.g : {}); - }; - exports.EMPTY_ARR = EMPTY_ARR; - exports.EMPTY_OBJ = EMPTY_OBJ; - exports.NO = NO; - exports.NOOP = NOOP; - exports.PatchFlagNames = PatchFlagNames; - exports.babelParserDefaultPlugins = babelParserDefaultPlugins; - exports.camelize = camelize; - exports.capitalize = capitalize; - exports.def = def; - exports.escapeHtml = escapeHtml; - exports.escapeHtmlComment = escapeHtmlComment; - exports.extend = extend; - exports.generateCodeFrame = generateCodeFrame; - exports.getGlobalThis = getGlobalThis; - exports.hasChanged = hasChanged; - exports.hasOwn = hasOwn; - exports.hyphenate = hyphenate; - exports.invokeArrayFns = invokeArrayFns; - exports.isArray = isArray; - exports.isBooleanAttr = isBooleanAttr2; - exports.isDate = isDate; - exports.isFunction = isFunction; - exports.isGloballyWhitelisted = isGloballyWhitelisted; - exports.isHTMLTag = isHTMLTag; - exports.isIntegerKey = isIntegerKey; - exports.isKnownAttr = isKnownAttr; - exports.isMap = isMap; - exports.isModelListener = isModelListener; - exports.isNoUnitNumericStyleProp = isNoUnitNumericStyleProp; - exports.isObject = isObject; - exports.isOn = isOn; - exports.isPlainObject = isPlainObject; - exports.isPromise = isPromise; - exports.isReservedProp = isReservedProp; - exports.isSSRSafeAttrName = isSSRSafeAttrName; - exports.isSVGTag = isSVGTag; - exports.isSet = isSet; - exports.isSpecialBooleanAttr = isSpecialBooleanAttr; - exports.isString = isString; - exports.isSymbol = isSymbol; - exports.isVoidTag = isVoidTag; - exports.looseEqual = looseEqual; - exports.looseIndexOf = looseIndexOf; - exports.makeMap = makeMap; - exports.normalizeClass = normalizeClass; - exports.normalizeStyle = normalizeStyle; - exports.objectToString = objectToString; - exports.parseStringStyle = parseStringStyle; - exports.propsToAttrMap = propsToAttrMap; - exports.remove = remove; - exports.slotFlagsText = slotFlagsText; - exports.stringifyStyle = stringifyStyle; - exports.toDisplayString = toDisplayString; - exports.toHandlerKey = toHandlerKey; - exports.toNumber = toNumber; - exports.toRawType = toRawType; - exports.toTypeString = toTypeString; -}); - -// node_modules/@vue/shared/index.js -var require_shared = __commonJS((exports, module) => { - "use strict"; - if (false) {} else { - module.exports = require_shared_cjs(); - } -}); - -// node_modules/@vue/reactivity/dist/reactivity.cjs.js -var require_reactivity_cjs = __commonJS((exports) => { - "use strict"; - Object.defineProperty(exports, "__esModule", {value: true}); - var shared = require_shared(); - var targetMap = new WeakMap(); - var effectStack = []; - var activeEffect; - var ITERATE_KEY = Symbol("iterate"); - var MAP_KEY_ITERATE_KEY = Symbol("Map key iterate"); - function isEffect(fn) { - return fn && fn._isEffect === true; - } - function effect3(fn, options = shared.EMPTY_OBJ) { - if (isEffect(fn)) { - fn = fn.raw; - } - const effect4 = createReactiveEffect(fn, options); - if (!options.lazy) { - effect4(); - } - return effect4; - } - function stop2(effect4) { - if (effect4.active) { - cleanup(effect4); - if (effect4.options.onStop) { - effect4.options.onStop(); - } - effect4.active = false; - } - } - var uid = 0; - function createReactiveEffect(fn, options) { - const effect4 = function reactiveEffect() { - if (!effect4.active) { - return fn(); - } - if (!effectStack.includes(effect4)) { - cleanup(effect4); - try { - enableTracking(); - effectStack.push(effect4); - activeEffect = effect4; - return fn(); - } finally { - effectStack.pop(); - resetTracking(); - activeEffect = effectStack[effectStack.length - 1]; - } - } - }; - effect4.id = uid++; - effect4.allowRecurse = !!options.allowRecurse; - effect4._isEffect = true; - effect4.active = true; - effect4.raw = fn; - effect4.deps = []; - effect4.options = options; - return effect4; - } - function cleanup(effect4) { - const {deps} = effect4; - if (deps.length) { - for (let i = 0; i < deps.length; i++) { - deps[i].delete(effect4); - } - deps.length = 0; - } - } - var shouldTrack = true; - var trackStack = []; - function pauseTracking() { - trackStack.push(shouldTrack); - shouldTrack = false; - } - function enableTracking() { - trackStack.push(shouldTrack); - shouldTrack = true; - } - function resetTracking() { - const last = trackStack.pop(); - shouldTrack = last === void 0 ? true : last; - } - function track(target, type, key) { - if (!shouldTrack || activeEffect === void 0) { - return; - } - let depsMap = targetMap.get(target); - if (!depsMap) { - targetMap.set(target, depsMap = new Map()); - } - let dep = depsMap.get(key); - if (!dep) { - depsMap.set(key, dep = new Set()); - } - if (!dep.has(activeEffect)) { - dep.add(activeEffect); - activeEffect.deps.push(dep); - if (activeEffect.options.onTrack) { - activeEffect.options.onTrack({ - effect: activeEffect, - target, - type, - key - }); - } - } - } - function trigger(target, type, key, newValue, oldValue, oldTarget) { - const depsMap = targetMap.get(target); - if (!depsMap) { - return; - } - const effects = new Set(); - const add2 = (effectsToAdd) => { - if (effectsToAdd) { - effectsToAdd.forEach((effect4) => { - if (effect4 !== activeEffect || effect4.allowRecurse) { - effects.add(effect4); - } - }); - } - }; - if (type === "clear") { - depsMap.forEach(add2); - } else if (key === "length" && shared.isArray(target)) { - depsMap.forEach((dep, key2) => { - if (key2 === "length" || key2 >= newValue) { - add2(dep); - } - }); - } else { - if (key !== void 0) { - add2(depsMap.get(key)); - } - switch (type) { - case "add": - if (!shared.isArray(target)) { - add2(depsMap.get(ITERATE_KEY)); - if (shared.isMap(target)) { - add2(depsMap.get(MAP_KEY_ITERATE_KEY)); - } - } else if (shared.isIntegerKey(key)) { - add2(depsMap.get("length")); - } - break; - case "delete": - if (!shared.isArray(target)) { - add2(depsMap.get(ITERATE_KEY)); - if (shared.isMap(target)) { - add2(depsMap.get(MAP_KEY_ITERATE_KEY)); - } - } - break; - case "set": - if (shared.isMap(target)) { - add2(depsMap.get(ITERATE_KEY)); - } - break; - } - } - const run = (effect4) => { - if (effect4.options.onTrigger) { - effect4.options.onTrigger({ - effect: effect4, - target, - key, - type, - newValue, - oldValue, - oldTarget - }); - } - if (effect4.options.scheduler) { - effect4.options.scheduler(effect4); - } else { - effect4(); - } - }; - effects.forEach(run); - } - var isNonTrackableKeys = /* @__PURE__ */ shared.makeMap(`__proto__,__v_isRef,__isVue`); - var builtInSymbols = new Set(Object.getOwnPropertyNames(Symbol).map((key) => Symbol[key]).filter(shared.isSymbol)); - var get2 = /* @__PURE__ */ createGetter(); - var shallowGet = /* @__PURE__ */ createGetter(false, true); - var readonlyGet = /* @__PURE__ */ createGetter(true); - var shallowReadonlyGet = /* @__PURE__ */ createGetter(true, true); - var arrayInstrumentations = {}; - ["includes", "indexOf", "lastIndexOf"].forEach((key) => { - const method = Array.prototype[key]; - arrayInstrumentations[key] = function(...args) { - const arr = toRaw2(this); - for (let i = 0, l = this.length; i < l; i++) { - track(arr, "get", i + ""); - } - const res = method.apply(arr, args); - if (res === -1 || res === false) { - return method.apply(arr, args.map(toRaw2)); - } else { - return res; - } - }; - }); - ["push", "pop", "shift", "unshift", "splice"].forEach((key) => { - const method = Array.prototype[key]; - arrayInstrumentations[key] = function(...args) { - pauseTracking(); - const res = method.apply(this, args); - resetTracking(); - return res; - }; - }); - function createGetter(isReadonly2 = false, shallow = false) { - return function get3(target, key, receiver) { - if (key === "__v_isReactive") { - return !isReadonly2; - } else if (key === "__v_isReadonly") { - return isReadonly2; - } else if (key === "__v_raw" && receiver === (isReadonly2 ? shallow ? shallowReadonlyMap : readonlyMap : shallow ? shallowReactiveMap : reactiveMap).get(target)) { - return target; - } - const targetIsArray = shared.isArray(target); - if (!isReadonly2 && targetIsArray && shared.hasOwn(arrayInstrumentations, key)) { - return Reflect.get(arrayInstrumentations, key, receiver); - } - const res = Reflect.get(target, key, receiver); - if (shared.isSymbol(key) ? builtInSymbols.has(key) : isNonTrackableKeys(key)) { - return res; - } - if (!isReadonly2) { - track(target, "get", key); - } - if (shallow) { - return res; - } - if (isRef(res)) { - const shouldUnwrap = !targetIsArray || !shared.isIntegerKey(key); - return shouldUnwrap ? res.value : res; - } - if (shared.isObject(res)) { - return isReadonly2 ? readonly(res) : reactive3(res); - } - return res; - }; - } - var set2 = /* @__PURE__ */ createSetter(); - var shallowSet = /* @__PURE__ */ createSetter(true); - function createSetter(shallow = false) { - return function set3(target, key, value, receiver) { - let oldValue = target[key]; - if (!shallow) { - value = toRaw2(value); - oldValue = toRaw2(oldValue); - if (!shared.isArray(target) && isRef(oldValue) && !isRef(value)) { - oldValue.value = value; - return true; - } - } - const hadKey = shared.isArray(target) && shared.isIntegerKey(key) ? Number(key) < target.length : shared.hasOwn(target, key); - const result = Reflect.set(target, key, value, receiver); - if (target === toRaw2(receiver)) { - if (!hadKey) { - trigger(target, "add", key, value); - } else if (shared.hasChanged(value, oldValue)) { - trigger(target, "set", key, value, oldValue); - } - } - return result; - }; - } - function deleteProperty(target, key) { - const hadKey = shared.hasOwn(target, key); - const oldValue = target[key]; - const result = Reflect.deleteProperty(target, key); - if (result && hadKey) { - trigger(target, "delete", key, void 0, oldValue); - } - return result; - } - function has(target, key) { - const result = Reflect.has(target, key); - if (!shared.isSymbol(key) || !builtInSymbols.has(key)) { - track(target, "has", key); - } - return result; - } - function ownKeys(target) { - track(target, "iterate", shared.isArray(target) ? "length" : ITERATE_KEY); - return Reflect.ownKeys(target); - } - var mutableHandlers = { - get: get2, - set: set2, - deleteProperty, - has, - ownKeys - }; - var readonlyHandlers = { - get: readonlyGet, - set(target, key) { - { - console.warn(`Set operation on key "${String(key)}" failed: target is readonly.`, target); - } - return true; - }, - deleteProperty(target, key) { - { - console.warn(`Delete operation on key "${String(key)}" failed: target is readonly.`, target); - } - return true; - } - }; - var shallowReactiveHandlers = shared.extend({}, mutableHandlers, { - get: shallowGet, - set: shallowSet - }); - var shallowReadonlyHandlers = shared.extend({}, readonlyHandlers, { - get: shallowReadonlyGet - }); - var toReactive = (value) => shared.isObject(value) ? reactive3(value) : value; - var toReadonly = (value) => shared.isObject(value) ? readonly(value) : value; - var toShallow = (value) => value; - var getProto = (v) => Reflect.getPrototypeOf(v); - function get$1(target, key, isReadonly2 = false, isShallow = false) { - target = target["__v_raw"]; - const rawTarget = toRaw2(target); - const rawKey = toRaw2(key); - if (key !== rawKey) { - !isReadonly2 && track(rawTarget, "get", key); - } - !isReadonly2 && track(rawTarget, "get", rawKey); - const {has: has2} = getProto(rawTarget); - const wrap = isShallow ? toShallow : isReadonly2 ? toReadonly : toReactive; - if (has2.call(rawTarget, key)) { - return wrap(target.get(key)); - } else if (has2.call(rawTarget, rawKey)) { - return wrap(target.get(rawKey)); - } else if (target !== rawTarget) { - target.get(key); - } - } - function has$1(key, isReadonly2 = false) { - const target = this["__v_raw"]; - const rawTarget = toRaw2(target); - const rawKey = toRaw2(key); - if (key !== rawKey) { - !isReadonly2 && track(rawTarget, "has", key); - } - !isReadonly2 && track(rawTarget, "has", rawKey); - return key === rawKey ? target.has(key) : target.has(key) || target.has(rawKey); - } - function size(target, isReadonly2 = false) { - target = target["__v_raw"]; - !isReadonly2 && track(toRaw2(target), "iterate", ITERATE_KEY); - return Reflect.get(target, "size", target); - } - function add(value) { - value = toRaw2(value); - const target = toRaw2(this); - const proto = getProto(target); - const hadKey = proto.has.call(target, value); - if (!hadKey) { - target.add(value); - trigger(target, "add", value, value); - } - return this; - } - function set$1(key, value) { - value = toRaw2(value); - const target = toRaw2(this); - const {has: has2, get: get3} = getProto(target); - let hadKey = has2.call(target, key); - if (!hadKey) { - key = toRaw2(key); - hadKey = has2.call(target, key); - } else { - checkIdentityKeys(target, has2, key); - } - const oldValue = get3.call(target, key); - target.set(key, value); - if (!hadKey) { - trigger(target, "add", key, value); - } else if (shared.hasChanged(value, oldValue)) { - trigger(target, "set", key, value, oldValue); - } - return this; - } - function deleteEntry(key) { - const target = toRaw2(this); - const {has: has2, get: get3} = getProto(target); - let hadKey = has2.call(target, key); - if (!hadKey) { - key = toRaw2(key); - hadKey = has2.call(target, key); - } else { - checkIdentityKeys(target, has2, key); - } - const oldValue = get3 ? get3.call(target, key) : void 0; - const result = target.delete(key); - if (hadKey) { - trigger(target, "delete", key, void 0, oldValue); - } - return result; - } - function clear() { - const target = toRaw2(this); - const hadItems = target.size !== 0; - const oldTarget = shared.isMap(target) ? new Map(target) : new Set(target); - const result = target.clear(); - if (hadItems) { - trigger(target, "clear", void 0, void 0, oldTarget); - } - return result; - } - function createForEach(isReadonly2, isShallow) { - return function forEach(callback, thisArg) { - const observed = this; - const target = observed["__v_raw"]; - const rawTarget = toRaw2(target); - const wrap = isShallow ? toShallow : isReadonly2 ? toReadonly : toReactive; - !isReadonly2 && track(rawTarget, "iterate", ITERATE_KEY); - return target.forEach((value, key) => { - return callback.call(thisArg, wrap(value), wrap(key), observed); - }); - }; - } - function createIterableMethod(method, isReadonly2, isShallow) { - return function(...args) { - const target = this["__v_raw"]; - const rawTarget = toRaw2(target); - const targetIsMap = shared.isMap(rawTarget); - const isPair = method === "entries" || method === Symbol.iterator && targetIsMap; - const isKeyOnly = method === "keys" && targetIsMap; - const innerIterator = target[method](...args); - const wrap = isShallow ? toShallow : isReadonly2 ? toReadonly : toReactive; - !isReadonly2 && track(rawTarget, "iterate", isKeyOnly ? MAP_KEY_ITERATE_KEY : ITERATE_KEY); - return { - next() { - const {value, done} = innerIterator.next(); - return done ? {value, done} : { - value: isPair ? [wrap(value[0]), wrap(value[1])] : wrap(value), - done - }; - }, - [Symbol.iterator]() { - return this; - } - }; - }; - } - function createReadonlyMethod(type) { - return function(...args) { - { - const key = args[0] ? `on key "${args[0]}" ` : ``; - console.warn(`${shared.capitalize(type)} operation ${key}failed: target is readonly.`, toRaw2(this)); - } - return type === "delete" ? false : this; - }; - } - var mutableInstrumentations = { - get(key) { - return get$1(this, key); - }, - get size() { - return size(this); - }, - has: has$1, - add, - set: set$1, - delete: deleteEntry, - clear, - forEach: createForEach(false, false) - }; - var shallowInstrumentations = { - get(key) { - return get$1(this, key, false, true); - }, - get size() { - return size(this); - }, - has: has$1, - add, - set: set$1, - delete: deleteEntry, - clear, - forEach: createForEach(false, true) - }; - var readonlyInstrumentations = { - get(key) { - return get$1(this, key, true); - }, - get size() { - return size(this, true); - }, - has(key) { - return has$1.call(this, key, true); - }, - add: createReadonlyMethod("add"), - set: createReadonlyMethod("set"), - delete: createReadonlyMethod("delete"), - clear: createReadonlyMethod("clear"), - forEach: createForEach(true, false) - }; - var shallowReadonlyInstrumentations = { - get(key) { - return get$1(this, key, true, true); - }, - get size() { - return size(this, true); - }, - has(key) { - return has$1.call(this, key, true); - }, - add: createReadonlyMethod("add"), - set: createReadonlyMethod("set"), - delete: createReadonlyMethod("delete"), - clear: createReadonlyMethod("clear"), - forEach: createForEach(true, true) - }; - var iteratorMethods = ["keys", "values", "entries", Symbol.iterator]; - iteratorMethods.forEach((method) => { - mutableInstrumentations[method] = createIterableMethod(method, false, false); - readonlyInstrumentations[method] = createIterableMethod(method, true, false); - shallowInstrumentations[method] = createIterableMethod(method, false, true); - shallowReadonlyInstrumentations[method] = createIterableMethod(method, true, true); - }); - function createInstrumentationGetter(isReadonly2, shallow) { - const instrumentations = shallow ? isReadonly2 ? shallowReadonlyInstrumentations : shallowInstrumentations : isReadonly2 ? readonlyInstrumentations : mutableInstrumentations; - return (target, key, receiver) => { - if (key === "__v_isReactive") { - return !isReadonly2; - } else if (key === "__v_isReadonly") { - return isReadonly2; - } else if (key === "__v_raw") { - return target; - } - return Reflect.get(shared.hasOwn(instrumentations, key) && key in target ? instrumentations : target, key, receiver); - }; - } - var mutableCollectionHandlers = { - get: createInstrumentationGetter(false, false) - }; - var shallowCollectionHandlers = { - get: createInstrumentationGetter(false, true) - }; - var readonlyCollectionHandlers = { - get: createInstrumentationGetter(true, false) - }; - var shallowReadonlyCollectionHandlers = { - get: createInstrumentationGetter(true, true) - }; - function checkIdentityKeys(target, has2, key) { - const rawKey = toRaw2(key); - if (rawKey !== key && has2.call(target, rawKey)) { - const type = shared.toRawType(target); - console.warn(`Reactive ${type} contains both the raw and reactive versions of the same object${type === `Map` ? ` as keys` : ``}, which can lead to inconsistencies. Avoid differentiating between the raw and reactive versions of an object and only use the reactive version if possible.`); - } - } - var reactiveMap = new WeakMap(); - var shallowReactiveMap = new WeakMap(); - var readonlyMap = new WeakMap(); - var shallowReadonlyMap = new WeakMap(); - function targetTypeMap(rawType) { - switch (rawType) { - case "Object": - case "Array": - return 1; - case "Map": - case "Set": - case "WeakMap": - case "WeakSet": - return 2; - default: - return 0; - } - } - function getTargetType(value) { - return value["__v_skip"] || !Object.isExtensible(value) ? 0 : targetTypeMap(shared.toRawType(value)); - } - function reactive3(target) { - if (target && target["__v_isReadonly"]) { - return target; - } - return createReactiveObject(target, false, mutableHandlers, mutableCollectionHandlers, reactiveMap); - } - function shallowReactive(target) { - return createReactiveObject(target, false, shallowReactiveHandlers, shallowCollectionHandlers, shallowReactiveMap); - } - function readonly(target) { - return createReactiveObject(target, true, readonlyHandlers, readonlyCollectionHandlers, readonlyMap); - } - function shallowReadonly(target) { - return createReactiveObject(target, true, shallowReadonlyHandlers, shallowReadonlyCollectionHandlers, shallowReadonlyMap); - } - function createReactiveObject(target, isReadonly2, baseHandlers, collectionHandlers, proxyMap) { - if (!shared.isObject(target)) { - { - console.warn(`value cannot be made reactive: ${String(target)}`); - } - return target; - } - if (target["__v_raw"] && !(isReadonly2 && target["__v_isReactive"])) { - return target; - } - const existingProxy = proxyMap.get(target); - if (existingProxy) { - return existingProxy; - } - const targetType = getTargetType(target); - if (targetType === 0) { - return target; - } - const proxy = new Proxy(target, targetType === 2 ? collectionHandlers : baseHandlers); - proxyMap.set(target, proxy); - return proxy; - } - function isReactive2(value) { - if (isReadonly(value)) { - return isReactive2(value["__v_raw"]); - } - return !!(value && value["__v_isReactive"]); - } - function isReadonly(value) { - return !!(value && value["__v_isReadonly"]); - } - function isProxy(value) { - return isReactive2(value) || isReadonly(value); - } - function toRaw2(observed) { - return observed && toRaw2(observed["__v_raw"]) || observed; - } - function markRaw(value) { - shared.def(value, "__v_skip", true); - return value; - } - var convert = (val) => shared.isObject(val) ? reactive3(val) : val; - function isRef(r) { - return Boolean(r && r.__v_isRef === true); - } - function ref(value) { - return createRef(value); - } - function shallowRef(value) { - return createRef(value, true); - } - var RefImpl = class { - constructor(_rawValue, _shallow = false) { - this._rawValue = _rawValue; - this._shallow = _shallow; - this.__v_isRef = true; - this._value = _shallow ? _rawValue : convert(_rawValue); - } - get value() { - track(toRaw2(this), "get", "value"); - return this._value; - } - set value(newVal) { - if (shared.hasChanged(toRaw2(newVal), this._rawValue)) { - this._rawValue = newVal; - this._value = this._shallow ? newVal : convert(newVal); - trigger(toRaw2(this), "set", "value", newVal); - } - } - }; - function createRef(rawValue, shallow = false) { - if (isRef(rawValue)) { - return rawValue; - } - return new RefImpl(rawValue, shallow); - } - function triggerRef(ref2) { - trigger(toRaw2(ref2), "set", "value", ref2.value); - } - function unref(ref2) { - return isRef(ref2) ? ref2.value : ref2; - } - var shallowUnwrapHandlers = { - get: (target, key, receiver) => unref(Reflect.get(target, key, receiver)), - set: (target, key, value, receiver) => { - const oldValue = target[key]; - if (isRef(oldValue) && !isRef(value)) { - oldValue.value = value; - return true; - } else { - return Reflect.set(target, key, value, receiver); - } - } - }; - function proxyRefs(objectWithRefs) { - return isReactive2(objectWithRefs) ? objectWithRefs : new Proxy(objectWithRefs, shallowUnwrapHandlers); - } - var CustomRefImpl = class { - constructor(factory) { - this.__v_isRef = true; - const {get: get3, set: set3} = factory(() => track(this, "get", "value"), () => trigger(this, "set", "value")); - this._get = get3; - this._set = set3; - } - get value() { - return this._get(); - } - set value(newVal) { - this._set(newVal); - } - }; - function customRef(factory) { - return new CustomRefImpl(factory); - } - function toRefs(object) { - if (!isProxy(object)) { - console.warn(`toRefs() expects a reactive object but received a plain one.`); - } - const ret = shared.isArray(object) ? new Array(object.length) : {}; - for (const key in object) { - ret[key] = toRef(object, key); - } - return ret; - } - var ObjectRefImpl = class { - constructor(_object, _key) { - this._object = _object; - this._key = _key; - this.__v_isRef = true; - } - get value() { - return this._object[this._key]; - } - set value(newVal) { - this._object[this._key] = newVal; - } - }; - function toRef(object, key) { - return isRef(object[key]) ? object[key] : new ObjectRefImpl(object, key); - } - var ComputedRefImpl = class { - constructor(getter, _setter, isReadonly2) { - this._setter = _setter; - this._dirty = true; - this.__v_isRef = true; - this.effect = effect3(getter, { - lazy: true, - scheduler: () => { - if (!this._dirty) { - this._dirty = true; - trigger(toRaw2(this), "set", "value"); - } - } - }); - this["__v_isReadonly"] = isReadonly2; - } - get value() { - const self2 = toRaw2(this); - if (self2._dirty) { - self2._value = this.effect(); - self2._dirty = false; - } - track(self2, "get", "value"); - return self2._value; - } - set value(newValue) { - this._setter(newValue); - } - }; - function computed(getterOrOptions) { - let getter; - let setter; - if (shared.isFunction(getterOrOptions)) { - getter = getterOrOptions; - setter = () => { - console.warn("Write operation failed: computed value is readonly"); - }; - } else { - getter = getterOrOptions.get; - setter = getterOrOptions.set; - } - return new ComputedRefImpl(getter, setter, shared.isFunction(getterOrOptions) || !getterOrOptions.set); - } - exports.ITERATE_KEY = ITERATE_KEY; - exports.computed = computed; - exports.customRef = customRef; - exports.effect = effect3; - exports.enableTracking = enableTracking; - exports.isProxy = isProxy; - exports.isReactive = isReactive2; - exports.isReadonly = isReadonly; - exports.isRef = isRef; - exports.markRaw = markRaw; - exports.pauseTracking = pauseTracking; - exports.proxyRefs = proxyRefs; - exports.reactive = reactive3; - exports.readonly = readonly; - exports.ref = ref; - exports.resetTracking = resetTracking; - exports.shallowReactive = shallowReactive; - exports.shallowReadonly = shallowReadonly; - exports.shallowRef = shallowRef; - exports.stop = stop2; - exports.toRaw = toRaw2; - exports.toRef = toRef; - exports.toRefs = toRefs; - exports.track = track; - exports.trigger = trigger; - exports.triggerRef = triggerRef; - exports.unref = unref; -}); - -// node_modules/@vue/reactivity/index.js -var require_reactivity = __commonJS((exports, module) => { - "use strict"; - if (false) {} else { - module.exports = require_reactivity_cjs(); - } -}); - -// packages/alpinejs/src/scheduler.js -var flushPending = false; -var flushing = false; -var queue = []; -function scheduler(callback) { - queueJob(callback); -} -function queueJob(job) { - if (!queue.includes(job)) - queue.push(job); - queueFlush(); -} -function queueFlush() { - if (!flushing && !flushPending) { - flushPending = true; - queueMicrotask(flushJobs); - } -} -function flushJobs() { - flushPending = false; - flushing = true; - for (let i = 0; i < queue.length; i++) { - queue[i](); - } - queue.length = 0; - flushing = false; -} - -// packages/alpinejs/src/reactivity.js -var reactive; -var effect; -var release; -var raw; -var shouldSchedule = true; -function disableEffectScheduling(callback) { - shouldSchedule = false; - callback(); - shouldSchedule = true; -} -function setReactivityEngine(engine) { - reactive = engine.reactive; - release = engine.release; - effect = (callback) => engine.effect(callback, {scheduler: (task) => { - if (shouldSchedule) { - scheduler(task); - } else { - task(); - } - }}); - raw = engine.raw; -} -function overrideEffect(override) { - effect = override; -} -function elementBoundEffect(el) { - let cleanup = () => { - }; - let wrappedEffect = (callback) => { - let effectReference = effect(callback); - if (!el._x_effects) { - el._x_effects = new Set(); - el._x_runEffects = () => { - el._x_effects.forEach((i) => i()); - }; - } - el._x_effects.add(effectReference); - cleanup = () => { - if (effectReference === void 0) - return; - el._x_effects.delete(effectReference); - release(effectReference); - }; - }; - return [wrappedEffect, () => { - cleanup(); - }]; -} - -// packages/alpinejs/src/mutation.js -var onAttributeAddeds = []; -var onElRemoveds = []; -var onElAddeds = []; -function onElAdded(callback) { - onElAddeds.push(callback); -} -function onElRemoved(callback) { - onElRemoveds.push(callback); -} -function onAttributesAdded(callback) { - onAttributeAddeds.push(callback); -} -function onAttributeRemoved(el, name, callback) { - if (!el._x_attributeCleanups) - el._x_attributeCleanups = {}; - if (!el._x_attributeCleanups[name]) - el._x_attributeCleanups[name] = []; - el._x_attributeCleanups[name].push(callback); -} -function cleanupAttributes(el, names) { - if (!el._x_attributeCleanups) - return; - Object.entries(el._x_attributeCleanups).forEach(([name, value]) => { - (names === void 0 || names.includes(name)) && value.forEach((i) => i()); - delete el._x_attributeCleanups[name]; - }); -} -var observer = new MutationObserver(onMutate); -var currentlyObserving = false; -function startObservingMutations() { - observer.observe(document, {subtree: true, childList: true, attributes: true, attributeOldValue: true}); - currentlyObserving = true; -} -function stopObservingMutations() { - observer.disconnect(); - currentlyObserving = false; -} -var recordQueue = []; -var willProcessRecordQueue = false; -function flushObserver() { - recordQueue = recordQueue.concat(observer.takeRecords()); - if (recordQueue.length && !willProcessRecordQueue) { - willProcessRecordQueue = true; - queueMicrotask(() => { - processRecordQueue(); - willProcessRecordQueue = false; - }); - } -} -function processRecordQueue() { - onMutate(recordQueue); - recordQueue.length = 0; -} -function mutateDom(callback) { - if (!currentlyObserving) - return callback(); - flushObserver(); - stopObservingMutations(); - let result = callback(); - startObservingMutations(); - return result; -} -function onMutate(mutations) { - let addedNodes = []; - let removedNodes = []; - let addedAttributes = new Map(); - let removedAttributes = new Map(); - for (let i = 0; i < mutations.length; i++) { - if (mutations[i].target._x_ignoreMutationObserver) - continue; - if (mutations[i].type === "childList") { - mutations[i].addedNodes.forEach((node) => node.nodeType === 1 && addedNodes.push(node)); - mutations[i].removedNodes.forEach((node) => node.nodeType === 1 && removedNodes.push(node)); - } - if (mutations[i].type === "attributes") { - let el = mutations[i].target; - let name = mutations[i].attributeName; - let oldValue = mutations[i].oldValue; - let add = () => { - if (!addedAttributes.has(el)) - addedAttributes.set(el, []); - addedAttributes.get(el).push({name, value: el.getAttribute(name)}); - }; - let remove = () => { - if (!removedAttributes.has(el)) - removedAttributes.set(el, []); - removedAttributes.get(el).push(name); - }; - if (el.hasAttribute(name) && oldValue === null) { - add(); - } else if (el.hasAttribute(name)) { - remove(); - add(); - } else { - remove(); - } - } - } - removedAttributes.forEach((attrs, el) => { - cleanupAttributes(el, attrs); - }); - addedAttributes.forEach((attrs, el) => { - onAttributeAddeds.forEach((i) => i(el, attrs)); - }); - for (let node of addedNodes) { - if (removedNodes.includes(node)) - continue; - onElAddeds.forEach((i) => i(node)); - } - for (let node of removedNodes) { - if (addedNodes.includes(node)) - continue; - onElRemoveds.forEach((i) => i(node)); - } - addedNodes = null; - removedNodes = null; - addedAttributes = null; - removedAttributes = null; -} - -// packages/alpinejs/src/scope.js -function addScopeToNode(node, data2, referenceNode) { - node._x_dataStack = [data2, ...closestDataStack(referenceNode || node)]; - return () => { - node._x_dataStack = node._x_dataStack.filter((i) => i !== data2); - }; -} -function refreshScope(element, scope) { - let existingScope = element._x_dataStack[0]; - Object.entries(scope).forEach(([key, value]) => { - existingScope[key] = value; - }); -} -function closestDataStack(node) { - if (node._x_dataStack) - return node._x_dataStack; - if (node instanceof ShadowRoot) { - return closestDataStack(node.host); - } - if (!node.parentNode) { - return []; - } - return closestDataStack(node.parentNode); -} -function mergeProxies(objects) { - return new Proxy({}, { - ownKeys: () => { - return Array.from(new Set(objects.flatMap((i) => Object.keys(i)))); - }, - has: (target, name) => { - return objects.some((obj) => obj.hasOwnProperty(name)); - }, - get: (target, name) => { - return (objects.find((obj) => obj.hasOwnProperty(name)) || {})[name]; - }, - set: (target, name, value) => { - let closestObjectWithKey = objects.find((obj) => obj.hasOwnProperty(name)); - if (closestObjectWithKey) { - closestObjectWithKey[name] = value; - } else { - objects[objects.length - 1][name] = value; - } - return true; - } - }); -} - -// packages/alpinejs/src/interceptor.js -function initInterceptors(data2) { - let isObject = (val) => typeof val === "object" && !Array.isArray(val) && val !== null; - let recurse = (obj, basePath = "") => { - Object.entries(obj).forEach(([key, value]) => { - let path = basePath === "" ? key : `${basePath}.${key}`; - if (typeof value === "object" && value !== null && value._x_interceptor) { - obj[key] = value.initialize(data2, path, key); - } else { - if (isObject(value) && value !== obj && !(value instanceof Element)) { - recurse(value, path); - } - } - }); - }; - return recurse(data2); -} -function interceptor(callback, mutateObj = () => { -}) { - let obj = { - initialValue: void 0, - _x_interceptor: true, - initialize(data2, path, key) { - return callback(this.initialValue, () => get(data2, path), (value) => set(data2, path, value), path, key); - } - }; - mutateObj(obj); - return (initialValue) => { - if (typeof initialValue === "object" && initialValue !== null && initialValue._x_interceptor) { - let initialize = obj.initialize.bind(obj); - obj.initialize = (data2, path, key) => { - let innerValue = initialValue.initialize(data2, path, key); - obj.initialValue = innerValue; - return initialize(data2, path, key); - }; - } else { - obj.initialValue = initialValue; - } - return obj; - }; -} -function get(obj, path) { - return path.split(".").reduce((carry, segment) => carry[segment], obj); -} -function set(obj, path, value) { - if (typeof path === "string") - path = path.split("."); - if (path.length === 1) - obj[path[0]] = value; - else if (path.length === 0) - throw error; - else { - if (obj[path[0]]) - return set(obj[path[0]], path.slice(1), value); - else { - obj[path[0]] = {}; - return set(obj[path[0]], path.slice(1), value); - } - } -} - -// packages/alpinejs/src/magics.js -var magics = {}; -function magic(name, callback) { - magics[name] = callback; -} -function injectMagics(obj, el) { - Object.entries(magics).forEach(([name, callback]) => { - Object.defineProperty(obj, `$${name}`, { - get() { - return callback(el, {Alpine: alpine_default, interceptor}); - }, - enumerable: false - }); - }); - return obj; -} - -// packages/alpinejs/src/evaluator.js -function evaluate(el, expression, extras = {}) { - let result; - evaluateLater(el, expression)((value) => result = value, extras); - return result; -} -function evaluateLater(...args) { - return theEvaluatorFunction(...args); -} -var theEvaluatorFunction = normalEvaluator; -function setEvaluator(newEvaluator) { - theEvaluatorFunction = newEvaluator; -} -function normalEvaluator(el, expression) { - let overriddenMagics = {}; - injectMagics(overriddenMagics, el); - let dataStack = [overriddenMagics, ...closestDataStack(el)]; - if (typeof expression === "function") { - return generateEvaluatorFromFunction(dataStack, expression); - } - let evaluator = generateEvaluatorFromString(dataStack, expression); - return tryCatch.bind(null, el, expression, evaluator); -} -function generateEvaluatorFromFunction(dataStack, func) { - return (receiver = () => { - }, {scope = {}, params = []} = {}) => { - let result = func.apply(mergeProxies([scope, ...dataStack]), params); - runIfTypeOfFunction(receiver, result); - }; -} -var evaluatorMemo = {}; -function generateFunctionFromString(expression) { - if (evaluatorMemo[expression]) { - return evaluatorMemo[expression]; - } - let AsyncFunction = Object.getPrototypeOf(async function() { - }).constructor; - let rightSideSafeExpression = /^[\n\s]*if.*\(.*\)/.test(expression) || /^(let|const)/.test(expression) ? `(() => { ${expression} })()` : expression; - let func = new AsyncFunction(["__self", "scope"], `with (scope) { __self.result = ${rightSideSafeExpression} }; __self.finished = true; return __self.result;`); - evaluatorMemo[expression] = func; - return func; -} -function generateEvaluatorFromString(dataStack, expression) { - let func = generateFunctionFromString(expression); - return (receiver = () => { - }, {scope = {}, params = []} = {}) => { - func.result = void 0; - func.finished = false; - let completeScope = mergeProxies([scope, ...dataStack]); - let promise = func(func, completeScope); - if (func.finished) { - runIfTypeOfFunction(receiver, func.result, completeScope, params); - } else { - promise.then((result) => { - runIfTypeOfFunction(receiver, result, completeScope, params); - }); - } - }; -} -function runIfTypeOfFunction(receiver, value, scope, params) { - if (typeof value === "function") { - let result = value.apply(scope, params); - if (result instanceof Promise) { - result.then((i) => runIfTypeOfFunction(receiver, i, scope, params)); - } else { - receiver(result); - } - } else { - receiver(value); - } -} -function tryCatch(el, expression, callback, ...args) { - try { - return callback(...args); - } catch (e) { - console.warn(`Alpine Expression Error: ${e.message} - -Expression: "${expression}" - -`, el); - throw e; - } -} - -// packages/alpinejs/src/directives.js -var prefixAsString = "x-"; -function prefix(subject = "") { - return prefixAsString + subject; -} -function setPrefix(newPrefix) { - prefixAsString = newPrefix; -} -var directiveHandlers = {}; -function directive(name, callback) { - directiveHandlers[name] = callback; -} -function directives(el, attributes, originalAttributeOverride) { - let transformedAttributeMap = {}; - let directives2 = Array.from(attributes).map(toTransformedAttributes((newName, oldName) => transformedAttributeMap[newName] = oldName)).filter(outNonAlpineAttributes).map(toParsedDirectives(transformedAttributeMap, originalAttributeOverride)).sort(byPriority); - return directives2.map((directive2) => { - return getDirectiveHandler(el, directive2); - }); -} -var isDeferringHandlers = false; -var directiveHandlerStack = []; -function deferHandlingDirectives(callback) { - isDeferringHandlers = true; - let flushHandlers = () => { - while (directiveHandlerStack.length) - directiveHandlerStack.shift()(); - }; - let stopDeferring = () => { - isDeferringHandlers = false; - flushHandlers(); - }; - callback(flushHandlers); - stopDeferring(); -} -function getDirectiveHandler(el, directive2) { - let noop = () => { - }; - let handler3 = directiveHandlers[directive2.type] || noop; - let cleanups = []; - let cleanup = (callback) => cleanups.push(callback); - let [effect3, cleanupEffect] = elementBoundEffect(el); - cleanups.push(cleanupEffect); - let utilities = { - Alpine: alpine_default, - effect: effect3, - cleanup, - evaluateLater: evaluateLater.bind(evaluateLater, el), - evaluate: evaluate.bind(evaluate, el) - }; - let doCleanup = () => cleanups.forEach((i) => i()); - onAttributeRemoved(el, directive2.original, doCleanup); - let fullHandler = () => { - if (el._x_ignore || el._x_ignoreSelf) - return; - handler3.inline && handler3.inline(el, directive2, utilities); - handler3 = handler3.bind(handler3, el, directive2, utilities); - isDeferringHandlers ? directiveHandlerStack.push(handler3) : handler3(); - }; - fullHandler.runCleanups = doCleanup; - return fullHandler; -} -var startingWith = (subject, replacement) => ({name, value}) => { - if (name.startsWith(subject)) - name = name.replace(subject, replacement); - return {name, value}; -}; -var into = (i) => i; -function toTransformedAttributes(callback) { - return ({name, value}) => { - let {name: newName, value: newValue} = attributeTransformers.reduce((carry, transform) => { - return transform(carry); - }, {name, value}); - if (newName !== name) - callback(newName, name); - return {name: newName, value: newValue}; - }; -} -var attributeTransformers = []; -function mapAttributes(callback) { - attributeTransformers.push(callback); -} -function outNonAlpineAttributes({name}) { - return alpineAttributeRegex().test(name); -} -var alpineAttributeRegex = () => new RegExp(`^${prefixAsString}([^:^.]+)\\b`); -function toParsedDirectives(transformedAttributeMap, originalAttributeOverride) { - return ({name, value}) => { - let typeMatch = name.match(alpineAttributeRegex()); - let valueMatch = name.match(/:([a-zA-Z0-9\-:]+)/); - let modifiers = name.match(/\.[^.\]]+(?=[^\]]*$)/g) || []; - let original = originalAttributeOverride || transformedAttributeMap[name] || name; - return { - type: typeMatch ? typeMatch[1] : null, - value: valueMatch ? valueMatch[1] : null, - modifiers: modifiers.map((i) => i.replace(".", "")), - expression: value, - original - }; - }; -} -var DEFAULT = "DEFAULT"; -var directiveOrder = [ - "ignore", - "ref", - "data", - "bind", - "init", - "for", - "model", - "transition", - "show", - "if", - DEFAULT, - "element" -]; -function byPriority(a, b) { - let typeA = directiveOrder.indexOf(a.type) === -1 ? DEFAULT : a.type; - let typeB = directiveOrder.indexOf(b.type) === -1 ? DEFAULT : b.type; - return directiveOrder.indexOf(typeA) - directiveOrder.indexOf(typeB); -} - -// packages/alpinejs/src/utils/dispatch.js -function dispatch(el, name, detail = {}) { - el.dispatchEvent(new CustomEvent(name, { - detail, - bubbles: true, - composed: true, - cancelable: true - })); -} - -// packages/alpinejs/src/nextTick.js -var tickStack = []; -var isHolding = false; -function nextTick(callback) { - tickStack.push(callback); - queueMicrotask(() => { - isHolding || setTimeout(() => { - releaseNextTicks(); - }); - }); -} -function releaseNextTicks() { - isHolding = false; - while (tickStack.length) - tickStack.shift()(); -} -function holdNextTicks() { - isHolding = true; -} - -// packages/alpinejs/src/utils/walk.js -function walk(el, callback) { - if (el instanceof ShadowRoot) { - Array.from(el.children).forEach((el2) => walk(el2, callback)); - return; - } - let skip = false; - callback(el, () => skip = true); - if (skip) - return; - let node = el.firstElementChild; - while (node) { - walk(node, callback, false); - node = node.nextElementSibling; - } -} - -// packages/alpinejs/src/utils/warn.js -function warn(message, ...args) { - console.warn(`Alpine Warning: ${message}`, ...args); -} - -// packages/alpinejs/src/lifecycle.js -function start() { - if (!document.body) - warn("Unable to initialize. Trying to load Alpine before `` is available. Did you forget to add `defer` in Alpine's ` + + + + @livewireScripts + + + @include('layouts._favicons') + + + +
+ @yield('content') +
+ + + + @livewire('livewire-ui-modal') + @stack('scripts') + + diff --git a/resources/views/layouts/footer.blade.php b/resources/views/layouts/footer.blade.php index 583a239f..d4617adb 100644 --- a/resources/views/layouts/footer.blade.php +++ b/resources/views/layouts/footer.blade.php @@ -5,7 +5,7 @@
Laravel.cm Laravel.cm -

+

Laravel Country Logomarks {{ __('par') }} Caneco Caneco profile @@ -14,43 +14,43 @@

-

+

{{ __('Rejoignez nous') }}

-

+

{{ __('Rejoignez notre newsletter recevez des tutoriels, articles et podcasts sur le design et la programmation web.') }}

@@ -108,11 +108,11 @@
-

+

{{ __('Ou intégrez nos différentes plateformes de communication') }}

-

+

© 2018 - {{ date('Y') }} Laravel Cameroun. Tous droits réservés.

diff --git a/resources/views/livewire/articles/browse.blade.php b/resources/views/livewire/articles/browse.blade.php index 77457d87..aea57799 100644 --- a/resources/views/livewire/articles/browse.blade.php +++ b/resources/views/livewire/articles/browse.blade.php @@ -1,10 +1,9 @@ -
-
-